ansys-fluent-core 0.30.3__py3-none-any.whl → 0.30.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +2 -2
- ansys/fluent/core/filereader/case_file.py +16 -13
- ansys/fluent/core/filereader/data_file.py +14 -5
- ansys/fluent/core/filereader/pre_processor.py +35 -0
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/preferences.py +7 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +5 -0
- ansys/fluent/core/generated/solver/settings_252.py +393 -279
- ansys/fluent/core/generated/solver/settings_252.pyi +225 -201
- ansys/fluent/core/generated/solver/tui_252.py +13 -23
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.4.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.4.dist-info}/RECORD +15 -14
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.4.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.30.3.dist-info → ansys_fluent_core-0.30.4.dist-info}/WHEEL +0 -0
|
@@ -1573,10 +1573,21 @@ class background(Integer):
|
|
|
1573
1573
|
_version: str
|
|
1574
1574
|
fluent_name: str
|
|
1575
1575
|
_python_name: str
|
|
1576
|
-
class
|
|
1576
|
+
class file_1(String, AllowedValuesMixin):
|
|
1577
1577
|
_version: str
|
|
1578
1578
|
fluent_name: str
|
|
1579
1579
|
_python_name: str
|
|
1580
|
+
class unit_1(String, AllowedValuesMixin):
|
|
1581
|
+
_version: str
|
|
1582
|
+
fluent_name: str
|
|
1583
|
+
_python_name: str
|
|
1584
|
+
class read_2(Group):
|
|
1585
|
+
_version: str
|
|
1586
|
+
fluent_name: str
|
|
1587
|
+
_python_name: str
|
|
1588
|
+
child_names: list[str]
|
|
1589
|
+
file: file_1
|
|
1590
|
+
unit: unit_1
|
|
1580
1591
|
class delete_1(String, AllowedValuesMixin):
|
|
1581
1592
|
_version: str
|
|
1582
1593
|
fluent_name: str
|
|
@@ -2118,35 +2129,35 @@ class modify_zones(Group):
|
|
|
2118
2129
|
direction : List
|
|
2119
2130
|
'direction' child.
|
|
2120
2131
|
"""
|
|
2121
|
-
def create_periodic_interface(self,
|
|
2132
|
+
def create_periodic_interface(self, creation_method: str, interface_name: str, periodic_zone: str, shadow_zone: str, rotational_periodic: bool, update_origin: bool, origin: list[float | str], update_direction: bool, direction: list[float | str], auto_compute_offset: bool, angular_offset: float | str, translational_offset: list[float | str], create_periodic: bool, create_matching: bool):
|
|
2122
2133
|
"""
|
|
2123
2134
|
Create a conformal or non-conformal periodic interface.
|
|
2124
2135
|
|
|
2125
2136
|
Parameters
|
|
2126
2137
|
----------
|
|
2127
|
-
|
|
2138
|
+
creation_method : str
|
|
2128
2139
|
Method for creating periodic boundary.
|
|
2129
2140
|
interface_name : str
|
|
2130
|
-
|
|
2131
|
-
|
|
2141
|
+
Name of periodic interface.
|
|
2142
|
+
periodic_zone : str
|
|
2132
2143
|
Id/name of zone to convert to periodic.
|
|
2133
|
-
|
|
2134
|
-
Id/name of zone to convert to shadow.
|
|
2135
|
-
|
|
2144
|
+
shadow_zone : str
|
|
2145
|
+
Id/name of shadow zone to convert to periodic shadow.
|
|
2146
|
+
rotational_periodic : bool
|
|
2136
2147
|
Rotational or tranlational periodic boundary.
|
|
2137
|
-
|
|
2148
|
+
update_origin : bool
|
|
2138
2149
|
Use a new origin instead of the default origin.
|
|
2139
2150
|
origin : List
|
|
2140
2151
|
User specified origin of rotation.
|
|
2141
|
-
|
|
2152
|
+
update_direction : bool
|
|
2142
2153
|
Use a new rotational axis/direction instead of the default one.
|
|
2143
2154
|
direction : List
|
|
2144
2155
|
User specified axis/direction of rotation.
|
|
2145
|
-
|
|
2146
|
-
Automatically
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2156
|
+
auto_compute_offset : bool
|
|
2157
|
+
Automatically compute periodic offset.
|
|
2158
|
+
angular_offset : real
|
|
2159
|
+
Rotational periodic offset.
|
|
2160
|
+
translational_offset : List
|
|
2150
2161
|
Translation offset vector.
|
|
2151
2162
|
create_periodic : bool
|
|
2152
2163
|
Create periodic boundary.
|
|
@@ -2361,9 +2372,28 @@ class polyhedra(Group):
|
|
|
2361
2372
|
child_names: list[str]
|
|
2362
2373
|
command_names: list[str]
|
|
2363
2374
|
options: options
|
|
2364
|
-
def convert_domain(self):
|
|
2375
|
+
def convert_domain(self, structured_mesh_option: bool, face_hierarchy_option: bool, reinitialize_option: bool, boundary_layer_option: str, dynamic_mesh_option: bool, heat_exchanger_option: bool, multiple_shadow_nodes_option: bool, inconsistent_periodic_option: bool):
|
|
2365
2376
|
"""
|
|
2366
2377
|
Convert entire domain to polyhedra cells.
|
|
2378
|
+
|
|
2379
|
+
Parameters
|
|
2380
|
+
----------
|
|
2381
|
+
structured_mesh_option : bool
|
|
2382
|
+
Check polyhedra conversion for structured meshes.
|
|
2383
|
+
face_hierarchy_option : bool
|
|
2384
|
+
Check polyhedra conversion for adapted meshes.
|
|
2385
|
+
reinitialize_option : bool
|
|
2386
|
+
Check for data reinitialization after polyhedra conversion.
|
|
2387
|
+
boundary_layer_option : str
|
|
2388
|
+
Preserve boundary layers during polyhedra conversion.
|
|
2389
|
+
dynamic_mesh_option : bool
|
|
2390
|
+
Check polyhedra conversion for dynamic mesh model.
|
|
2391
|
+
heat_exchanger_option : bool
|
|
2392
|
+
Check polyhedra conversion for heat exchanger model.
|
|
2393
|
+
multiple_shadow_nodes_option : bool
|
|
2394
|
+
Check polyhedra conversion for mesh with multiple shadow nodes.
|
|
2395
|
+
inconsistent_periodic_option : bool
|
|
2396
|
+
Check polyhedra conversion for mesh with inconsistent periodic boundaries.
|
|
2367
2397
|
"""
|
|
2368
2398
|
def convert_hanging_nodes(self):
|
|
2369
2399
|
"""
|
|
@@ -8151,6 +8181,26 @@ class injection_surfaces(StringList, AllowedValuesMixin):
|
|
|
8151
8181
|
_version: str
|
|
8152
8182
|
fluent_name: str
|
|
8153
8183
|
_python_name: str
|
|
8184
|
+
class physics_2(StringList, AllowedValuesMixin):
|
|
8185
|
+
_version: str
|
|
8186
|
+
fluent_name: str
|
|
8187
|
+
_python_name: str
|
|
8188
|
+
class geometry_3(StringList, AllowedValuesMixin):
|
|
8189
|
+
_version: str
|
|
8190
|
+
fluent_name: str
|
|
8191
|
+
_python_name: str
|
|
8192
|
+
class surfaces_6(StringList, AllowedValuesMixin):
|
|
8193
|
+
_version: str
|
|
8194
|
+
fluent_name: str
|
|
8195
|
+
_python_name: str
|
|
8196
|
+
class from_location(Group):
|
|
8197
|
+
_version: str
|
|
8198
|
+
fluent_name: str
|
|
8199
|
+
_python_name: str
|
|
8200
|
+
child_names: list[str]
|
|
8201
|
+
physics: physics_2
|
|
8202
|
+
geometry: geometry_3
|
|
8203
|
+
surfaces: surfaces_6
|
|
8154
8204
|
class randomized_positions_enabled(Boolean, AllowedValuesMixin):
|
|
8155
8205
|
_version: str
|
|
8156
8206
|
fluent_name: str
|
|
@@ -8217,6 +8267,7 @@ class location_1(Group):
|
|
|
8217
8267
|
_python_name: str
|
|
8218
8268
|
child_names: list[str]
|
|
8219
8269
|
injection_surfaces: injection_surfaces
|
|
8270
|
+
from_location: from_location
|
|
8220
8271
|
randomized_positions_enabled: randomized_positions_enabled
|
|
8221
8272
|
number_of_streams: number_of_streams
|
|
8222
8273
|
x: x
|
|
@@ -9327,7 +9378,7 @@ class airfoil_data_file(String, AllowedValuesMixin):
|
|
|
9327
9378
|
_version: str
|
|
9328
9379
|
fluent_name: str
|
|
9329
9380
|
_python_name: str
|
|
9330
|
-
class
|
|
9381
|
+
class geometry_4_child(Group):
|
|
9331
9382
|
_version: str
|
|
9332
9383
|
fluent_name: str
|
|
9333
9384
|
_python_name: str
|
|
@@ -9337,7 +9388,7 @@ class geometry_3_child(Group):
|
|
|
9337
9388
|
chord: chord
|
|
9338
9389
|
twist: twist
|
|
9339
9390
|
airfoil_data_file: airfoil_data_file
|
|
9340
|
-
class
|
|
9391
|
+
class geometry_4(NamedObject[geometry_4_child]):
|
|
9341
9392
|
_version: str
|
|
9342
9393
|
fluent_name: str
|
|
9343
9394
|
_python_name: str
|
|
@@ -9404,7 +9455,7 @@ class geometry_3(NamedObject[geometry_3_child]):
|
|
|
9404
9455
|
name : str
|
|
9405
9456
|
Object name to add.
|
|
9406
9457
|
"""
|
|
9407
|
-
child_object_type:
|
|
9458
|
+
child_object_type: geometry_4_child
|
|
9408
9459
|
class trim_option(Integer):
|
|
9409
9460
|
_version: str
|
|
9410
9461
|
fluent_name: str
|
|
@@ -9447,7 +9498,7 @@ class rotor_child(Group):
|
|
|
9447
9498
|
child_names: list[str]
|
|
9448
9499
|
name: name_5
|
|
9449
9500
|
general: general_1
|
|
9450
|
-
geometry:
|
|
9501
|
+
geometry: geometry_4
|
|
9451
9502
|
trimming: trimming
|
|
9452
9503
|
class rotor(NamedObject[rotor_child]):
|
|
9453
9504
|
_version: str
|
|
@@ -22753,7 +22804,7 @@ class geom_bgthread(Integer):
|
|
|
22753
22804
|
_version: str
|
|
22754
22805
|
fluent_name: str
|
|
22755
22806
|
_python_name: str
|
|
22756
|
-
class
|
|
22807
|
+
class geometry_6(Group):
|
|
22757
22808
|
_version: str
|
|
22758
22809
|
fluent_name: str
|
|
22759
22810
|
_python_name: str
|
|
@@ -22770,7 +22821,7 @@ class phase_3_child(Group):
|
|
|
22770
22821
|
fluent_name: str
|
|
22771
22822
|
_python_name: str
|
|
22772
22823
|
child_names: list[str]
|
|
22773
|
-
geometry:
|
|
22824
|
+
geometry: geometry_6
|
|
22774
22825
|
class phase_3(NamedObject[phase_3_child]):
|
|
22775
22826
|
_version: str
|
|
22776
22827
|
fluent_name: str
|
|
@@ -22835,7 +22886,7 @@ class settings_1(Group):
|
|
|
22835
22886
|
fluent_name: str
|
|
22836
22887
|
_python_name: str
|
|
22837
22888
|
child_names: list[str]
|
|
22838
|
-
geometry:
|
|
22889
|
+
geometry: geometry_6
|
|
22839
22890
|
phase: phase_3
|
|
22840
22891
|
class axis_5_child(Group):
|
|
22841
22892
|
_version: str
|
|
@@ -25660,7 +25711,7 @@ class phase_4_child(Group):
|
|
|
25660
25711
|
structure: structure_1
|
|
25661
25712
|
uds: uds
|
|
25662
25713
|
icing: icing
|
|
25663
|
-
geometry:
|
|
25714
|
+
geometry: geometry_6
|
|
25664
25715
|
class phase_4(NamedObject[phase_4_child]):
|
|
25665
25716
|
_version: str
|
|
25666
25717
|
fluent_name: str
|
|
@@ -25736,7 +25787,7 @@ class settings_2(Group):
|
|
|
25736
25787
|
structure: structure_1
|
|
25737
25788
|
uds: uds
|
|
25738
25789
|
icing: icing
|
|
25739
|
-
geometry:
|
|
25790
|
+
geometry: geometry_6
|
|
25740
25791
|
phase: phase_4
|
|
25741
25792
|
class exhaust_fan_child(Group):
|
|
25742
25793
|
_version: str
|
|
@@ -26059,7 +26110,7 @@ class phase_5_child(Group):
|
|
|
26059
26110
|
pressure_jump_specification: pressure_jump_specification
|
|
26060
26111
|
swirl_velocity_specification: swirl_velocity_specification
|
|
26061
26112
|
discrete_phase: discrete_phase_2
|
|
26062
|
-
geometry:
|
|
26113
|
+
geometry: geometry_6
|
|
26063
26114
|
class phase_5(NamedObject[phase_5_child]):
|
|
26064
26115
|
_version: str
|
|
26065
26116
|
fluent_name: str
|
|
@@ -26127,7 +26178,7 @@ class settings_3(Group):
|
|
|
26127
26178
|
pressure_jump_specification: pressure_jump_specification
|
|
26128
26179
|
swirl_velocity_specification: swirl_velocity_specification
|
|
26129
26180
|
discrete_phase: discrete_phase_2
|
|
26130
|
-
geometry:
|
|
26181
|
+
geometry: geometry_6
|
|
26131
26182
|
phase: phase_5
|
|
26132
26183
|
class fan_child(Group):
|
|
26133
26184
|
_version: str
|
|
@@ -26209,7 +26260,7 @@ class fan(NamedObject[fan_child]):
|
|
|
26209
26260
|
The name of the new object.
|
|
26210
26261
|
"""
|
|
26211
26262
|
child_object_type: fan_child
|
|
26212
|
-
class
|
|
26263
|
+
class geometry_5_child(Group):
|
|
26213
26264
|
_version: str
|
|
26214
26265
|
fluent_name: str
|
|
26215
26266
|
_python_name: str
|
|
@@ -26230,7 +26281,7 @@ class geometry_4_child(Group):
|
|
|
26230
26281
|
Input location name which should be part of new boundary.
|
|
26231
26282
|
"""
|
|
26232
26283
|
_child_aliases: dict
|
|
26233
|
-
class
|
|
26284
|
+
class geometry_5(NamedObject[geometry_5_child]):
|
|
26234
26285
|
_version: str
|
|
26235
26286
|
fluent_name: str
|
|
26236
26287
|
_python_name: str
|
|
@@ -26288,7 +26339,7 @@ class geometry_4(NamedObject[geometry_4_child]):
|
|
|
26288
26339
|
to : str
|
|
26289
26340
|
The name of the new object.
|
|
26290
26341
|
"""
|
|
26291
|
-
child_object_type:
|
|
26342
|
+
child_object_type: geometry_5_child
|
|
26292
26343
|
class reference_frame_4(String, AllowedValuesMixin):
|
|
26293
26344
|
_version: str
|
|
26294
26345
|
fluent_name: str
|
|
@@ -27423,7 +27474,7 @@ class phase_6_child(Group):
|
|
|
27423
27474
|
structure: structure_1
|
|
27424
27475
|
uds: uds
|
|
27425
27476
|
icing: icing_1
|
|
27426
|
-
geometry:
|
|
27477
|
+
geometry: geometry_6
|
|
27427
27478
|
class phase_6(NamedObject[phase_6_child]):
|
|
27428
27479
|
_version: str
|
|
27429
27480
|
fluent_name: str
|
|
@@ -27499,7 +27550,7 @@ class settings_4(Group):
|
|
|
27499
27550
|
structure: structure_1
|
|
27500
27551
|
uds: uds
|
|
27501
27552
|
icing: icing_1
|
|
27502
|
-
geometry:
|
|
27553
|
+
geometry: geometry_6
|
|
27503
27554
|
phase: phase_6
|
|
27504
27555
|
class inlet_vent_child(Group):
|
|
27505
27556
|
_version: str
|
|
@@ -27633,7 +27684,7 @@ class phase_7_child(Group):
|
|
|
27633
27684
|
structure: structure_1
|
|
27634
27685
|
uds: uds
|
|
27635
27686
|
icing: icing_1
|
|
27636
|
-
geometry:
|
|
27687
|
+
geometry: geometry_6
|
|
27637
27688
|
class phase_7(NamedObject[phase_7_child]):
|
|
27638
27689
|
_version: str
|
|
27639
27690
|
fluent_name: str
|
|
@@ -27709,7 +27760,7 @@ class settings_5(Group):
|
|
|
27709
27760
|
structure: structure_1
|
|
27710
27761
|
uds: uds
|
|
27711
27762
|
icing: icing_1
|
|
27712
|
-
geometry:
|
|
27763
|
+
geometry: geometry_6
|
|
27713
27764
|
phase: phase_7
|
|
27714
27765
|
class intake_fan_child(Group):
|
|
27715
27766
|
_version: str
|
|
@@ -27807,7 +27858,7 @@ class phase_8_child(Group):
|
|
|
27807
27858
|
_python_name: str
|
|
27808
27859
|
child_names: list[str]
|
|
27809
27860
|
interface: interface_1
|
|
27810
|
-
geometry:
|
|
27861
|
+
geometry: geometry_6
|
|
27811
27862
|
class phase_8(NamedObject[phase_8_child]):
|
|
27812
27863
|
_version: str
|
|
27813
27864
|
fluent_name: str
|
|
@@ -27873,7 +27924,7 @@ class settings_6(Group):
|
|
|
27873
27924
|
_python_name: str
|
|
27874
27925
|
child_names: list[str]
|
|
27875
27926
|
interface: interface_1
|
|
27876
|
-
geometry:
|
|
27927
|
+
geometry: geometry_6
|
|
27877
27928
|
phase: phase_8
|
|
27878
27929
|
class interface_child(Group):
|
|
27879
27930
|
_version: str
|
|
@@ -28402,7 +28453,7 @@ class phase_10_child(Group):
|
|
|
28402
28453
|
structure: structure_1
|
|
28403
28454
|
uds: uds
|
|
28404
28455
|
icing: icing_1
|
|
28405
|
-
geometry:
|
|
28456
|
+
geometry: geometry_6
|
|
28406
28457
|
class phase_10(NamedObject[phase_10_child]):
|
|
28407
28458
|
_version: str
|
|
28408
28459
|
fluent_name: str
|
|
@@ -28478,7 +28529,7 @@ class settings_8(Group):
|
|
|
28478
28529
|
structure: structure_1
|
|
28479
28530
|
uds: uds
|
|
28480
28531
|
icing: icing_1
|
|
28481
|
-
geometry:
|
|
28532
|
+
geometry: geometry_6
|
|
28482
28533
|
phase: phase_10
|
|
28483
28534
|
class mass_flow_inlet_child(Group):
|
|
28484
28535
|
_version: str
|
|
@@ -28635,7 +28686,7 @@ class phase_11_child(Group):
|
|
|
28635
28686
|
structure: structure_1
|
|
28636
28687
|
uds: uds
|
|
28637
28688
|
icing: icing_1
|
|
28638
|
-
geometry:
|
|
28689
|
+
geometry: geometry_6
|
|
28639
28690
|
class phase_11(NamedObject[phase_11_child]):
|
|
28640
28691
|
_version: str
|
|
28641
28692
|
fluent_name: str
|
|
@@ -28711,7 +28762,7 @@ class settings_9(Group):
|
|
|
28711
28762
|
structure: structure_1
|
|
28712
28763
|
uds: uds
|
|
28713
28764
|
icing: icing_1
|
|
28714
|
-
geometry:
|
|
28765
|
+
geometry: geometry_6
|
|
28715
28766
|
phase: phase_11
|
|
28716
28767
|
class mass_flow_outlet_child(Group):
|
|
28717
28768
|
_version: str
|
|
@@ -29166,7 +29217,7 @@ class phase_14_child(Group):
|
|
|
29166
29217
|
uds: uds_2
|
|
29167
29218
|
radiation: radiation_2
|
|
29168
29219
|
discrete_phase: discrete_phase_4
|
|
29169
|
-
geometry:
|
|
29220
|
+
geometry: geometry_6
|
|
29170
29221
|
class phase_14(NamedObject[phase_14_child]):
|
|
29171
29222
|
_version: str
|
|
29172
29223
|
fluent_name: str
|
|
@@ -29237,7 +29288,7 @@ class settings_12(Group):
|
|
|
29237
29288
|
uds: uds_2
|
|
29238
29289
|
radiation: radiation_2
|
|
29239
29290
|
discrete_phase: discrete_phase_4
|
|
29240
|
-
geometry:
|
|
29291
|
+
geometry: geometry_6
|
|
29241
29292
|
phase: phase_14
|
|
29242
29293
|
class outflow_child(Group):
|
|
29243
29294
|
_version: str
|
|
@@ -29373,7 +29424,7 @@ class phase_15_child(Group):
|
|
|
29373
29424
|
structure: structure_1
|
|
29374
29425
|
uds: uds
|
|
29375
29426
|
icing: icing
|
|
29376
|
-
geometry:
|
|
29427
|
+
geometry: geometry_6
|
|
29377
29428
|
class phase_15(NamedObject[phase_15_child]):
|
|
29378
29429
|
_version: str
|
|
29379
29430
|
fluent_name: str
|
|
@@ -29449,7 +29500,7 @@ class settings_13(Group):
|
|
|
29449
29500
|
structure: structure_1
|
|
29450
29501
|
uds: uds
|
|
29451
29502
|
icing: icing
|
|
29452
|
-
geometry:
|
|
29503
|
+
geometry: geometry_6
|
|
29453
29504
|
phase: phase_15
|
|
29454
29505
|
class outlet_vent_child(Group):
|
|
29455
29506
|
_version: str
|
|
@@ -29719,7 +29770,7 @@ class periodic_1(Group):
|
|
|
29719
29770
|
shift_component: shift_component
|
|
29720
29771
|
per_angle: per_angle
|
|
29721
29772
|
_child_aliases: dict
|
|
29722
|
-
class
|
|
29773
|
+
class geometry_7(Group):
|
|
29723
29774
|
_version: str
|
|
29724
29775
|
fluent_name: str
|
|
29725
29776
|
_python_name: str
|
|
@@ -29737,7 +29788,7 @@ class phase_16_child(Group):
|
|
|
29737
29788
|
_python_name: str
|
|
29738
29789
|
child_names: list[str]
|
|
29739
29790
|
periodic: periodic_1
|
|
29740
|
-
geometry:
|
|
29791
|
+
geometry: geometry_7
|
|
29741
29792
|
class phase_16(NamedObject[phase_16_child]):
|
|
29742
29793
|
_version: str
|
|
29743
29794
|
fluent_name: str
|
|
@@ -29803,7 +29854,7 @@ class settings_14(Group):
|
|
|
29803
29854
|
_python_name: str
|
|
29804
29855
|
child_names: list[str]
|
|
29805
29856
|
periodic: periodic_1
|
|
29806
|
-
geometry:
|
|
29857
|
+
geometry: geometry_7
|
|
29807
29858
|
phase: phase_16
|
|
29808
29859
|
class periodic_child(Group):
|
|
29809
29860
|
_version: str
|
|
@@ -30060,7 +30111,7 @@ class phase_17_child(Group):
|
|
|
30060
30111
|
child_names: list[str]
|
|
30061
30112
|
porous_jump: porous_jump_1
|
|
30062
30113
|
discrete_phase: discrete_phase_2
|
|
30063
|
-
geometry:
|
|
30114
|
+
geometry: geometry_6
|
|
30064
30115
|
class phase_17(NamedObject[phase_17_child]):
|
|
30065
30116
|
_version: str
|
|
30066
30117
|
fluent_name: str
|
|
@@ -30127,7 +30178,7 @@ class settings_15(Group):
|
|
|
30127
30178
|
child_names: list[str]
|
|
30128
30179
|
porous_jump: porous_jump_1
|
|
30129
30180
|
discrete_phase: discrete_phase_2
|
|
30130
|
-
geometry:
|
|
30181
|
+
geometry: geometry_6
|
|
30131
30182
|
phase: phase_17
|
|
30132
30183
|
class porous_jump_child(Group):
|
|
30133
30184
|
_version: str
|
|
@@ -30328,7 +30379,7 @@ class phase_18_child(Group):
|
|
|
30328
30379
|
structure: structure_1
|
|
30329
30380
|
uds: uds
|
|
30330
30381
|
icing: icing_1
|
|
30331
|
-
geometry:
|
|
30382
|
+
geometry: geometry_6
|
|
30332
30383
|
class phase_18(NamedObject[phase_18_child]):
|
|
30333
30384
|
_version: str
|
|
30334
30385
|
fluent_name: str
|
|
@@ -30403,7 +30454,7 @@ class settings_16(Group):
|
|
|
30403
30454
|
structure: structure_1
|
|
30404
30455
|
uds: uds
|
|
30405
30456
|
icing: icing_1
|
|
30406
|
-
geometry:
|
|
30457
|
+
geometry: geometry_6
|
|
30407
30458
|
phase: phase_18
|
|
30408
30459
|
class pressure_far_field_child(Group):
|
|
30409
30460
|
_version: str
|
|
@@ -30522,7 +30573,7 @@ class phase_19_child(Group):
|
|
|
30522
30573
|
structure: structure_1
|
|
30523
30574
|
uds: uds
|
|
30524
30575
|
icing: icing_1
|
|
30525
|
-
geometry:
|
|
30576
|
+
geometry: geometry_6
|
|
30526
30577
|
class phase_19(NamedObject[phase_19_child]):
|
|
30527
30578
|
_version: str
|
|
30528
30579
|
fluent_name: str
|
|
@@ -30598,7 +30649,7 @@ class settings_17(Group):
|
|
|
30598
30649
|
structure: structure_1
|
|
30599
30650
|
uds: uds
|
|
30600
30651
|
icing: icing_1
|
|
30601
|
-
geometry:
|
|
30652
|
+
geometry: geometry_6
|
|
30602
30653
|
phase: phase_19
|
|
30603
30654
|
class pressure_inlet_child(Group):
|
|
30604
30655
|
_version: str
|
|
@@ -30732,7 +30783,7 @@ class phase_20_child(Group):
|
|
|
30732
30783
|
structure: structure_1
|
|
30733
30784
|
uds: uds
|
|
30734
30785
|
icing: icing
|
|
30735
|
-
geometry:
|
|
30786
|
+
geometry: geometry_6
|
|
30736
30787
|
class phase_20(NamedObject[phase_20_child]):
|
|
30737
30788
|
_version: str
|
|
30738
30789
|
fluent_name: str
|
|
@@ -30808,7 +30859,7 @@ class settings_18(Group):
|
|
|
30808
30859
|
structure: structure_1
|
|
30809
30860
|
uds: uds
|
|
30810
30861
|
icing: icing
|
|
30811
|
-
geometry:
|
|
30862
|
+
geometry: geometry_6
|
|
30812
30863
|
phase: phase_20
|
|
30813
30864
|
class pressure_outlet_child(Group):
|
|
30814
30865
|
_version: str
|
|
@@ -30929,7 +30980,7 @@ class phase_21_child(Group):
|
|
|
30929
30980
|
child_names: list[str]
|
|
30930
30981
|
radiator: radiator_1
|
|
30931
30982
|
discrete_phase: discrete_phase_2
|
|
30932
|
-
geometry:
|
|
30983
|
+
geometry: geometry_6
|
|
30933
30984
|
class phase_21(NamedObject[phase_21_child]):
|
|
30934
30985
|
_version: str
|
|
30935
30986
|
fluent_name: str
|
|
@@ -30996,7 +31047,7 @@ class settings_19(Group):
|
|
|
30996
31047
|
child_names: list[str]
|
|
30997
31048
|
radiator: radiator_1
|
|
30998
31049
|
discrete_phase: discrete_phase_2
|
|
30999
|
-
geometry:
|
|
31050
|
+
geometry: geometry_6
|
|
31000
31051
|
phase: phase_21
|
|
31001
31052
|
class radiator_child(Group):
|
|
31002
31053
|
_version: str
|
|
@@ -31109,7 +31160,7 @@ class phase_22_child(Group):
|
|
|
31109
31160
|
_python_name: str
|
|
31110
31161
|
child_names: list[str]
|
|
31111
31162
|
turbulence: turbulence_4
|
|
31112
|
-
geometry:
|
|
31163
|
+
geometry: geometry_6
|
|
31113
31164
|
class phase_22(NamedObject[phase_22_child]):
|
|
31114
31165
|
_version: str
|
|
31115
31166
|
fluent_name: str
|
|
@@ -31175,7 +31226,7 @@ class settings_20(Group):
|
|
|
31175
31226
|
_python_name: str
|
|
31176
31227
|
child_names: list[str]
|
|
31177
31228
|
turbulence: turbulence_4
|
|
31178
|
-
geometry:
|
|
31229
|
+
geometry: geometry_6
|
|
31179
31230
|
phase: phase_22
|
|
31180
31231
|
class rans_les_interface_child(Group):
|
|
31181
31232
|
_version: str
|
|
@@ -31429,7 +31480,7 @@ class phase_23_child(Group):
|
|
|
31429
31480
|
_python_name: str
|
|
31430
31481
|
child_names: list[str]
|
|
31431
31482
|
recirculation_inlet: recirculation_inlet_1
|
|
31432
|
-
geometry:
|
|
31483
|
+
geometry: geometry_6
|
|
31433
31484
|
class phase_23(NamedObject[phase_23_child]):
|
|
31434
31485
|
_version: str
|
|
31435
31486
|
fluent_name: str
|
|
@@ -31495,7 +31546,7 @@ class settings_21(Group):
|
|
|
31495
31546
|
_python_name: str
|
|
31496
31547
|
child_names: list[str]
|
|
31497
31548
|
recirculation_inlet: recirculation_inlet_1
|
|
31498
|
-
geometry:
|
|
31549
|
+
geometry: geometry_6
|
|
31499
31550
|
phase: phase_23
|
|
31500
31551
|
class recirculation_inlet_child(Group):
|
|
31501
31552
|
_version: str
|
|
@@ -31594,7 +31645,7 @@ class phase_24_child(Group):
|
|
|
31594
31645
|
_python_name: str
|
|
31595
31646
|
child_names: list[str]
|
|
31596
31647
|
recirculation_outlet: recirculation_outlet_1
|
|
31597
|
-
geometry:
|
|
31648
|
+
geometry: geometry_6
|
|
31598
31649
|
class phase_24(NamedObject[phase_24_child]):
|
|
31599
31650
|
_version: str
|
|
31600
31651
|
fluent_name: str
|
|
@@ -31660,7 +31711,7 @@ class settings_22(Group):
|
|
|
31660
31711
|
_python_name: str
|
|
31661
31712
|
child_names: list[str]
|
|
31662
31713
|
recirculation_outlet: recirculation_outlet_1
|
|
31663
|
-
geometry:
|
|
31714
|
+
geometry: geometry_6
|
|
31664
31715
|
phase: phase_24
|
|
31665
31716
|
class recirculation_outlet_child(Group):
|
|
31666
31717
|
_version: str
|
|
@@ -32714,7 +32765,7 @@ class phase_25_child(Group):
|
|
|
32714
32765
|
structure: structure_1
|
|
32715
32766
|
uds: uds
|
|
32716
32767
|
icing: icing_1
|
|
32717
|
-
geometry:
|
|
32768
|
+
geometry: geometry_6
|
|
32718
32769
|
class phase_25(NamedObject[phase_25_child]):
|
|
32719
32770
|
_version: str
|
|
32720
32771
|
fluent_name: str
|
|
@@ -32790,7 +32841,7 @@ class settings_23(Group):
|
|
|
32790
32841
|
structure: structure_1
|
|
32791
32842
|
uds: uds
|
|
32792
32843
|
icing: icing_1
|
|
32793
|
-
geometry:
|
|
32844
|
+
geometry: geometry_6
|
|
32794
32845
|
phase: phase_25
|
|
32795
32846
|
class velocity_inlet_child(Group):
|
|
32796
32847
|
_version: str
|
|
@@ -35666,7 +35717,7 @@ class phase_26_child(Group):
|
|
|
35666
35717
|
uds: uds
|
|
35667
35718
|
icing: icing_2
|
|
35668
35719
|
ablation: ablation_1
|
|
35669
|
-
geometry:
|
|
35720
|
+
geometry: geometry_6
|
|
35670
35721
|
class phase_26(NamedObject[phase_26_child]):
|
|
35671
35722
|
_version: str
|
|
35672
35723
|
fluent_name: str
|
|
@@ -35744,7 +35795,7 @@ class settings_24(Group):
|
|
|
35744
35795
|
uds: uds
|
|
35745
35796
|
icing: icing_2
|
|
35746
35797
|
ablation: ablation_1
|
|
35747
|
-
geometry:
|
|
35798
|
+
geometry: geometry_6
|
|
35748
35799
|
phase: phase_26
|
|
35749
35800
|
class wall_child(Group):
|
|
35750
35801
|
_version: str
|
|
@@ -35836,7 +35887,7 @@ class boundaries_1(Group):
|
|
|
35836
35887
|
degassing: degassing
|
|
35837
35888
|
exhaust_fan: exhaust_fan
|
|
35838
35889
|
fan: fan
|
|
35839
|
-
geometry:
|
|
35890
|
+
geometry: geometry_5
|
|
35840
35891
|
inlet_vent: inlet_vent
|
|
35841
35892
|
intake_fan: intake_fan
|
|
35842
35893
|
interface: interface
|
|
@@ -36292,7 +36343,7 @@ class axis_6_child(Group):
|
|
|
36292
36343
|
command_names: list[str]
|
|
36293
36344
|
name: name_4
|
|
36294
36345
|
locations: locations_2
|
|
36295
|
-
geometry:
|
|
36346
|
+
geometry: geometry_6
|
|
36296
36347
|
phase: phase_3
|
|
36297
36348
|
def display(self):
|
|
36298
36349
|
"""
|
|
@@ -36397,7 +36448,7 @@ class degassing_1_child(Group):
|
|
|
36397
36448
|
command_names: list[str]
|
|
36398
36449
|
name: name_4
|
|
36399
36450
|
locations: locations_2
|
|
36400
|
-
geometry:
|
|
36451
|
+
geometry: geometry_6
|
|
36401
36452
|
phase: phase_3
|
|
36402
36453
|
def display(self):
|
|
36403
36454
|
"""
|
|
@@ -36513,7 +36564,7 @@ class exhaust_fan_1_child(Group):
|
|
|
36513
36564
|
structure: structure_1
|
|
36514
36565
|
uds: uds
|
|
36515
36566
|
icing: icing
|
|
36516
|
-
geometry:
|
|
36567
|
+
geometry: geometry_6
|
|
36517
36568
|
phase: phase_4
|
|
36518
36569
|
def display(self):
|
|
36519
36570
|
"""
|
|
@@ -36621,7 +36672,7 @@ class fan_1_child(Group):
|
|
|
36621
36672
|
pressure_jump_specification: pressure_jump_specification
|
|
36622
36673
|
swirl_velocity_specification: swirl_velocity_specification
|
|
36623
36674
|
discrete_phase: discrete_phase_2
|
|
36624
|
-
geometry:
|
|
36675
|
+
geometry: geometry_6
|
|
36625
36676
|
phase: phase_5
|
|
36626
36677
|
def display(self):
|
|
36627
36678
|
"""
|
|
@@ -36718,7 +36769,7 @@ class fan_1(NamedObject[fan_1_child]):
|
|
|
36718
36769
|
The name of the new object.
|
|
36719
36770
|
"""
|
|
36720
36771
|
child_object_type: fan_1_child
|
|
36721
|
-
class
|
|
36772
|
+
class geometry_8_child(Group):
|
|
36722
36773
|
_version: str
|
|
36723
36774
|
fluent_name: str
|
|
36724
36775
|
_python_name: str
|
|
@@ -36726,7 +36777,7 @@ class geometry_7_child(Group):
|
|
|
36726
36777
|
command_names: list[str]
|
|
36727
36778
|
name: name_4
|
|
36728
36779
|
locations: locations_2
|
|
36729
|
-
geometry:
|
|
36780
|
+
geometry: geometry_6
|
|
36730
36781
|
phase: phase_3
|
|
36731
36782
|
def display(self):
|
|
36732
36783
|
"""
|
|
@@ -36762,7 +36813,7 @@ class geometry_7_child(Group):
|
|
|
36762
36813
|
Input new type.
|
|
36763
36814
|
"""
|
|
36764
36815
|
_child_aliases: dict
|
|
36765
|
-
class
|
|
36816
|
+
class geometry_8(NamedObject[geometry_8_child]):
|
|
36766
36817
|
_version: str
|
|
36767
36818
|
fluent_name: str
|
|
36768
36819
|
_python_name: str
|
|
@@ -36822,7 +36873,7 @@ class geometry_7(NamedObject[geometry_7_child]):
|
|
|
36822
36873
|
to : str
|
|
36823
36874
|
The name of the new object.
|
|
36824
36875
|
"""
|
|
36825
|
-
child_object_type:
|
|
36876
|
+
child_object_type: geometry_8_child
|
|
36826
36877
|
class inlet_vent_1_child(Group):
|
|
36827
36878
|
_version: str
|
|
36828
36879
|
fluent_name: str
|
|
@@ -36842,7 +36893,7 @@ class inlet_vent_1_child(Group):
|
|
|
36842
36893
|
structure: structure_1
|
|
36843
36894
|
uds: uds
|
|
36844
36895
|
icing: icing_1
|
|
36845
|
-
geometry:
|
|
36896
|
+
geometry: geometry_6
|
|
36846
36897
|
phase: phase_6
|
|
36847
36898
|
def display(self):
|
|
36848
36899
|
"""
|
|
@@ -36958,7 +37009,7 @@ class intake_fan_1_child(Group):
|
|
|
36958
37009
|
structure: structure_1
|
|
36959
37010
|
uds: uds
|
|
36960
37011
|
icing: icing_1
|
|
36961
|
-
geometry:
|
|
37012
|
+
geometry: geometry_6
|
|
36962
37013
|
phase: phase_7
|
|
36963
37014
|
def display(self):
|
|
36964
37015
|
"""
|
|
@@ -37064,7 +37115,7 @@ class interface_2_child(Group):
|
|
|
37064
37115
|
name: name_4
|
|
37065
37116
|
locations: locations_2
|
|
37066
37117
|
interface: interface_1
|
|
37067
|
-
geometry:
|
|
37118
|
+
geometry: geometry_6
|
|
37068
37119
|
phase: phase_8
|
|
37069
37120
|
def display(self):
|
|
37070
37121
|
"""
|
|
@@ -37285,7 +37336,7 @@ class mass_flow_inlet_1_child(Group):
|
|
|
37285
37336
|
structure: structure_1
|
|
37286
37337
|
uds: uds
|
|
37287
37338
|
icing: icing_1
|
|
37288
|
-
geometry:
|
|
37339
|
+
geometry: geometry_6
|
|
37289
37340
|
phase: phase_10
|
|
37290
37341
|
def display(self):
|
|
37291
37342
|
"""
|
|
@@ -37401,7 +37452,7 @@ class mass_flow_outlet_1_child(Group):
|
|
|
37401
37452
|
structure: structure_1
|
|
37402
37453
|
uds: uds
|
|
37403
37454
|
icing: icing_1
|
|
37404
|
-
geometry:
|
|
37455
|
+
geometry: geometry_6
|
|
37405
37456
|
phase: phase_11
|
|
37406
37457
|
def display(self):
|
|
37407
37458
|
"""
|
|
@@ -37721,7 +37772,7 @@ class outflow_1_child(Group):
|
|
|
37721
37772
|
uds: uds_2
|
|
37722
37773
|
radiation: radiation_2
|
|
37723
37774
|
discrete_phase: discrete_phase_4
|
|
37724
|
-
geometry:
|
|
37775
|
+
geometry: geometry_6
|
|
37725
37776
|
phase: phase_14
|
|
37726
37777
|
def display(self):
|
|
37727
37778
|
"""
|
|
@@ -37837,7 +37888,7 @@ class outlet_vent_1_child(Group):
|
|
|
37837
37888
|
structure: structure_1
|
|
37838
37889
|
uds: uds
|
|
37839
37890
|
icing: icing
|
|
37840
|
-
geometry:
|
|
37891
|
+
geometry: geometry_6
|
|
37841
37892
|
phase: phase_15
|
|
37842
37893
|
def display(self):
|
|
37843
37894
|
"""
|
|
@@ -37942,7 +37993,7 @@ class overset_1_child(Group):
|
|
|
37942
37993
|
command_names: list[str]
|
|
37943
37994
|
name: name_4
|
|
37944
37995
|
locations: locations_2
|
|
37945
|
-
geometry:
|
|
37996
|
+
geometry: geometry_6
|
|
37946
37997
|
phase: phase_3
|
|
37947
37998
|
def display(self):
|
|
37948
37999
|
"""
|
|
@@ -38048,7 +38099,7 @@ class periodic_2_child(Group):
|
|
|
38048
38099
|
name: name_4
|
|
38049
38100
|
locations: locations_2
|
|
38050
38101
|
periodic: periodic_1
|
|
38051
|
-
geometry:
|
|
38102
|
+
geometry: geometry_7
|
|
38052
38103
|
phase: phase_16
|
|
38053
38104
|
def display(self):
|
|
38054
38105
|
"""
|
|
@@ -38155,7 +38206,7 @@ class porous_jump_2_child(Group):
|
|
|
38155
38206
|
locations: locations_2
|
|
38156
38207
|
porous_jump: porous_jump_1
|
|
38157
38208
|
discrete_phase: discrete_phase_2
|
|
38158
|
-
geometry:
|
|
38209
|
+
geometry: geometry_6
|
|
38159
38210
|
phase: phase_17
|
|
38160
38211
|
def display(self):
|
|
38161
38212
|
"""
|
|
@@ -38270,7 +38321,7 @@ class pressure_far_field_1_child(Group):
|
|
|
38270
38321
|
structure: structure_1
|
|
38271
38322
|
uds: uds
|
|
38272
38323
|
icing: icing_1
|
|
38273
|
-
geometry:
|
|
38324
|
+
geometry: geometry_6
|
|
38274
38325
|
phase: phase_18
|
|
38275
38326
|
def display(self):
|
|
38276
38327
|
"""
|
|
@@ -38386,7 +38437,7 @@ class pressure_inlet_1_child(Group):
|
|
|
38386
38437
|
structure: structure_1
|
|
38387
38438
|
uds: uds
|
|
38388
38439
|
icing: icing_1
|
|
38389
|
-
geometry:
|
|
38440
|
+
geometry: geometry_6
|
|
38390
38441
|
phase: phase_19
|
|
38391
38442
|
def display(self):
|
|
38392
38443
|
"""
|
|
@@ -38502,7 +38553,7 @@ class pressure_outlet_1_child(Group):
|
|
|
38502
38553
|
structure: structure_1
|
|
38503
38554
|
uds: uds
|
|
38504
38555
|
icing: icing
|
|
38505
|
-
geometry:
|
|
38556
|
+
geometry: geometry_6
|
|
38506
38557
|
phase: phase_20
|
|
38507
38558
|
def display(self):
|
|
38508
38559
|
"""
|
|
@@ -38609,7 +38660,7 @@ class radiator_2_child(Group):
|
|
|
38609
38660
|
locations: locations_2
|
|
38610
38661
|
radiator: radiator_1
|
|
38611
38662
|
discrete_phase: discrete_phase_2
|
|
38612
|
-
geometry:
|
|
38663
|
+
geometry: geometry_6
|
|
38613
38664
|
phase: phase_21
|
|
38614
38665
|
def display(self):
|
|
38615
38666
|
"""
|
|
@@ -38715,7 +38766,7 @@ class rans_les_interface_1_child(Group):
|
|
|
38715
38766
|
name: name_4
|
|
38716
38767
|
locations: locations_2
|
|
38717
38768
|
turbulence: turbulence_4
|
|
38718
|
-
geometry:
|
|
38769
|
+
geometry: geometry_6
|
|
38719
38770
|
phase: phase_22
|
|
38720
38771
|
def display(self):
|
|
38721
38772
|
"""
|
|
@@ -38821,7 +38872,7 @@ class recirculation_inlet_2_child(Group):
|
|
|
38821
38872
|
name: name_4
|
|
38822
38873
|
locations: locations_2
|
|
38823
38874
|
recirculation_inlet: recirculation_inlet_1
|
|
38824
|
-
geometry:
|
|
38875
|
+
geometry: geometry_6
|
|
38825
38876
|
phase: phase_23
|
|
38826
38877
|
def display(self):
|
|
38827
38878
|
"""
|
|
@@ -38927,7 +38978,7 @@ class recirculation_outlet_2_child(Group):
|
|
|
38927
38978
|
name: name_4
|
|
38928
38979
|
locations: locations_2
|
|
38929
38980
|
recirculation_outlet: recirculation_outlet_1
|
|
38930
|
-
geometry:
|
|
38981
|
+
geometry: geometry_6
|
|
38931
38982
|
phase: phase_24
|
|
38932
38983
|
def display(self):
|
|
38933
38984
|
"""
|
|
@@ -39032,7 +39083,7 @@ class shadow_1_child(Group):
|
|
|
39032
39083
|
command_names: list[str]
|
|
39033
39084
|
name: name_4
|
|
39034
39085
|
locations: locations_2
|
|
39035
|
-
geometry:
|
|
39086
|
+
geometry: geometry_6
|
|
39036
39087
|
phase: phase_3
|
|
39037
39088
|
def display(self):
|
|
39038
39089
|
"""
|
|
@@ -39137,7 +39188,7 @@ class symmetry_1_child(Group):
|
|
|
39137
39188
|
command_names: list[str]
|
|
39138
39189
|
name: name_4
|
|
39139
39190
|
locations: locations_2
|
|
39140
|
-
geometry:
|
|
39191
|
+
geometry: geometry_6
|
|
39141
39192
|
phase: phase_3
|
|
39142
39193
|
def display(self):
|
|
39143
39194
|
"""
|
|
@@ -39253,7 +39304,7 @@ class velocity_inlet_1_child(Group):
|
|
|
39253
39304
|
structure: structure_1
|
|
39254
39305
|
uds: uds
|
|
39255
39306
|
icing: icing_1
|
|
39256
|
-
geometry:
|
|
39307
|
+
geometry: geometry_6
|
|
39257
39308
|
phase: phase_25
|
|
39258
39309
|
def display(self):
|
|
39259
39310
|
"""
|
|
@@ -39371,7 +39422,7 @@ class wall_1_child(Group):
|
|
|
39371
39422
|
uds: uds
|
|
39372
39423
|
icing: icing_2
|
|
39373
39424
|
ablation: ablation_1
|
|
39374
|
-
geometry:
|
|
39425
|
+
geometry: geometry_6
|
|
39375
39426
|
phase: phase_26
|
|
39376
39427
|
def display(self):
|
|
39377
39428
|
"""
|
|
@@ -39478,7 +39529,7 @@ class boundaries(Group):
|
|
|
39478
39529
|
degassing: degassing_1
|
|
39479
39530
|
exhaust_fan: exhaust_fan_1
|
|
39480
39531
|
fan: fan_1
|
|
39481
|
-
geometry:
|
|
39532
|
+
geometry: geometry_8
|
|
39482
39533
|
inlet_vent: inlet_vent_1
|
|
39483
39534
|
intake_fan: intake_fan_1
|
|
39484
39535
|
interface: interface_2
|
|
@@ -39637,7 +39688,7 @@ class phase_28_child(Group):
|
|
|
39637
39688
|
_python_name: str
|
|
39638
39689
|
child_names: list[str]
|
|
39639
39690
|
query_names: list[str]
|
|
39640
|
-
geometry:
|
|
39691
|
+
geometry: geometry_6
|
|
39641
39692
|
def adjacent_cell_zone(self):
|
|
39642
39693
|
"""
|
|
39643
39694
|
Get adjacent cell zone for this face zone.
|
|
@@ -39714,7 +39765,7 @@ class axis_7_child(Group):
|
|
|
39714
39765
|
query_names: list[str]
|
|
39715
39766
|
name: name_4
|
|
39716
39767
|
phase: phase_28
|
|
39717
|
-
geometry:
|
|
39768
|
+
geometry: geometry_6
|
|
39718
39769
|
def display(self):
|
|
39719
39770
|
"""
|
|
39720
39771
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -39799,7 +39850,7 @@ class degassing_2_child(Group):
|
|
|
39799
39850
|
query_names: list[str]
|
|
39800
39851
|
name: name_4
|
|
39801
39852
|
phase: phase_28
|
|
39802
|
-
geometry:
|
|
39853
|
+
geometry: geometry_6
|
|
39803
39854
|
def display(self):
|
|
39804
39855
|
"""
|
|
39805
39856
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -39892,7 +39943,7 @@ class phase_29_child(Group):
|
|
|
39892
39943
|
structure: structure_1
|
|
39893
39944
|
uds: uds
|
|
39894
39945
|
icing: icing
|
|
39895
|
-
geometry:
|
|
39946
|
+
geometry: geometry_6
|
|
39896
39947
|
def adjacent_cell_zone(self):
|
|
39897
39948
|
"""
|
|
39898
39949
|
Get adjacent cell zone for this face zone.
|
|
@@ -39981,7 +40032,7 @@ class exhaust_fan_2_child(Group):
|
|
|
39981
40032
|
structure: structure_1
|
|
39982
40033
|
uds: uds
|
|
39983
40034
|
icing: icing
|
|
39984
|
-
geometry:
|
|
40035
|
+
geometry: geometry_6
|
|
39985
40036
|
def display(self):
|
|
39986
40037
|
"""
|
|
39987
40038
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -40067,7 +40118,7 @@ class phase_30_child(Group):
|
|
|
40067
40118
|
pressure_jump_specification: pressure_jump_specification
|
|
40068
40119
|
swirl_velocity_specification: swirl_velocity_specification
|
|
40069
40120
|
discrete_phase: discrete_phase_2
|
|
40070
|
-
geometry:
|
|
40121
|
+
geometry: geometry_6
|
|
40071
40122
|
def adjacent_cell_zone(self):
|
|
40072
40123
|
"""
|
|
40073
40124
|
Get adjacent cell zone for this face zone.
|
|
@@ -40148,7 +40199,7 @@ class fan_2_child(Group):
|
|
|
40148
40199
|
pressure_jump_specification: pressure_jump_specification
|
|
40149
40200
|
swirl_velocity_specification: swirl_velocity_specification
|
|
40150
40201
|
discrete_phase: discrete_phase_2
|
|
40151
|
-
geometry:
|
|
40202
|
+
geometry: geometry_6
|
|
40152
40203
|
def display(self):
|
|
40153
40204
|
"""
|
|
40154
40205
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -40225,7 +40276,7 @@ class fan_2(NamedObject[fan_2_child]):
|
|
|
40225
40276
|
The name of the new object.
|
|
40226
40277
|
"""
|
|
40227
40278
|
child_object_type: fan_2_child
|
|
40228
|
-
class
|
|
40279
|
+
class geometry_9_child(Group):
|
|
40229
40280
|
_version: str
|
|
40230
40281
|
fluent_name: str
|
|
40231
40282
|
_python_name: str
|
|
@@ -40234,7 +40285,7 @@ class geometry_8_child(Group):
|
|
|
40234
40285
|
query_names: list[str]
|
|
40235
40286
|
name: name_4
|
|
40236
40287
|
phase: phase_28
|
|
40237
|
-
geometry:
|
|
40288
|
+
geometry: geometry_6
|
|
40238
40289
|
def display(self):
|
|
40239
40290
|
"""
|
|
40240
40291
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -40251,7 +40302,7 @@ class geometry_8_child(Group):
|
|
|
40251
40302
|
"""
|
|
40252
40303
|
Get shadow zone for this wall zone.
|
|
40253
40304
|
"""
|
|
40254
|
-
class
|
|
40305
|
+
class geometry_9(NamedObject[geometry_9_child]):
|
|
40255
40306
|
_version: str
|
|
40256
40307
|
fluent_name: str
|
|
40257
40308
|
_python_name: str
|
|
@@ -40309,7 +40360,7 @@ class geometry_8(NamedObject[geometry_8_child]):
|
|
|
40309
40360
|
to : str
|
|
40310
40361
|
The name of the new object.
|
|
40311
40362
|
"""
|
|
40312
|
-
child_object_type:
|
|
40363
|
+
child_object_type: geometry_9_child
|
|
40313
40364
|
class phase_31_child(Group):
|
|
40314
40365
|
_version: str
|
|
40315
40366
|
fluent_name: str
|
|
@@ -40327,7 +40378,7 @@ class phase_31_child(Group):
|
|
|
40327
40378
|
structure: structure_1
|
|
40328
40379
|
uds: uds
|
|
40329
40380
|
icing: icing_1
|
|
40330
|
-
geometry:
|
|
40381
|
+
geometry: geometry_6
|
|
40331
40382
|
def adjacent_cell_zone(self):
|
|
40332
40383
|
"""
|
|
40333
40384
|
Get adjacent cell zone for this face zone.
|
|
@@ -40416,7 +40467,7 @@ class inlet_vent_2_child(Group):
|
|
|
40416
40467
|
structure: structure_1
|
|
40417
40468
|
uds: uds
|
|
40418
40469
|
icing: icing_1
|
|
40419
|
-
geometry:
|
|
40470
|
+
geometry: geometry_6
|
|
40420
40471
|
def display(self):
|
|
40421
40472
|
"""
|
|
40422
40473
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -40510,7 +40561,7 @@ class phase_32_child(Group):
|
|
|
40510
40561
|
structure: structure_1
|
|
40511
40562
|
uds: uds
|
|
40512
40563
|
icing: icing_1
|
|
40513
|
-
geometry:
|
|
40564
|
+
geometry: geometry_6
|
|
40514
40565
|
def adjacent_cell_zone(self):
|
|
40515
40566
|
"""
|
|
40516
40567
|
Get adjacent cell zone for this face zone.
|
|
@@ -40599,7 +40650,7 @@ class intake_fan_2_child(Group):
|
|
|
40599
40650
|
structure: structure_1
|
|
40600
40651
|
uds: uds
|
|
40601
40652
|
icing: icing_1
|
|
40602
|
-
geometry:
|
|
40653
|
+
geometry: geometry_6
|
|
40603
40654
|
def display(self):
|
|
40604
40655
|
"""
|
|
40605
40656
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -40683,7 +40734,7 @@ class phase_33_child(Group):
|
|
|
40683
40734
|
child_names: list[str]
|
|
40684
40735
|
query_names: list[str]
|
|
40685
40736
|
interface: interface_1
|
|
40686
|
-
geometry:
|
|
40737
|
+
geometry: geometry_6
|
|
40687
40738
|
def adjacent_cell_zone(self):
|
|
40688
40739
|
"""
|
|
40689
40740
|
Get adjacent cell zone for this face zone.
|
|
@@ -40761,7 +40812,7 @@ class interface_3_child(Group):
|
|
|
40761
40812
|
name: name_4
|
|
40762
40813
|
phase: phase_33
|
|
40763
40814
|
interface: interface_1
|
|
40764
|
-
geometry:
|
|
40815
|
+
geometry: geometry_6
|
|
40765
40816
|
def display(self):
|
|
40766
40817
|
"""
|
|
40767
40818
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -41013,7 +41064,7 @@ class phase_35_child(Group):
|
|
|
41013
41064
|
structure: structure_1
|
|
41014
41065
|
uds: uds
|
|
41015
41066
|
icing: icing_1
|
|
41016
|
-
geometry:
|
|
41067
|
+
geometry: geometry_6
|
|
41017
41068
|
def adjacent_cell_zone(self):
|
|
41018
41069
|
"""
|
|
41019
41070
|
Get adjacent cell zone for this face zone.
|
|
@@ -41102,7 +41153,7 @@ class mass_flow_inlet_2_child(Group):
|
|
|
41102
41153
|
structure: structure_1
|
|
41103
41154
|
uds: uds
|
|
41104
41155
|
icing: icing_1
|
|
41105
|
-
geometry:
|
|
41156
|
+
geometry: geometry_6
|
|
41106
41157
|
def display(self):
|
|
41107
41158
|
"""
|
|
41108
41159
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -41196,7 +41247,7 @@ class phase_36_child(Group):
|
|
|
41196
41247
|
structure: structure_1
|
|
41197
41248
|
uds: uds
|
|
41198
41249
|
icing: icing_1
|
|
41199
|
-
geometry:
|
|
41250
|
+
geometry: geometry_6
|
|
41200
41251
|
def adjacent_cell_zone(self):
|
|
41201
41252
|
"""
|
|
41202
41253
|
Get adjacent cell zone for this face zone.
|
|
@@ -41285,7 +41336,7 @@ class mass_flow_outlet_2_child(Group):
|
|
|
41285
41336
|
structure: structure_1
|
|
41286
41337
|
uds: uds
|
|
41287
41338
|
icing: icing_1
|
|
41288
|
-
geometry:
|
|
41339
|
+
geometry: geometry_6
|
|
41289
41340
|
def display(self):
|
|
41290
41341
|
"""
|
|
41291
41342
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -41689,7 +41740,7 @@ class phase_39_child(Group):
|
|
|
41689
41740
|
uds: uds_2
|
|
41690
41741
|
radiation: radiation_2
|
|
41691
41742
|
discrete_phase: discrete_phase_4
|
|
41692
|
-
geometry:
|
|
41743
|
+
geometry: geometry_6
|
|
41693
41744
|
def adjacent_cell_zone(self):
|
|
41694
41745
|
"""
|
|
41695
41746
|
Get adjacent cell zone for this face zone.
|
|
@@ -41773,7 +41824,7 @@ class outflow_2_child(Group):
|
|
|
41773
41824
|
uds: uds_2
|
|
41774
41825
|
radiation: radiation_2
|
|
41775
41826
|
discrete_phase: discrete_phase_4
|
|
41776
|
-
geometry:
|
|
41827
|
+
geometry: geometry_6
|
|
41777
41828
|
def display(self):
|
|
41778
41829
|
"""
|
|
41779
41830
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -41867,7 +41918,7 @@ class phase_40_child(Group):
|
|
|
41867
41918
|
structure: structure_1
|
|
41868
41919
|
uds: uds
|
|
41869
41920
|
icing: icing
|
|
41870
|
-
geometry:
|
|
41921
|
+
geometry: geometry_6
|
|
41871
41922
|
def adjacent_cell_zone(self):
|
|
41872
41923
|
"""
|
|
41873
41924
|
Get adjacent cell zone for this face zone.
|
|
@@ -41956,7 +42007,7 @@ class outlet_vent_2_child(Group):
|
|
|
41956
42007
|
structure: structure_1
|
|
41957
42008
|
uds: uds
|
|
41958
42009
|
icing: icing
|
|
41959
|
-
geometry:
|
|
42010
|
+
geometry: geometry_6
|
|
41960
42011
|
def display(self):
|
|
41961
42012
|
"""
|
|
41962
42013
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42042,7 +42093,7 @@ class overset_2_child(Group):
|
|
|
42042
42093
|
query_names: list[str]
|
|
42043
42094
|
name: name_4
|
|
42044
42095
|
phase: phase_28
|
|
42045
|
-
geometry:
|
|
42096
|
+
geometry: geometry_6
|
|
42046
42097
|
def display(self):
|
|
42047
42098
|
"""
|
|
42048
42099
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42125,7 +42176,7 @@ class phase_41_child(Group):
|
|
|
42125
42176
|
child_names: list[str]
|
|
42126
42177
|
query_names: list[str]
|
|
42127
42178
|
periodic: periodic_1
|
|
42128
|
-
geometry:
|
|
42179
|
+
geometry: geometry_7
|
|
42129
42180
|
def adjacent_cell_zone(self):
|
|
42130
42181
|
"""
|
|
42131
42182
|
Get adjacent cell zone for this face zone.
|
|
@@ -42203,7 +42254,7 @@ class periodic_3_child(Group):
|
|
|
42203
42254
|
name: name_4
|
|
42204
42255
|
phase: phase_41
|
|
42205
42256
|
periodic: periodic_1
|
|
42206
|
-
geometry:
|
|
42257
|
+
geometry: geometry_7
|
|
42207
42258
|
def display(self):
|
|
42208
42259
|
"""
|
|
42209
42260
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42287,7 +42338,7 @@ class phase_42_child(Group):
|
|
|
42287
42338
|
query_names: list[str]
|
|
42288
42339
|
porous_jump: porous_jump_1
|
|
42289
42340
|
discrete_phase: discrete_phase_2
|
|
42290
|
-
geometry:
|
|
42341
|
+
geometry: geometry_6
|
|
42291
42342
|
def adjacent_cell_zone(self):
|
|
42292
42343
|
"""
|
|
42293
42344
|
Get adjacent cell zone for this face zone.
|
|
@@ -42367,7 +42418,7 @@ class porous_jump_3_child(Group):
|
|
|
42367
42418
|
phase: phase_42
|
|
42368
42419
|
porous_jump: porous_jump_1
|
|
42369
42420
|
discrete_phase: discrete_phase_2
|
|
42370
|
-
geometry:
|
|
42421
|
+
geometry: geometry_6
|
|
42371
42422
|
def display(self):
|
|
42372
42423
|
"""
|
|
42373
42424
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42460,7 +42511,7 @@ class phase_43_child(Group):
|
|
|
42460
42511
|
structure: structure_1
|
|
42461
42512
|
uds: uds
|
|
42462
42513
|
icing: icing_1
|
|
42463
|
-
geometry:
|
|
42514
|
+
geometry: geometry_6
|
|
42464
42515
|
def adjacent_cell_zone(self):
|
|
42465
42516
|
"""
|
|
42466
42517
|
Get adjacent cell zone for this face zone.
|
|
@@ -42548,7 +42599,7 @@ class pressure_far_field_2_child(Group):
|
|
|
42548
42599
|
structure: structure_1
|
|
42549
42600
|
uds: uds
|
|
42550
42601
|
icing: icing_1
|
|
42551
|
-
geometry:
|
|
42602
|
+
geometry: geometry_6
|
|
42552
42603
|
def display(self):
|
|
42553
42604
|
"""
|
|
42554
42605
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42642,7 +42693,7 @@ class phase_44_child(Group):
|
|
|
42642
42693
|
structure: structure_1
|
|
42643
42694
|
uds: uds
|
|
42644
42695
|
icing: icing_1
|
|
42645
|
-
geometry:
|
|
42696
|
+
geometry: geometry_6
|
|
42646
42697
|
def adjacent_cell_zone(self):
|
|
42647
42698
|
"""
|
|
42648
42699
|
Get adjacent cell zone for this face zone.
|
|
@@ -42731,7 +42782,7 @@ class pressure_inlet_2_child(Group):
|
|
|
42731
42782
|
structure: structure_1
|
|
42732
42783
|
uds: uds
|
|
42733
42784
|
icing: icing_1
|
|
42734
|
-
geometry:
|
|
42785
|
+
geometry: geometry_6
|
|
42735
42786
|
def display(self):
|
|
42736
42787
|
"""
|
|
42737
42788
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42825,7 +42876,7 @@ class phase_45_child(Group):
|
|
|
42825
42876
|
structure: structure_1
|
|
42826
42877
|
uds: uds
|
|
42827
42878
|
icing: icing
|
|
42828
|
-
geometry:
|
|
42879
|
+
geometry: geometry_6
|
|
42829
42880
|
def adjacent_cell_zone(self):
|
|
42830
42881
|
"""
|
|
42831
42882
|
Get adjacent cell zone for this face zone.
|
|
@@ -42914,7 +42965,7 @@ class pressure_outlet_2_child(Group):
|
|
|
42914
42965
|
structure: structure_1
|
|
42915
42966
|
uds: uds
|
|
42916
42967
|
icing: icing
|
|
42917
|
-
geometry:
|
|
42968
|
+
geometry: geometry_6
|
|
42918
42969
|
def display(self):
|
|
42919
42970
|
"""
|
|
42920
42971
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -42999,7 +43050,7 @@ class phase_46_child(Group):
|
|
|
42999
43050
|
query_names: list[str]
|
|
43000
43051
|
radiator: radiator_1
|
|
43001
43052
|
discrete_phase: discrete_phase_2
|
|
43002
|
-
geometry:
|
|
43053
|
+
geometry: geometry_6
|
|
43003
43054
|
def adjacent_cell_zone(self):
|
|
43004
43055
|
"""
|
|
43005
43056
|
Get adjacent cell zone for this face zone.
|
|
@@ -43079,7 +43130,7 @@ class radiator_3_child(Group):
|
|
|
43079
43130
|
phase: phase_46
|
|
43080
43131
|
radiator: radiator_1
|
|
43081
43132
|
discrete_phase: discrete_phase_2
|
|
43082
|
-
geometry:
|
|
43133
|
+
geometry: geometry_6
|
|
43083
43134
|
def display(self):
|
|
43084
43135
|
"""
|
|
43085
43136
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43163,7 +43214,7 @@ class phase_47_child(Group):
|
|
|
43163
43214
|
child_names: list[str]
|
|
43164
43215
|
query_names: list[str]
|
|
43165
43216
|
turbulence: turbulence_4
|
|
43166
|
-
geometry:
|
|
43217
|
+
geometry: geometry_6
|
|
43167
43218
|
def adjacent_cell_zone(self):
|
|
43168
43219
|
"""
|
|
43169
43220
|
Get adjacent cell zone for this face zone.
|
|
@@ -43241,7 +43292,7 @@ class rans_les_interface_2_child(Group):
|
|
|
43241
43292
|
name: name_4
|
|
43242
43293
|
phase: phase_47
|
|
43243
43294
|
turbulence: turbulence_4
|
|
43244
|
-
geometry:
|
|
43295
|
+
geometry: geometry_6
|
|
43245
43296
|
def display(self):
|
|
43246
43297
|
"""
|
|
43247
43298
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43324,7 +43375,7 @@ class phase_48_child(Group):
|
|
|
43324
43375
|
child_names: list[str]
|
|
43325
43376
|
query_names: list[str]
|
|
43326
43377
|
recirculation_inlet: recirculation_inlet_1
|
|
43327
|
-
geometry:
|
|
43378
|
+
geometry: geometry_6
|
|
43328
43379
|
def adjacent_cell_zone(self):
|
|
43329
43380
|
"""
|
|
43330
43381
|
Get adjacent cell zone for this face zone.
|
|
@@ -43402,7 +43453,7 @@ class recirculation_inlet_3_child(Group):
|
|
|
43402
43453
|
name: name_4
|
|
43403
43454
|
phase: phase_48
|
|
43404
43455
|
recirculation_inlet: recirculation_inlet_1
|
|
43405
|
-
geometry:
|
|
43456
|
+
geometry: geometry_6
|
|
43406
43457
|
def display(self):
|
|
43407
43458
|
"""
|
|
43408
43459
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43485,7 +43536,7 @@ class phase_49_child(Group):
|
|
|
43485
43536
|
child_names: list[str]
|
|
43486
43537
|
query_names: list[str]
|
|
43487
43538
|
recirculation_outlet: recirculation_outlet_1
|
|
43488
|
-
geometry:
|
|
43539
|
+
geometry: geometry_6
|
|
43489
43540
|
def adjacent_cell_zone(self):
|
|
43490
43541
|
"""
|
|
43491
43542
|
Get adjacent cell zone for this face zone.
|
|
@@ -43563,7 +43614,7 @@ class recirculation_outlet_3_child(Group):
|
|
|
43563
43614
|
name: name_4
|
|
43564
43615
|
phase: phase_49
|
|
43565
43616
|
recirculation_outlet: recirculation_outlet_1
|
|
43566
|
-
geometry:
|
|
43617
|
+
geometry: geometry_6
|
|
43567
43618
|
def display(self):
|
|
43568
43619
|
"""
|
|
43569
43620
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43648,7 +43699,7 @@ class shadow_2_child(Group):
|
|
|
43648
43699
|
query_names: list[str]
|
|
43649
43700
|
name: name_4
|
|
43650
43701
|
phase: phase_28
|
|
43651
|
-
geometry:
|
|
43702
|
+
geometry: geometry_6
|
|
43652
43703
|
def display(self):
|
|
43653
43704
|
"""
|
|
43654
43705
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43733,7 +43784,7 @@ class symmetry_2_child(Group):
|
|
|
43733
43784
|
query_names: list[str]
|
|
43734
43785
|
name: name_4
|
|
43735
43786
|
phase: phase_28
|
|
43736
|
-
geometry:
|
|
43787
|
+
geometry: geometry_6
|
|
43737
43788
|
def display(self):
|
|
43738
43789
|
"""
|
|
43739
43790
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -43826,7 +43877,7 @@ class phase_50_child(Group):
|
|
|
43826
43877
|
structure: structure_1
|
|
43827
43878
|
uds: uds
|
|
43828
43879
|
icing: icing_1
|
|
43829
|
-
geometry:
|
|
43880
|
+
geometry: geometry_6
|
|
43830
43881
|
def adjacent_cell_zone(self):
|
|
43831
43882
|
"""
|
|
43832
43883
|
Get adjacent cell zone for this face zone.
|
|
@@ -43915,7 +43966,7 @@ class velocity_inlet_2_child(Group):
|
|
|
43915
43966
|
structure: structure_1
|
|
43916
43967
|
uds: uds
|
|
43917
43968
|
icing: icing_1
|
|
43918
|
-
geometry:
|
|
43969
|
+
geometry: geometry_6
|
|
43919
43970
|
def display(self):
|
|
43920
43971
|
"""
|
|
43921
43972
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -44011,7 +44062,7 @@ class phase_51_child(Group):
|
|
|
44011
44062
|
uds: uds
|
|
44012
44063
|
icing: icing_2
|
|
44013
44064
|
ablation: ablation_1
|
|
44014
|
-
geometry:
|
|
44065
|
+
geometry: geometry_6
|
|
44015
44066
|
def adjacent_cell_zone(self):
|
|
44016
44067
|
"""
|
|
44017
44068
|
Get adjacent cell zone for this face zone.
|
|
@@ -44102,7 +44153,7 @@ class wall_2_child(Group):
|
|
|
44102
44153
|
uds: uds
|
|
44103
44154
|
icing: icing_2
|
|
44104
44155
|
ablation: ablation_1
|
|
44105
|
-
geometry:
|
|
44156
|
+
geometry: geometry_6
|
|
44106
44157
|
def display(self):
|
|
44107
44158
|
"""
|
|
44108
44159
|
Show the selected zone's surface. If the surface does not exist, this command creates it first and then displays it.
|
|
@@ -44685,7 +44736,7 @@ class boundary_conditions(Group):
|
|
|
44685
44736
|
degassing: degassing_2
|
|
44686
44737
|
exhaust_fan: exhaust_fan_2
|
|
44687
44738
|
fan: fan_2
|
|
44688
|
-
geometry:
|
|
44739
|
+
geometry: geometry_9
|
|
44689
44740
|
inlet_vent: inlet_vent_2
|
|
44690
44741
|
intake_fan: intake_fan_2
|
|
44691
44742
|
interface: interface_3
|
|
@@ -44995,7 +45046,7 @@ class auto_options(Group):
|
|
|
44995
45046
|
change_all_one_to_one_interfaces_names : bool
|
|
44996
45047
|
Apply the new naming option to existing one-to-one mesh interfaces?.
|
|
44997
45048
|
"""
|
|
44998
|
-
def set_one_to_one_pairing_tolerance(self, adjustable_tolerance: bool, use_length_factor: bool, relative_length_factor: float | str,
|
|
45049
|
+
def set_one_to_one_pairing_tolerance(self, adjustable_tolerance: bool, use_length_factor: bool, relative_length_factor: float | str, absolute_tolerance: float | str):
|
|
44999
45050
|
"""
|
|
45000
45051
|
Set one-to-one adjustable tolerance.
|
|
45001
45052
|
|
|
@@ -45007,7 +45058,7 @@ class auto_options(Group):
|
|
|
45007
45058
|
Enable relative or absolute tolerance input.
|
|
45008
45059
|
relative_length_factor : real
|
|
45009
45060
|
The valid number for the relative length factor.
|
|
45010
|
-
|
|
45061
|
+
absolute_tolerance : real
|
|
45011
45062
|
The valid number for the absolute tolerance.
|
|
45012
45063
|
"""
|
|
45013
45064
|
def set_exclusion_pairs(self, exclude_pairs: bool, exclusion_pairs: list[str]):
|
|
@@ -46438,7 +46489,7 @@ class feature_detection(Group):
|
|
|
46438
46489
|
child_names: list[str]
|
|
46439
46490
|
enabled: enabled_58
|
|
46440
46491
|
feature_angle: feature_angle
|
|
46441
|
-
class
|
|
46492
|
+
class geometry_10(Group):
|
|
46442
46493
|
_version: str
|
|
46443
46494
|
fluent_name: str
|
|
46444
46495
|
_python_name: str
|
|
@@ -46490,7 +46541,7 @@ class dynamic_zones_child(Group):
|
|
|
46490
46541
|
type: type_11
|
|
46491
46542
|
motion: motion
|
|
46492
46543
|
meshing: meshing
|
|
46493
|
-
geometry:
|
|
46544
|
+
geometry: geometry_10
|
|
46494
46545
|
solver: solver_1
|
|
46495
46546
|
class dynamic_zones(NamedObject[dynamic_zones_child]):
|
|
46496
46547
|
_version: str
|
|
@@ -46945,10 +46996,6 @@ class parametername(String, AllowedValuesMixin):
|
|
|
46945
46996
|
_version: str
|
|
46946
46997
|
fluent_name: str
|
|
46947
46998
|
_python_name: str
|
|
46948
|
-
class unit_2(String, AllowedValuesMixin):
|
|
46949
|
-
_version: str
|
|
46950
|
-
fluent_name: str
|
|
46951
|
-
_python_name: str
|
|
46952
46999
|
class input_parameter(Boolean):
|
|
46953
47000
|
_version: str
|
|
46954
47001
|
fluent_name: str
|
|
@@ -46968,7 +47015,7 @@ class named_expressions_child(Group):
|
|
|
46968
47015
|
description: description
|
|
46969
47016
|
parameterid: parameterid
|
|
46970
47017
|
parametername: parametername
|
|
46971
|
-
unit:
|
|
47018
|
+
unit: unit_1
|
|
46972
47019
|
input_parameter: input_parameter
|
|
46973
47020
|
output_parameter: output_parameter
|
|
46974
47021
|
def get_value(self):
|
|
@@ -47943,6 +47990,10 @@ class transient_formulation(String, AllowedValuesMixin):
|
|
|
47943
47990
|
_version: str
|
|
47944
47991
|
fluent_name: str
|
|
47945
47992
|
_python_name: str
|
|
47993
|
+
class unsteady_global_time(Boolean):
|
|
47994
|
+
_version: str
|
|
47995
|
+
fluent_name: str
|
|
47996
|
+
_python_name: str
|
|
47946
47997
|
class accelerated_non_iterative_time_marching(Boolean):
|
|
47947
47998
|
_version: str
|
|
47948
47999
|
fluent_name: str
|
|
@@ -49195,6 +49246,7 @@ class methods_2(Group):
|
|
|
49195
49246
|
spatial_discretization_parameters: spatial_discretization_parameters
|
|
49196
49247
|
pseudo_time_method: pseudo_time_method
|
|
49197
49248
|
transient_formulation: transient_formulation
|
|
49249
|
+
unsteady_global_time: unsteady_global_time
|
|
49198
49250
|
accelerated_non_iterative_time_marching: accelerated_non_iterative_time_marching
|
|
49199
49251
|
convergence_acceleration_for_stretched_meshes: convergence_acceleration_for_stretched_meshes
|
|
49200
49252
|
divergence_prevention: divergence_prevention
|
|
@@ -51117,15 +51169,15 @@ class cell_zones_7(StringList, AllowedValuesMixin):
|
|
|
51117
51169
|
_version: str
|
|
51118
51170
|
fluent_name: str
|
|
51119
51171
|
_python_name: str
|
|
51120
|
-
class
|
|
51172
|
+
class physics_3(StringList, AllowedValuesMixin):
|
|
51121
51173
|
_version: str
|
|
51122
51174
|
fluent_name: str
|
|
51123
51175
|
_python_name: str
|
|
51124
|
-
class
|
|
51176
|
+
class geometry_11(StringList, AllowedValuesMixin):
|
|
51125
51177
|
_version: str
|
|
51126
51178
|
fluent_name: str
|
|
51127
51179
|
_python_name: str
|
|
51128
|
-
class
|
|
51180
|
+
class surfaces_7(StringList, AllowedValuesMixin):
|
|
51129
51181
|
_version: str
|
|
51130
51182
|
fluent_name: str
|
|
51131
51183
|
_python_name: str
|
|
@@ -51134,9 +51186,9 @@ class locations_5(Group):
|
|
|
51134
51186
|
fluent_name: str
|
|
51135
51187
|
_python_name: str
|
|
51136
51188
|
child_names: list[str]
|
|
51137
|
-
physics:
|
|
51138
|
-
geometry:
|
|
51139
|
-
surfaces:
|
|
51189
|
+
physics: physics_3
|
|
51190
|
+
geometry: geometry_11
|
|
51191
|
+
surfaces: surfaces_7
|
|
51140
51192
|
class output_parameter_1(Boolean):
|
|
51141
51193
|
_version: str
|
|
51142
51194
|
fluent_name: str
|
|
@@ -56603,30 +56655,10 @@ class range_3(Group):
|
|
|
56603
56655
|
"""
|
|
56604
56656
|
Sets the 'minimum' and 'maximum' fields based on the current solution data.
|
|
56605
56657
|
"""
|
|
56606
|
-
class surfaces_8(StringList, AllowedValuesMixin):
|
|
56607
|
-
_version: str
|
|
56608
|
-
fluent_name: str
|
|
56609
|
-
_python_name: str
|
|
56610
|
-
class physics_3(StringList, AllowedValuesMixin):
|
|
56611
|
-
_version: str
|
|
56612
|
-
fluent_name: str
|
|
56613
|
-
_python_name: str
|
|
56614
|
-
class geometry_11(StringList, AllowedValuesMixin):
|
|
56615
|
-
_version: str
|
|
56616
|
-
fluent_name: str
|
|
56617
|
-
_python_name: str
|
|
56618
56658
|
class surfaces_9(StringList, AllowedValuesMixin):
|
|
56619
56659
|
_version: str
|
|
56620
56660
|
fluent_name: str
|
|
56621
56661
|
_python_name: str
|
|
56622
|
-
class from_location(Group):
|
|
56623
|
-
_version: str
|
|
56624
|
-
fluent_name: str
|
|
56625
|
-
_python_name: str
|
|
56626
|
-
child_names: list[str]
|
|
56627
|
-
physics: physics_3
|
|
56628
|
-
geometry: geometry_11
|
|
56629
|
-
surfaces: surfaces_9
|
|
56630
56662
|
class zones_4(StringList, AllowedValuesMixin):
|
|
56631
56663
|
_version: str
|
|
56632
56664
|
fluent_name: str
|
|
@@ -56645,7 +56677,7 @@ class iso_surface_child(Group):
|
|
|
56645
56677
|
field: field_1
|
|
56646
56678
|
iso_values: iso_values
|
|
56647
56679
|
range: range_3
|
|
56648
|
-
surfaces:
|
|
56680
|
+
surfaces: surfaces_9
|
|
56649
56681
|
from_location: from_location
|
|
56650
56682
|
zones: zones_4
|
|
56651
56683
|
volumes: volumes_2
|
|
@@ -57617,7 +57649,7 @@ class group_surface(NamedObject[group_surface_child]):
|
|
|
57617
57649
|
The surface to ungroup.
|
|
57618
57650
|
"""
|
|
57619
57651
|
child_object_type: group_surface_child
|
|
57620
|
-
class
|
|
57652
|
+
class surfaces_8(Group):
|
|
57621
57653
|
_version: str
|
|
57622
57654
|
fluent_name: str
|
|
57623
57655
|
_python_name: str
|
|
@@ -58654,9 +58686,9 @@ class from_location_1(Group):
|
|
|
58654
58686
|
fluent_name: str
|
|
58655
58687
|
_python_name: str
|
|
58656
58688
|
child_names: list[str]
|
|
58657
|
-
physics:
|
|
58658
|
-
geometry:
|
|
58659
|
-
surfaces:
|
|
58689
|
+
physics: physics_3
|
|
58690
|
+
geometry: geometry_11
|
|
58691
|
+
surfaces: surfaces_7
|
|
58660
58692
|
class option_54(String, AllowedValuesMixin):
|
|
58661
58693
|
_version: str
|
|
58662
58694
|
fluent_name: str
|
|
@@ -58991,9 +59023,9 @@ class on_location(Group):
|
|
|
58991
59023
|
fluent_name: str
|
|
58992
59024
|
_python_name: str
|
|
58993
59025
|
child_names: list[str]
|
|
58994
|
-
physics:
|
|
58995
|
-
geometry:
|
|
58996
|
-
surfaces:
|
|
59026
|
+
physics: physics_3
|
|
59027
|
+
geometry: geometry_11
|
|
59028
|
+
surfaces: surfaces_7
|
|
58997
59029
|
class enabled_70(Boolean):
|
|
58998
59030
|
_version: str
|
|
58999
59031
|
fluent_name: str
|
|
@@ -62601,14 +62633,6 @@ class display_10(Group):
|
|
|
62601
62633
|
file_name_1 : str
|
|
62602
62634
|
HSF file name.
|
|
62603
62635
|
"""
|
|
62604
|
-
def re_render(self):
|
|
62605
|
-
"""
|
|
62606
|
-
Re-render the last contour, profile, or velocity vector plot with updated surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the contour data.
|
|
62607
|
-
"""
|
|
62608
|
-
def re_scale(self):
|
|
62609
|
-
"""
|
|
62610
|
-
Re-render the last contour, profile, or velocity vector plot with updated scale, surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the field data.
|
|
62611
|
-
"""
|
|
62612
62636
|
def surface_cells(self, surface_cell_names_ids: list[str]):
|
|
62613
62637
|
"""
|
|
62614
62638
|
Draw the cells on the specified surfaces.
|
|
@@ -66770,7 +66794,7 @@ class results(Group):
|
|
|
66770
66794
|
child_names: list[str]
|
|
66771
66795
|
custom_field_functions: custom_field_functions_1
|
|
66772
66796
|
custom_vectors: custom_vectors
|
|
66773
|
-
surfaces:
|
|
66797
|
+
surfaces: surfaces_8
|
|
66774
66798
|
graphics: graphics
|
|
66775
66799
|
plot: plot_4
|
|
66776
66800
|
scene: scene
|