Skip to content

Commit cf80006

Browse files
committed
Update aflr_aim.py
1 parent b6d78ea commit cf80006

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

funtofem/interface/caps2fun/aflr_aim.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def set_surface_mesh(
151151
min_scale=0.01,
152152
max_scale=1,
153153
mer_all=1,
154-
use_quads=False,
154+
use_aflr4_quads=False,
155+
use_egads_quads=False,
155156
mesh_length=None,
156157
):
157158
"""
@@ -165,5 +166,7 @@ def set_surface_mesh(
165166
self.aim.input.mer_all = mer_all
166167
if mesh_length is not None:
167168
self.aim.input.Mesh_Length_Factor = mesh_length
168-
if use_quads:
169+
if use_aflr4_quads:
169170
self.aim.input.Mesh_Gen_Input_String = "mquad=1 mpp=3"
171+
if use_egads_quads:
172+
self.aim.input.EGADS_Quad = True

0 commit comments

Comments
 (0)