ansys-fluent-core 0.32.1__py3-none-any.whl → 0.32.2__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.

Files changed (29) hide show
  1. ansys/fluent/core/__init__.py +2 -2
  2. ansys/fluent/core/codegen/builtin_settingsgen.py +1 -1
  3. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  4. ansys/fluent/core/generated/datamodel_231/flicing.py +55 -55
  5. ansys/fluent/core/generated/datamodel_231/meshing.py +200 -200
  6. ansys/fluent/core/generated/datamodel_232/flicing.py +45 -45
  7. ansys/fluent/core/generated/datamodel_232/meshing.py +185 -185
  8. ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
  9. ansys/fluent/core/generated/datamodel_241/meshing.py +280 -280
  10. ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
  11. ansys/fluent/core/generated/datamodel_242/meshing.py +344 -344
  12. ansys/fluent/core/generated/datamodel_242/part_management.py +3 -3
  13. ansys/fluent/core/generated/datamodel_251/flicing.py +45 -45
  14. ansys/fluent/core/generated/datamodel_251/meshing.py +326 -326
  15. ansys/fluent/core/generated/datamodel_251/part_management.py +3 -3
  16. ansys/fluent/core/generated/datamodel_252/flicing.py +35 -35
  17. ansys/fluent/core/generated/datamodel_252/meshing.py +396 -396
  18. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  19. ansys/fluent/core/generated/datamodel_261/flicing.py +50 -50
  20. ansys/fluent/core/generated/datamodel_261/meshing.py +420 -420
  21. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  22. ansys/fluent/core/generated/solver/settings_261.py +251 -214
  23. ansys/fluent/core/generated/solver/settings_261.pyi +134 -118
  24. ansys/fluent/core/generated/solver/tui_261.py +107 -117
  25. ansys/fluent/core/solver/flobject.py +7 -26
  26. {ansys_fluent_core-0.32.1.dist-info → ansys_fluent_core-0.32.2.dist-info}/METADATA +1 -1
  27. {ansys_fluent_core-0.32.1.dist-info → ansys_fluent_core-0.32.2.dist-info}/RECORD +29 -29
  28. {ansys_fluent_core-0.32.1.dist-info → ansys_fluent_core-0.32.2.dist-info}/LICENSE +0 -0
  29. {ansys_fluent_core-0.32.1.dist-info → ansys_fluent_core-0.32.2.dist-info}/WHEEL +0 -0
@@ -12,7 +12,7 @@ from ansys.fluent.core.solver.flobject import (
12
12
  _InOutFile,
13
13
  )
14
14
 
15
- SHASH = "9cb5a5b2564281c0f9101bc53b361f350d27668fb17ceca2fcddecf6d5642bd2"
15
+ SHASH = "f4d0a27df803a8bab94db5f9aff4c63bd11433c2523889d14ceb012391bc67a0"
16
16
 
17
17
  class single_precision_coordinates(Boolean):
18
18
  """
@@ -73572,11 +73572,20 @@ class boundary_zone(String, AllowedValuesMixin):
73572
73572
  fluent_name = 'boundary-zone'
73573
73573
  _python_name = 'boundary_zone'
73574
73574
 
73575
+ class open_channel_initialization_method(String, AllowedValuesMixin):
73576
+ """
73577
+ Open channel initialization method.
73578
+ """
73579
+ _version = '261'
73580
+ fluent_name = 'open-channel-initialization-method'
73581
+ _python_name = 'open_channel_initialization_method'
73582
+
73575
73583
  class flat_init(Boolean):
73576
73584
  """
73577
73585
  Enable/disable flat free surface initialization.
73578
73586
  """
73579
73587
  _version = '261'
73588
+ _deprecated_version = '2026R1'
73580
73589
  fluent_name = 'flat-init?'
73581
73590
  _python_name = 'flat_init'
73582
73591
 
@@ -73585,6 +73594,7 @@ class wavy_surface_init(Boolean):
73585
73594
  Enable/disable wavy free surface initialization.
73586
73595
  """
73587
73596
  _version = '261'
73597
+ _deprecated_version = '2026R1'
73588
73598
  fluent_name = 'wavy-surface-init?'
73589
73599
  _python_name = 'wavy_surface_init'
73590
73600
 
@@ -73595,9 +73605,10 @@ class open_channel_auto_init(Group):
73595
73605
  _version = '261'
73596
73606
  fluent_name = 'open-channel-auto-init'
73597
73607
  _python_name = 'open_channel_auto_init'
73598
- child_names = ['boundary_zone', 'flat_init', 'wavy_surface_init']
73608
+ child_names = ['boundary_zone', 'open_channel_initialization_method', 'flat_init', 'wavy_surface_init']
73599
73609
  _child_classes = dict(
73600
73610
  boundary_zone=boundary_zone,
73611
+ open_channel_initialization_method=open_channel_initialization_method,
73601
73612
  flat_init=flat_init,
73602
73613
  wavy_surface_init=wavy_surface_init,
73603
73614
  )
@@ -73751,7 +73762,7 @@ class from_zone_type_1(String, AllowedValuesMixin):
73751
73762
 
73752
73763
  class from_zone_name_1(String, AllowedValuesMixin):
73753
73764
  """
73754
- Selecte zone name.
73765
+ Zone name.
73755
73766
  """
73756
73767
  _version = '261'
73757
73768
  fluent_name = 'from-zone-name'
@@ -73774,7 +73785,7 @@ class compute_defaults(Command):
73774
73785
  from_zone_type : str
73775
73786
  Boundary/zone type.
73776
73787
  from_zone_name : str
73777
- Selecte zone name.
73788
+ Zone name.
73778
73789
  phase : str
73779
73790
  Phase name.
73780
73791
  """
@@ -75142,14 +75153,6 @@ class calculation_activity(Group):
75142
75153
  poor_mesh_numerics=poor_mesh_numerics_1,
75143
75154
  )
75144
75155
 
75145
- class verbosity_19(Integer):
75146
- """
75147
- The verbosity for the pseudo time method.
75148
- """
75149
- _version = '261'
75150
- fluent_name = 'verbosity'
75151
- _python_name = 'verbosity'
75152
-
75153
75156
  class time_step_method_1(String, AllowedValuesMixin):
75154
75157
  """
75155
75158
  Enable/disable use of automatic time step size calculation.
@@ -75182,6 +75185,14 @@ class time_step_size_scale_factor_1(Real):
75182
75185
  fluent_name = 'time-step-size-scale-factor'
75183
75186
  _python_name = 'time_step_size_scale_factor'
75184
75187
 
75188
+ class verbosity_19(Integer):
75189
+ """
75190
+ The verbosity for the pseudo time method.
75191
+ """
75192
+ _version = '261'
75193
+ fluent_name = 'verbosity'
75194
+ _python_name = 'verbosity'
75195
+
75185
75196
  class length_scale_1(Real):
75186
75197
  """
75187
75198
  Length Scale .
@@ -75221,12 +75232,13 @@ class time_step_method(Group):
75221
75232
  _version = '261'
75222
75233
  fluent_name = 'time-step-method'
75223
75234
  _python_name = 'time_step_method'
75224
- child_names = ['time_step_method', 'pseudo_time_step_size', 'length_scale_methods', 'time_step_size_scale_factor', 'length_scale', 'auto_time_size_calc_solid_zone', 'time_solid_scale_factor', 'time_step_size_for_solid_zone']
75235
+ child_names = ['time_step_method', 'pseudo_time_step_size', 'length_scale_methods', 'time_step_size_scale_factor', 'verbosity', 'length_scale', 'auto_time_size_calc_solid_zone', 'time_solid_scale_factor', 'time_step_size_for_solid_zone']
75225
75236
  _child_classes = dict(
75226
75237
  time_step_method=time_step_method_1,
75227
75238
  pseudo_time_step_size=pseudo_time_step_size,
75228
75239
  length_scale_methods=length_scale_methods,
75229
75240
  time_step_size_scale_factor=time_step_size_scale_factor_1,
75241
+ verbosity=verbosity_19,
75230
75242
  length_scale=length_scale_1,
75231
75243
  auto_time_size_calc_solid_zone=auto_time_size_calc_solid_zone,
75232
75244
  time_solid_scale_factor=time_solid_scale_factor,
@@ -75240,19 +75252,13 @@ class pseudo_time_settings(Group):
75240
75252
  _version = '261'
75241
75253
  fluent_name = 'pseudo-time-settings'
75242
75254
  _python_name = 'pseudo_time_settings'
75243
- child_names = ['verbosity', 'time_step_method']
75255
+ child_names = ['time_step_method']
75244
75256
  _child_classes = dict(
75245
- verbosity=verbosity_19,
75246
75257
  time_step_method=time_step_method,
75247
75258
  )
75248
-
75249
- class iter_count_2(Integer):
75250
- """
75251
- Number of iterations.
75252
- """
75253
- _version = '261'
75254
- fluent_name = 'iter-count'
75255
- _python_name = 'iter_count'
75259
+ _child_aliases = dict(
75260
+ verbosity=('time_step_method/verbosity', 'verbosity'),
75261
+ )
75256
75262
 
75257
75263
  class enabled_66(Boolean):
75258
75264
  """
@@ -75408,22 +75414,6 @@ class cfl_based_adaptive_time_stepping(Group):
75408
75414
  max_step_change_factor=max_step_change_factor,
75409
75415
  )
75410
75416
 
75411
- class reporting_interval(Integer):
75412
- """
75413
- Number of solver iterations before returning to scheme.
75414
- """
75415
- _version = '261'
75416
- fluent_name = 'reporting-interval'
75417
- _python_name = 'reporting_interval'
75418
-
75419
- class profile_update_interval(Integer):
75420
- """
75421
- Number of solver iterations after which profile is updated.
75422
- """
75423
- _version = '261'
75424
- fluent_name = 'profile-update-interval'
75425
- _python_name = 'profile_update_interval'
75426
-
75427
75417
  class enable_28(Boolean):
75428
75418
  """
75429
75419
  Enable solution steering for density-based solver?.
@@ -75679,17 +75669,9 @@ class solution_status(Boolean):
75679
75669
  fluent_name = 'solution-status'
75680
75670
  _python_name = 'solution_status'
75681
75671
 
75682
- class extrapolate_variables(Boolean):
75683
- """
75684
- The extrapolation object.
75685
- """
75686
- _version = '261'
75687
- fluent_name = 'extrapolate-variables'
75688
- _python_name = 'extrapolate_variables'
75689
-
75690
75672
  class max_flow_time(Real):
75691
75673
  """
75692
- Maximum flow time.
75674
+ Maximum flow time (-1 no maximum).
75693
75675
  """
75694
75676
  _version = '261'
75695
75677
  fluent_name = 'max-flow-time'
@@ -75743,25 +75725,6 @@ class update_interval_3(Integer):
75743
75725
  fluent_name = 'update-interval'
75744
75726
  _python_name = 'update_interval'
75745
75727
 
75746
- class cfl_based_time_stepping(Group):
75747
- """
75748
- CFL-based time stepping object.
75749
- """
75750
- _version = '261'
75751
- fluent_name = 'cfl-based-time-stepping'
75752
- _python_name = 'cfl_based_time_stepping'
75753
- child_names = ['courant_number', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval']
75754
- _child_classes = dict(
75755
- courant_number=courant_number_1,
75756
- initial_time_step_size=initial_time_step_size,
75757
- fixed_time_step_size=fixed_time_step_size,
75758
- min_time_step_size=min_time_step_size,
75759
- max_time_step_size=max_time_step_size,
75760
- min_step_change_factor=min_step_change_factor,
75761
- max_step_change_factor=max_step_change_factor,
75762
- update_interval=update_interval_3,
75763
- )
75764
-
75765
75728
  class control_time_step_size_variation(Boolean):
75766
75729
  """
75767
75730
  Control time step size variation.
@@ -75786,13 +75749,13 @@ class cfl_type(String, AllowedValuesMixin):
75786
75749
  fluent_name = 'cfl-type'
75787
75750
  _python_name = 'cfl_type'
75788
75751
 
75789
- class cfl_based_time_stepping_advanced_options(Group):
75752
+ class advanced_options(Group):
75790
75753
  """
75791
75754
  Advanced settings for CFL-based time stepping.
75792
75755
  """
75793
75756
  _version = '261'
75794
- fluent_name = 'cfl-based-time-stepping-advanced-options'
75795
- _python_name = 'cfl_based_time_stepping_advanced_options'
75757
+ fluent_name = 'advanced-options'
75758
+ _python_name = 'advanced_options'
75796
75759
  child_names = ['control_time_step_size_variation', 'use_average_cfl', 'cfl_type']
75797
75760
  _child_classes = dict(
75798
75761
  control_time_step_size_variation=control_time_step_size_variation,
@@ -75800,6 +75763,26 @@ class cfl_based_time_stepping_advanced_options(Group):
75800
75763
  cfl_type=cfl_type,
75801
75764
  )
75802
75765
 
75766
+ class cfl_based_time_stepping(Group):
75767
+ """
75768
+ CFL-based time stepping object.
75769
+ """
75770
+ _version = '261'
75771
+ fluent_name = 'cfl-based-time-stepping'
75772
+ _python_name = 'cfl_based_time_stepping'
75773
+ child_names = ['courant_number', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval', 'advanced_options']
75774
+ _child_classes = dict(
75775
+ courant_number=courant_number_1,
75776
+ initial_time_step_size=initial_time_step_size,
75777
+ fixed_time_step_size=fixed_time_step_size,
75778
+ min_time_step_size=min_time_step_size,
75779
+ max_time_step_size=max_time_step_size,
75780
+ min_step_change_factor=min_step_change_factor,
75781
+ max_step_change_factor=max_step_change_factor,
75782
+ update_interval=update_interval_3,
75783
+ advanced_options=advanced_options,
75784
+ )
75785
+
75803
75786
  class error_tolerance_3(Real):
75804
75787
  """
75805
75788
  Error Tolerance.
@@ -75808,6 +75791,14 @@ class error_tolerance_3(Real):
75808
75791
  fluent_name = 'error-tolerance'
75809
75792
  _python_name = 'error_tolerance'
75810
75793
 
75794
+ class undo_timestep(Boolean):
75795
+ """
75796
+ Undo the previous time step.
75797
+ """
75798
+ _version = '261'
75799
+ fluent_name = 'undo-timestep?'
75800
+ _python_name = 'undo_timestep'
75801
+
75811
75802
  class error_based_time_stepping(Group):
75812
75803
  """
75813
75804
  Error-based time stepping object.
@@ -75815,7 +75806,7 @@ class error_based_time_stepping(Group):
75815
75806
  _version = '261'
75816
75807
  fluent_name = 'error-based-time-stepping'
75817
75808
  _python_name = 'error_based_time_stepping'
75818
- child_names = ['error_tolerance', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval']
75809
+ child_names = ['error_tolerance', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval', 'undo_timestep']
75819
75810
  _child_classes = dict(
75820
75811
  error_tolerance=error_tolerance_3,
75821
75812
  initial_time_step_size=initial_time_step_size,
@@ -75825,16 +75816,9 @@ class error_based_time_stepping(Group):
75825
75816
  min_step_change_factor=min_step_change_factor,
75826
75817
  max_step_change_factor=max_step_change_factor,
75827
75818
  update_interval=update_interval_3,
75819
+ undo_timestep=undo_timestep,
75828
75820
  )
75829
75821
 
75830
- class undo_timestep(Boolean):
75831
- """
75832
- Undo the previous time step.
75833
- """
75834
- _version = '261'
75835
- fluent_name = 'undo-timestep?'
75836
- _python_name = 'undo_timestep'
75837
-
75838
75822
  class predict_next(Boolean):
75839
75823
  """
75840
75824
  Applies a predictor algorithm for computing initial condition at time step n+1.
@@ -75867,6 +75851,113 @@ class global_courant_number(Real):
75867
75851
  fluent_name = 'global-courant-number'
75868
75852
  _python_name = 'global_courant_number'
75869
75853
 
75854
+ class moving_mesh_constraint(Boolean):
75855
+ """
75856
+ Enable Moving Mesh Constraint.
75857
+ """
75858
+ _version = '261'
75859
+ fluent_name = 'moving-mesh-constraint?'
75860
+ _python_name = 'moving_mesh_constraint'
75861
+
75862
+ class mesh_courant_number(Real):
75863
+ """
75864
+ Moving Mesh Courant Number.
75865
+ """
75866
+ _version = '261'
75867
+ fluent_name = 'mesh-courant-number'
75868
+ _python_name = 'mesh_courant_number'
75869
+
75870
+ class moving_mesh_cfl_constraint(Group):
75871
+ """
75872
+ Moving mesh CFL constraint object.
75873
+ """
75874
+ _version = '261'
75875
+ fluent_name = 'moving-mesh-cfl-constraint'
75876
+ _python_name = 'moving_mesh_cfl_constraint'
75877
+ child_names = ['moving_mesh_constraint', 'mesh_courant_number']
75878
+ _child_classes = dict(
75879
+ moving_mesh_constraint=moving_mesh_constraint,
75880
+ mesh_courant_number=mesh_courant_number,
75881
+ )
75882
+
75883
+ class physics_based_constraint(Boolean):
75884
+ """
75885
+ Include physics driven time-step constraints.
75886
+ """
75887
+ _version = '261'
75888
+ fluent_name = 'physics-based-constraint?'
75889
+ _python_name = 'physics_based_constraint'
75890
+
75891
+ class viscous_scale(Boolean):
75892
+ """
75893
+ Include viscous time scale.
75894
+ """
75895
+ _version = '261'
75896
+ fluent_name = 'viscous-scale?'
75897
+ _python_name = 'viscous_scale'
75898
+
75899
+ class gravity_scale(Boolean):
75900
+ """
75901
+ Include gravity based time scale.
75902
+ """
75903
+ _version = '261'
75904
+ fluent_name = 'gravity-scale?'
75905
+ _python_name = 'gravity_scale'
75906
+
75907
+ class surface_tension_scale(Boolean):
75908
+ """
75909
+ Include surface tension based time scale.
75910
+ """
75911
+ _version = '261'
75912
+ fluent_name = 'surface-tension-scale?'
75913
+ _python_name = 'surface_tension_scale'
75914
+
75915
+ class acoustic_scale(Boolean):
75916
+ """
75917
+ Include acoustic time scale.
75918
+ """
75919
+ _version = '261'
75920
+ fluent_name = 'acoustic-scale?'
75921
+ _python_name = 'acoustic_scale'
75922
+
75923
+ class time_scale_options(Group):
75924
+ """
75925
+ Physics based time scale options.
75926
+ """
75927
+ _version = '261'
75928
+ fluent_name = 'time-scale-options'
75929
+ _python_name = 'time_scale_options'
75930
+ child_names = ['viscous_scale', 'gravity_scale', 'surface_tension_scale', 'acoustic_scale']
75931
+ _child_classes = dict(
75932
+ viscous_scale=viscous_scale,
75933
+ gravity_scale=gravity_scale,
75934
+ surface_tension_scale=surface_tension_scale,
75935
+ acoustic_scale=acoustic_scale,
75936
+ )
75937
+
75938
+ class verbosity_20(Boolean):
75939
+ """
75940
+ Verbosity to print multiphase specific time scales.
75941
+ """
75942
+ _version = '261'
75943
+ fluent_name = 'verbosity?'
75944
+ _python_name = 'verbosity'
75945
+
75946
+ class time_constraints(Group):
75947
+ """
75948
+ Multiphase-specific time constraints object.
75949
+ """
75950
+ _version = '261'
75951
+ fluent_name = 'time-constraints'
75952
+ _python_name = 'time_constraints'
75953
+ child_names = ['moving_mesh_cfl_constraint', 'physics_based_constraint', 'time_scale_options', 'verbosity']
75954
+ _child_classes = dict(
75955
+ moving_mesh_cfl_constraint=moving_mesh_cfl_constraint,
75956
+ physics_based_constraint=physics_based_constraint,
75957
+ time_scale_options=time_scale_options,
75958
+ verbosity=verbosity_20,
75959
+ )
75960
+
75870
75961
  class mp_specific_time_stepping(Group):
75871
75962
  """
75872
75963
  Multiphase-specific adaptive time stepping parameters.
@@ -75874,7 +75965,7 @@ class mp_specific_time_stepping(Group):
75874
75965
  _version = '261'
75875
75966
  fluent_name = 'mp-specific-time-stepping'
75876
75967
  _python_name = 'mp_specific_time_stepping'
75877
- child_names = ['enabled', 'global_courant_number', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval']
75968
+ child_names = ['enabled', 'global_courant_number', 'initial_time_step_size', 'fixed_time_step_size', 'min_time_step_size', 'max_time_step_size', 'min_step_change_factor', 'max_step_change_factor', 'update_interval', 'time_constraints']
75878
75969
  _child_classes = dict(
75879
75970
  enabled=enabled_68,
75880
75971
  global_courant_number=global_courant_number,
@@ -75885,6 +75976,7 @@ class mp_specific_time_stepping(Group):
75885
75976
  min_step_change_factor=min_step_change_factor,
75886
75977
  max_step_change_factor=max_step_change_factor,
75887
75978
  update_interval=update_interval_3,
75979
+ time_constraints=time_constraints,
75888
75980
  )
75889
75981
 
75890
75982
  class udf_hook(String, AllowedValuesMixin):
@@ -75981,113 +76073,6 @@ class fixed_periodic(Group):
75981
76073
  times_steps_per_period=('time_steps_per_period', 'times-steps-per-period'),
75982
76074
  )
75983
76075
 
75984
- class moving_mesh_constraint(Boolean):
75985
- """
75986
- Enable Moving Mesh Constraint.
75987
- """
75988
- _version = '261'
75989
- fluent_name = 'moving-mesh-constraint?'
75990
- _python_name = 'moving_mesh_constraint'
75991
-
75992
- class mesh_courant_number(Real):
75993
- """
75994
- Moving Mesh Courant Number.
75995
- """
75996
- _version = '261'
75997
- fluent_name = 'mesh-courant-number'
75998
- _python_name = 'mesh_courant_number'
75999
-
76000
- class moving_mesh_cfl_constraint(Group):
76001
- """
76002
- Moving mesh CFL constraint object.
76003
- """
76004
- _version = '261'
76005
- fluent_name = 'moving-mesh-cfl-constraint'
76006
- _python_name = 'moving_mesh_cfl_constraint'
76007
- child_names = ['moving_mesh_constraint', 'mesh_courant_number']
76008
- _child_classes = dict(
76009
- moving_mesh_constraint=moving_mesh_constraint,
76010
- mesh_courant_number=mesh_courant_number,
76011
- )
76012
-
76013
- class physics_based_constraint(Boolean):
76014
- """
76015
- Include physics driven time-step constraints.
76016
- """
76017
- _version = '261'
76018
- fluent_name = 'physics-based-constraint?'
76019
- _python_name = 'physics_based_constraint'
76020
-
76021
- class viscous_scale(Boolean):
76022
- """
76023
- Include viscous time scale.
76024
- """
76025
- _version = '261'
76026
- fluent_name = 'viscous-scale?'
76027
- _python_name = 'viscous_scale'
76028
-
76029
- class gravity_scale(Boolean):
76030
- """
76031
- Include gravity based time scale.
76032
- """
76033
- _version = '261'
76034
- fluent_name = 'gravity-scale?'
76035
- _python_name = 'gravity_scale'
76036
-
76037
- class surface_tension_scale(Boolean):
76038
- """
76039
- Include surface tension based time scale.
76040
- """
76041
- _version = '261'
76042
- fluent_name = 'surface-tension-scale?'
76043
- _python_name = 'surface_tension_scale'
76044
-
76045
- class acoustic_scale(Boolean):
76046
- """
76047
- Include acoustic time scale.
76048
- """
76049
- _version = '261'
76050
- fluent_name = 'acoustic-scale?'
76051
- _python_name = 'acoustic_scale'
76052
-
76053
- class time_scale_options(Group):
76054
- """
76055
- Physics based time scale options.
76056
- """
76057
- _version = '261'
76058
- fluent_name = 'time-scale-options'
76059
- _python_name = 'time_scale_options'
76060
- child_names = ['viscous_scale', 'gravity_scale', 'surface_tension_scale', 'acoustic_scale']
76061
- _child_classes = dict(
76062
- viscous_scale=viscous_scale,
76063
- gravity_scale=gravity_scale,
76064
- surface_tension_scale=surface_tension_scale,
76065
- acoustic_scale=acoustic_scale,
76066
- )
76067
-
76068
- class verbosity_20(Boolean):
76069
- """
76070
- Verbosity to print multiphase specific time scales.
76071
- """
76072
- _version = '261'
76073
- fluent_name = 'verbosity?'
76074
- _python_name = 'verbosity'
76075
-
76076
- class multiphase_specific_time_constraints(Group):
76077
- """
76078
- Multiphase-specific time constraints object.
76079
- """
76080
- _version = '261'
76081
- fluent_name = 'multiphase-specific-time-constraints'
76082
- _python_name = 'multiphase_specific_time_constraints'
76083
- child_names = ['moving_mesh_cfl_constraint', 'physics_based_constraint', 'time_scale_options', 'verbosity']
76084
- _child_classes = dict(
76085
- moving_mesh_cfl_constraint=moving_mesh_cfl_constraint,
76086
- physics_based_constraint=physics_based_constraint,
76087
- time_scale_options=time_scale_options,
76088
- verbosity=verbosity_20,
76089
- )
76090
-
76091
76076
  class enable_solid_time_step(Boolean):
76092
76077
  """
76093
76078
  Enable/Disable different time step size for solid zones?.
@@ -76134,6 +76119,14 @@ class time_step_size_for_acoustic_export(Real):
76134
76119
  fluent_name = 'time-step-size-for-acoustic-export'
76135
76120
  _python_name = 'time_step_size_for_acoustic_export'
76136
76121
 
76122
+ class extrapolate_variables(Boolean):
76123
+ """
76124
+ The extrapolation object.
76125
+ """
76126
+ _version = '261'
76127
+ fluent_name = 'extrapolate-variables'
76128
+ _python_name = 'extrapolate_variables'
76129
+
76137
76130
  class extrapolate_eqn_vars_child(Boolean):
76138
76131
  """
76139
76132
  'child_object_type' of extrapolate_eqn_vars.
@@ -76175,7 +76168,7 @@ class transient_controls(Group):
76175
76168
  _version = '261'
76176
76169
  fluent_name = 'transient-controls'
76177
76170
  _python_name = 'transient_controls'
76178
- child_names = ['type', 'method', 'duration_specification_method', 'specified_time_step', 'incremental_time', 'time_step_count', 'total_time', 'time_step_size', 'max_iter_per_time_step', 'flow_time', 'total_time_step_count', 'solution_status', 'extrapolate_variables', 'max_flow_time', 'cfl_based_time_stepping', 'cfl_based_time_stepping_advanced_options', 'error_based_time_stepping', 'undo_timestep', 'predict_next', 'rotating_mesh_flow_predictor', 'mp_specific_time_stepping', 'udf_hook', 'fixed_periodic', 'multiphase_specific_time_constraints', 'solid_time_step_size', 'time_step_size_for_acoustic_export', 'extrapolate_eqn_vars']
76171
+ child_names = ['type', 'method', 'duration_specification_method', 'specified_time_step', 'incremental_time', 'time_step_count', 'total_time', 'time_step_size', 'max_iter_per_time_step', 'flow_time', 'total_time_step_count', 'solution_status', 'max_flow_time', 'cfl_based_time_stepping', 'error_based_time_stepping', 'predict_next', 'rotating_mesh_flow_predictor', 'mp_specific_time_stepping', 'udf_hook', 'fixed_periodic', 'solid_time_step_size', 'time_step_size_for_acoustic_export', 'extrapolate_variables', 'extrapolate_eqn_vars']
76179
76172
  query_names = ['simulation_status']
76180
76173
  _child_classes = dict(
76181
76174
  type=type_15,
@@ -76190,23 +76183,64 @@ class transient_controls(Group):
76190
76183
  flow_time=flow_time,
76191
76184
  total_time_step_count=total_time_step_count,
76192
76185
  solution_status=solution_status,
76193
- extrapolate_variables=extrapolate_variables,
76194
76186
  max_flow_time=max_flow_time,
76195
76187
  cfl_based_time_stepping=cfl_based_time_stepping,
76196
- cfl_based_time_stepping_advanced_options=cfl_based_time_stepping_advanced_options,
76197
76188
  error_based_time_stepping=error_based_time_stepping,
76198
- undo_timestep=undo_timestep,
76199
76189
  predict_next=predict_next,
76200
76190
  rotating_mesh_flow_predictor=rotating_mesh_flow_predictor,
76201
76191
  mp_specific_time_stepping=mp_specific_time_stepping,
76202
76192
  udf_hook=udf_hook,
76203
76193
  fixed_periodic=fixed_periodic,
76204
- multiphase_specific_time_constraints=multiphase_specific_time_constraints,
76205
76194
  solid_time_step_size=solid_time_step_size,
76206
76195
  time_step_size_for_acoustic_export=time_step_size_for_acoustic_export,
76196
+ extrapolate_variables=extrapolate_variables,
76207
76197
  extrapolate_eqn_vars=extrapolate_eqn_vars,
76208
76198
  simulation_status=simulation_status,
76209
76199
  )
76200
+ _child_aliases = dict(
76201
+ cfl_based_time_stepping_advanced_options=('cfl_based_time_stepping/advanced_options', 'cfl-based-time-stepping-advanced-options'),
76202
+ multiphase_specific_time_constraints=('mp_specific_time_stepping/time_constraints', 'multiphase-specific-time-constraints'),
76203
+ multiphase_specific_time_stepping=('mp_specific_time_stepping', 'multiphase-specific-time-stepping'),
76204
+ undo_timestep=('error_based_time_stepping/undo_timestep', 'undo-timestep?'),
76205
+ )
76206
+
76207
+ class iter_count_2(Integer):
76208
+ """
76209
+ Number of iterations.
76210
+ """
76211
+ _version = '261'
76212
+ fluent_name = 'iter-count'
76213
+ _python_name = 'iter_count'
76214
+
76215
+ class reporting_interval(Integer):
76216
+ """
76217
+ Number of solver iterations before returning to scheme.
76218
+ """
76219
+ _version = '261'
76220
+ fluent_name = 'reporting-interval'
76221
+ _python_name = 'reporting_interval'
76222
+
76223
+ class profile_update_interval(Integer):
76224
+ """
76225
+ Number of solver iterations after which profile is updated.
76226
+ """
76227
+ _version = '261'
76228
+ fluent_name = 'profile-update-interval'
76229
+ _python_name = 'profile_update_interval'
76230
+
76231
+ class parameters_8(Group):
76232
+ """
76233
+ Iteration parameters object.
76234
+ """
76235
+ _version = '261'
76236
+ fluent_name = 'parameters'
76237
+ _python_name = 'parameters'
76238
+ child_names = ['iter_count', 'reporting_interval', 'profile_update_interval']
76239
+ _child_classes = dict(
76240
+ iter_count=iter_count_2,
76241
+ reporting_interval=reporting_interval,
76242
+ profile_update_interval=profile_update_interval,
76243
+ )
76210
76244
 
76211
76245
  class postprocess(Boolean):
76212
76246
  """
@@ -76736,19 +76770,17 @@ class run_calculation(Group):
76736
76770
  _version = '261'
76737
76771
  fluent_name = 'run-calculation'
76738
76772
  _python_name = 'run_calculation'
76739
- child_names = ['pseudo_time_settings', 'iter_count', 'adaptive_time_stepping', 'cfl_based_adaptive_time_stepping', 'reporting_interval', 'profile_update_interval', 'solution_steering', 'time_step_count', 'transient_controls', 'pollutants', 'data_sampling', 'data_sampling_options', 'residual_verbosity']
76773
+ child_names = ['pseudo_time_settings', 'adaptive_time_stepping', 'cfl_based_adaptive_time_stepping', 'solution_steering', 'time_step_count', 'transient_controls', 'parameters', 'pollutants', 'data_sampling', 'data_sampling_options', 'residual_verbosity']
76740
76774
  command_names = ['calculate', 'interrupt', 'dual_time_iterate', 'iterate']
76741
76775
  query_names = ['iterating']
76742
76776
  _child_classes = dict(
76743
76777
  pseudo_time_settings=pseudo_time_settings,
76744
- iter_count=iter_count_2,
76745
76778
  adaptive_time_stepping=adaptive_time_stepping,
76746
76779
  cfl_based_adaptive_time_stepping=cfl_based_adaptive_time_stepping,
76747
- reporting_interval=reporting_interval,
76748
- profile_update_interval=profile_update_interval,
76749
76780
  solution_steering=solution_steering,
76750
76781
  time_step_count=time_step_count_1,
76751
76782
  transient_controls=transient_controls,
76783
+ parameters=parameters_8,
76752
76784
  pollutants=pollutants,
76753
76785
  data_sampling=data_sampling,
76754
76786
  data_sampling_options=data_sampling_options,
@@ -76759,6 +76791,11 @@ class run_calculation(Group):
76759
76791
  iterate=iterate,
76760
76792
  iterating=iterating,
76761
76793
  )
76794
+ _child_aliases = dict(
76795
+ iter_count=('parameters/iter_count', 'iter-count'),
76796
+ profile_update_interval=('parameters/profile_update_interval', 'profile-update-interval'),
76797
+ reporting_interval=('parameters/reporting_interval', 'reporting-interval'),
76798
+ )
76762
76799
 
76763
76800
  class solution(Group):
76764
76801
  """
@@ -95644,7 +95681,7 @@ class constraints(Real):
95644
95681
  fluent_name = 'constraints'
95645
95682
  _python_name = 'constraints'
95646
95683
 
95647
- class parameters_8(Real):
95684
+ class parameters_9(Real):
95648
95685
  """
95649
95686
  Tolerance on parameters.
95650
95687
  """
@@ -95662,7 +95699,7 @@ class tolerances(Group):
95662
95699
  child_names = ['constraints', 'parameters']
95663
95700
  _child_classes = dict(
95664
95701
  constraints=constraints,
95665
- parameters=parameters_8,
95702
+ parameters=parameters_9,
95666
95703
  )
95667
95704
 
95668
95705
  class polynomials(Group):
@@ -96550,7 +96587,7 @@ class value_21(Real):
96550
96587
  fluent_name = 'value'
96551
96588
  _python_name = 'value'
96552
96589
 
96553
- class parameters_9_child(Group):
96590
+ class parameters_10_child(Group):
96554
96591
  """
96555
96592
  'child_object_type' of parameters.
96556
96593
  """
@@ -96563,7 +96600,7 @@ class parameters_9_child(Group):
96563
96600
  value=value_21,
96564
96601
  )
96565
96602
 
96566
- class parameters_9(NamedObject[parameters_9_child], CreatableNamedObjectMixin[parameters_9_child]):
96603
+ class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[parameters_10_child]):
96567
96604
  """
96568
96605
  Parameters for prescribed profile.
96569
96606
  """
@@ -96579,7 +96616,7 @@ class parameters_9(NamedObject[parameters_9_child], CreatableNamedObjectMixin[pa
96579
96616
  list_properties=list_properties,
96580
96617
  make_a_copy=make_a_copy,
96581
96618
  )
96582
- child_object_type = parameters_9_child
96619
+ child_object_type = parameters_10_child
96583
96620
 
96584
96621
  class x_10(Group):
96585
96622
  """
@@ -96964,7 +97001,7 @@ class definition_3_child(Group):
96964
97001
  fit_imported_surfaces=fit_imported_surfaces,
96965
97002
  bounding_offset=bounding_offset,
96966
97003
  deformation_profile=deformation_profile,
96967
- parameters=parameters_9,
97004
+ parameters=parameters_10,
96968
97005
  displacement=displacement,
96969
97006
  scaling_type=scaling_type,
96970
97007
  scale_factor=scale_factor_2,
@@ -97455,7 +97492,7 @@ class affected_conditions(StringList, AllowedValuesMixin):
97455
97492
  fluent_name = 'affected-conditions'
97456
97493
  _python_name = 'affected_conditions'
97457
97494
 
97458
- class parameters_10_child(Group):
97495
+ class parameters_11_child(Group):
97459
97496
  """
97460
97497
  'child_object_type' of parameters.
97461
97498
  """
@@ -97468,7 +97505,7 @@ class parameters_10_child(Group):
97468
97505
  affected_conditions=affected_conditions,
97469
97506
  )
97470
97507
 
97471
- class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[parameters_10_child]):
97508
+ class parameters_11(NamedObject[parameters_11_child], CreatableNamedObjectMixin[parameters_11_child]):
97472
97509
  """
97473
97510
  Design change parameter.
97474
97511
  """
@@ -97484,7 +97521,7 @@ class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[
97484
97521
  list_properties=list_properties,
97485
97522
  make_a_copy=make_a_copy,
97486
97523
  )
97487
- child_object_type = parameters_10_child
97524
+ child_object_type = parameters_11_child
97488
97525
 
97489
97526
  class file_name_30(String):
97490
97527
  """
@@ -97847,7 +97884,7 @@ class design_change(Group):
97847
97884
  child_names = ['parameters', 'results', 'export', 'preview', 'history']
97848
97885
  command_names = ['check', 'calculate_design_change', 'print_expected_changes', 'modify', 'revert', 'remesh']
97849
97886
  _child_classes = dict(
97850
- parameters=parameters_10,
97887
+ parameters=parameters_11,
97851
97888
  results=results_1,
97852
97889
  export=export_2,
97853
97890
  preview=preview_1,
@@ -97970,7 +98007,7 @@ class parameters_count(Integer):
97970
98007
  fluent_name = 'parameters-count'
97971
98008
  _python_name = 'parameters_count'
97972
98009
 
97973
- class parameters_11_child(String, AllowedValuesMixin):
98010
+ class parameters_12_child(String, AllowedValuesMixin):
97974
98011
  """
97975
98012
  'child_object_type' of parameters.
97976
98013
  """
@@ -97978,7 +98015,7 @@ class parameters_11_child(String, AllowedValuesMixin):
97978
98015
  fluent_name = 'child-object-type'
97979
98016
  _python_name = 'parameters_child'
97980
98017
 
97981
- class parameters_11(ListObject[parameters_11_child]):
98018
+ class parameters_12(ListObject[parameters_12_child]):
97982
98019
  """
97983
98020
  Operating condition parameter.
97984
98021
  """
@@ -97990,7 +98027,7 @@ class parameters_11(ListObject[parameters_11_child]):
97990
98027
  list_properties=list_properties_1,
97991
98028
  resize=resize,
97992
98029
  )
97993
- child_object_type = parameters_11_child
98030
+ child_object_type = parameters_12_child
97994
98031
 
97995
98032
  class id_1(Integer):
97996
98033
  """
@@ -98008,7 +98045,7 @@ class active_4(Boolean):
98008
98045
  fluent_name = 'active'
98009
98046
  _python_name = 'active'
98010
98047
 
98011
- class parameters_12_child(Real):
98048
+ class parameters_13_child(Real):
98012
98049
  """
98013
98050
  'child_object_type' of parameters.
98014
98051
  """
@@ -98016,7 +98053,7 @@ class parameters_12_child(Real):
98016
98053
  fluent_name = 'child-object-type'
98017
98054
  _python_name = 'parameters_child'
98018
98055
 
98019
- class parameters_12(NamedObject[parameters_12_child], CreatableNamedObjectMixin[parameters_12_child]):
98056
+ class parameters_13(NamedObject[parameters_13_child], CreatableNamedObjectMixin[parameters_13_child]):
98020
98057
  """
98021
98058
  Parameter values of the given condition.
98022
98059
  """
@@ -98032,7 +98069,7 @@ class parameters_12(NamedObject[parameters_12_child], CreatableNamedObjectMixin[
98032
98069
  list_properties=list_properties,
98033
98070
  make_a_copy=make_a_copy,
98034
98071
  )
98035
- child_object_type = parameters_12_child
98072
+ child_object_type = parameters_13_child
98036
98073
 
98037
98074
  class conditions_2_child(Group):
98038
98075
  """
@@ -98045,7 +98082,7 @@ class conditions_2_child(Group):
98045
98082
  _child_classes = dict(
98046
98083
  id=id_1,
98047
98084
  active=active_4,
98048
- parameters=parameters_12,
98085
+ parameters=parameters_13,
98049
98086
  )
98050
98087
 
98051
98088
  class conditions_2(ListObject[conditions_2_child]):
@@ -98073,7 +98110,7 @@ class operating_conditions_1(Group):
98073
98110
  _child_classes = dict(
98074
98111
  count=count_1,
98075
98112
  parameters_count=parameters_count,
98076
- parameters=parameters_11,
98113
+ parameters=parameters_12,
98077
98114
  conditions=conditions_2,
98078
98115
  )
98079
98116