Skip to content

Commit

Permalink
fix epitaxy
Browse files Browse the repository at this point in the history
  • Loading branch information
simbilod committed Aug 22, 2024
1 parent f7700bc commit a22f043
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/selectiveEpitaxy/selectiveEpitaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
material=vps.Material.Mask,
).apply()

fin = vls.lsDomain(geometry.getLevelSets()[-1])
fin = vls.Domain(geometry.getLevelSets()[-1])

if args.dim == 3:
vls.lsMakeGeometry(
vls.MakeGeometry(
fin,
vls.lsBox(
vls.Box(
[
-params["finWidth"] / 2.0,
-params["finLength"] / 2.0,
Expand All @@ -47,9 +47,9 @@
),
).apply()
else:
vls.lsMakeGeometry(
vls.MakeGeometry(
fin,
vls.lsBox(
vls.Box(
[
-params["finWidth"] / 2.0,
-params["gridDelta"],
Expand All @@ -75,7 +75,7 @@
process.setProcessModel(model)
process.setProcessDuration(params["processTime"])
process.setIntegrationScheme(
vls.lsIntegrationSchemeEnum.STENCIL_LOCAL_LAX_FRIEDRICHS_1ST_ORDER
vls.IntegrationSchemeEnum.STENCIL_LOCAL_LAX_FRIEDRICHS_1ST_ORDER
)

geometry.saveVolumeMesh("initial")
Expand Down

0 comments on commit a22f043

Please sign in to comment.