From a22f0430c6fb88dc73653321e3e9f67a2072cfb2 Mon Sep 17 00:00:00 2001 From: simbilod Date: Wed, 21 Aug 2024 19:09:06 -0700 Subject: [PATCH] fix epitaxy --- examples/selectiveEpitaxy/selectiveEpitaxy.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/selectiveEpitaxy/selectiveEpitaxy.py b/examples/selectiveEpitaxy/selectiveEpitaxy.py index 4c92944..9788d76 100644 --- a/examples/selectiveEpitaxy/selectiveEpitaxy.py +++ b/examples/selectiveEpitaxy/selectiveEpitaxy.py @@ -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, @@ -47,9 +47,9 @@ ), ).apply() else: - vls.lsMakeGeometry( + vls.MakeGeometry( fin, - vls.lsBox( + vls.Box( [ -params["finWidth"] / 2.0, -params["gridDelta"], @@ -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")