Commit 75ea914 1 parent f8bab62 commit 75ea914 Copy full SHA for 75ea914
File tree 2 files changed +14
-14
lines changed
2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -180,18 +180,6 @@ def __init__(
180
180
"The mesh morphing does not require a remote driver! Make this driver regularly!"
181
181
)
182
182
183
- if not self .is_remote :
184
- if self .model .flow is not None :
185
- if not self .is_paired and not self .model .flow .mesh_morph :
186
- raise AssertionError (
187
- "The nominal version of the driver only works for Fun3d mesh morphing not remeshing."
188
- )
189
-
190
- if self .change_shape and self .root_proc :
191
- print (
192
- f"Warning!! You are trying to remesh without using remote system calls of FUN3D, this will likely cause a FUN3D bug."
193
- )
194
-
195
183
# check for unsteady problems
196
184
self ._unsteady = any ([not scenario .steady for scenario in model .scenarios ])
197
185
@@ -210,6 +198,18 @@ def __init__(
210
198
self .flow_aim = model .flow .fun3d_aim
211
199
# TBD on new types
212
200
201
+ if not self .is_remote :
202
+ if self .model .flow is not None :
203
+ if not self .is_paired and not self .model .flow .mesh_morph :
204
+ raise AssertionError (
205
+ "The nominal version of the driver only works for Fun3d mesh morphing not remeshing."
206
+ )
207
+
208
+ if self .change_shape and self .root_proc :
209
+ print (
210
+ f"Warning!! You are trying to remesh without using remote system calls of FUN3D, this will likely cause a FUN3D bug."
211
+ )
212
+
213
213
self .transfer_settings = (
214
214
transfer_settings if transfer_settings is not None else TransferSettings ()
215
215
)
Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ def set_boundary_layer(
58
58
self .aim .input .BL_Initial_Spacing = initial_spacing
59
59
self .aim .input .BL_Thickness = thickness
60
60
self .aim .input .BL_Max_Layers = max_layers
61
- if use_quads and (thickness > 0.0 ):
62
- self .aim .input .Mesh_Gen_Input_String = "-blc3"
61
+ if use_quads and (thickness > 0.0 ):
62
+ self .aim .input .Mesh_Gen_Input_String = "-blc3"
63
63
return self
64
64
65
65
def save_dict_options (self , dictOptions ):
You can’t perform that action at this time.
0 commit comments