ansys-fluent-core 0.32.dev1__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 (32) 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 +40 -40
  5. ansys/fluent/core/generated/datamodel_231/meshing.py +178 -178
  6. ansys/fluent/core/generated/datamodel_232/flicing.py +65 -65
  7. ansys/fluent/core/generated/datamodel_232/meshing.py +202 -202
  8. ansys/fluent/core/generated/datamodel_241/flicing.py +55 -55
  9. ansys/fluent/core/generated/datamodel_241/meshing.py +226 -226
  10. ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
  11. ansys/fluent/core/generated/datamodel_242/meshing.py +287 -287
  12. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  13. ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
  14. ansys/fluent/core/generated/datamodel_251/meshing.py +349 -349
  15. ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
  16. ansys/fluent/core/generated/datamodel_252/flicing.py +40 -40
  17. ansys/fluent/core/generated/datamodel_252/meshing.py +410 -410
  18. ansys/fluent/core/generated/datamodel_252/part_management.py +15 -15
  19. ansys/fluent/core/generated/datamodel_261/flicing.py +40 -40
  20. ansys/fluent/core/generated/datamodel_261/meshing.py +427 -427
  21. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  22. ansys/fluent/core/generated/solver/settings_261.py +271 -221
  23. ansys/fluent/core/generated/solver/settings_261.pyi +144 -122
  24. ansys/fluent/core/generated/solver/tui_261.py +107 -117
  25. ansys/fluent/core/solver/__init__.py +2 -0
  26. ansys/fluent/core/solver/flobject.py +7 -26
  27. ansys/fluent/core/solver/settings_builtin_bases.py +23 -11
  28. ansys/fluent/core/utils/context_managers.py +68 -0
  29. {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.2.dist-info}/METADATA +2 -2
  30. {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.2.dist-info}/RECORD +32 -31
  31. {ansys_fluent_core-0.32.dev1.dist-info → ansys_fluent_core-0.32.2.dist-info}/LICENSE +0 -0
  32. {ansys_fluent_core-0.32.dev1.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 = "ecd8273c09ee749503e43e373a8c3b5a430996abcf6df4b070f45612150c0c0a"
15
+ SHASH = "f4d0a27df803a8bab94db5f9aff4c63bd11433c2523889d14ceb012391bc67a0"
16
16
 
17
17
  class single_precision_coordinates(Boolean):
18
18
  """
@@ -63665,13 +63665,13 @@ class export_boundary_mesh(Command):
63665
63665
  filename=('file_name', 'filename'),
63666
63666
  )
63667
63667
 
63668
- class turbo_models(Group):
63668
+ class models_1(Group):
63669
63669
  """
63670
63670
  The turbo-models settings.
63671
63671
  """
63672
63672
  _version = '261'
63673
- fluent_name = 'turbo-models'
63674
- _python_name = 'turbo_models'
63673
+ fluent_name = 'models'
63674
+ _python_name = 'models'
63675
63675
  child_names = ['enabled', 'general_turbo_interface']
63676
63676
  command_names = ['export_boundary_mesh']
63677
63677
  _child_classes = dict(
@@ -63680,6 +63680,18 @@ class turbo_models(Group):
63680
63680
  export_boundary_mesh=export_boundary_mesh,
63681
63681
  )
63682
63682
 
63683
+ class turbomachinery(Group):
63684
+ """
63685
+ The turbomachinery models.
63686
+ """
63687
+ _version = '261'
63688
+ fluent_name = 'turbomachinery'
63689
+ _python_name = 'turbomachinery'
63690
+ child_names = ['models']
63691
+ _child_classes = dict(
63692
+ models=models_1,
63693
+ )
63694
+
63683
63695
  class auto_compile_compiled_functions(Boolean):
63684
63696
  """
63685
63697
  For this Fluent session, specify whether to allow auto-compilation of compiled UDF when a case file (or settings file) is read.
@@ -64908,7 +64920,7 @@ class setup(Group):
64908
64920
  _version = '261'
64909
64921
  fluent_name = 'setup'
64910
64922
  _python_name = 'setup'
64911
- child_names = ['general', 'models', 'materials', 'cell_zone_conditions', 'model_topology', 'physics', 'boundary_conditions', 'mesh_interfaces', 'dynamic_mesh', 'reference_values', 'reference_frames', 'named_expressions', 'turbo_models', 'user_defined', 'profiles']
64923
+ child_names = ['general', 'models', 'materials', 'cell_zone_conditions', 'model_topology', 'physics', 'boundary_conditions', 'mesh_interfaces', 'dynamic_mesh', 'reference_values', 'reference_frames', 'named_expressions', 'turbomachinery', 'user_defined', 'profiles']
64912
64924
  _child_classes = dict(
64913
64925
  general=general,
64914
64926
  models=models,
@@ -64922,12 +64934,13 @@ class setup(Group):
64922
64934
  reference_values=reference_values,
64923
64935
  reference_frames=reference_frames,
64924
64936
  named_expressions=named_expressions,
64925
- turbo_models=turbo_models,
64937
+ turbomachinery=turbomachinery,
64926
64938
  user_defined=user_defined_1,
64927
64939
  profiles=profiles,
64928
64940
  )
64929
64941
  _child_aliases = dict(
64930
64942
  geometry=('model_topology', 'geometry'),
64943
+ turbo_models=('turbomachinery/models', 'turbo-models'),
64931
64944
  )
64932
64945
 
64933
64946
  class axis_stabilization(Boolean):
@@ -68486,7 +68499,7 @@ class ramp_scalars(Boolean):
68486
68499
  fluent_name = 'ramp-scalars?'
68487
68500
  _python_name = 'ramp_scalars'
68488
68501
 
68489
- class models_1(Group):
68502
+ class models_2(Group):
68490
68503
  """
68491
68504
  Flexible numerics object.
68492
68505
  """
@@ -68625,7 +68638,7 @@ class contact_solution_controls(Group):
68625
68638
  spatial=spatial,
68626
68639
  transient=transient,
68627
68640
  amg=amg,
68628
- models=models_1,
68641
+ models=models_2,
68629
68642
  methods=methods_3,
68630
68643
  miscellaneous=miscellaneous,
68631
68644
  set_settings_to_default=set_settings_to_default,
@@ -73559,11 +73572,20 @@ class boundary_zone(String, AllowedValuesMixin):
73559
73572
  fluent_name = 'boundary-zone'
73560
73573
  _python_name = 'boundary_zone'
73561
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
+
73562
73583
  class flat_init(Boolean):
73563
73584
  """
73564
73585
  Enable/disable flat free surface initialization.
73565
73586
  """
73566
73587
  _version = '261'
73588
+ _deprecated_version = '2026R1'
73567
73589
  fluent_name = 'flat-init?'
73568
73590
  _python_name = 'flat_init'
73569
73591
 
@@ -73572,6 +73594,7 @@ class wavy_surface_init(Boolean):
73572
73594
  Enable/disable wavy free surface initialization.
73573
73595
  """
73574
73596
  _version = '261'
73597
+ _deprecated_version = '2026R1'
73575
73598
  fluent_name = 'wavy-surface-init?'
73576
73599
  _python_name = 'wavy_surface_init'
73577
73600
 
@@ -73582,9 +73605,10 @@ class open_channel_auto_init(Group):
73582
73605
  _version = '261'
73583
73606
  fluent_name = 'open-channel-auto-init'
73584
73607
  _python_name = 'open_channel_auto_init'
73585
- child_names = ['boundary_zone', 'flat_init', 'wavy_surface_init']
73608
+ child_names = ['boundary_zone', 'open_channel_initialization_method', 'flat_init', 'wavy_surface_init']
73586
73609
  _child_classes = dict(
73587
73610
  boundary_zone=boundary_zone,
73611
+ open_channel_initialization_method=open_channel_initialization_method,
73588
73612
  flat_init=flat_init,
73589
73613
  wavy_surface_init=wavy_surface_init,
73590
73614
  )
@@ -73738,7 +73762,7 @@ class from_zone_type_1(String, AllowedValuesMixin):
73738
73762
 
73739
73763
  class from_zone_name_1(String, AllowedValuesMixin):
73740
73764
  """
73741
- Selecte zone name.
73765
+ Zone name.
73742
73766
  """
73743
73767
  _version = '261'
73744
73768
  fluent_name = 'from-zone-name'
@@ -73761,7 +73785,7 @@ class compute_defaults(Command):
73761
73785
  from_zone_type : str
73762
73786
  Boundary/zone type.
73763
73787
  from_zone_name : str
73764
- Selecte zone name.
73788
+ Zone name.
73765
73789
  phase : str
73766
73790
  Phase name.
73767
73791
  """
@@ -75129,14 +75153,6 @@ class calculation_activity(Group):
75129
75153
  poor_mesh_numerics=poor_mesh_numerics_1,
75130
75154
  )
75131
75155
 
75132
- class verbosity_19(Integer):
75133
- """
75134
- The verbosity for the pseudo time method.
75135
- """
75136
- _version = '261'
75137
- fluent_name = 'verbosity'
75138
- _python_name = 'verbosity'
75139
-
75140
75156
  class time_step_method_1(String, AllowedValuesMixin):
75141
75157
  """
75142
75158
  Enable/disable use of automatic time step size calculation.
@@ -75169,6 +75185,14 @@ class time_step_size_scale_factor_1(Real):
75169
75185
  fluent_name = 'time-step-size-scale-factor'
75170
75186
  _python_name = 'time_step_size_scale_factor'
75171
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
+
75172
75196
  class length_scale_1(Real):
75173
75197
  """
75174
75198
  Length Scale .
@@ -75208,12 +75232,13 @@ class time_step_method(Group):
75208
75232
  _version = '261'
75209
75233
  fluent_name = 'time-step-method'
75210
75234
  _python_name = 'time_step_method'
75211
- 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']
75212
75236
  _child_classes = dict(
75213
75237
  time_step_method=time_step_method_1,
75214
75238
  pseudo_time_step_size=pseudo_time_step_size,
75215
75239
  length_scale_methods=length_scale_methods,
75216
75240
  time_step_size_scale_factor=time_step_size_scale_factor_1,
75241
+ verbosity=verbosity_19,
75217
75242
  length_scale=length_scale_1,
75218
75243
  auto_time_size_calc_solid_zone=auto_time_size_calc_solid_zone,
75219
75244
  time_solid_scale_factor=time_solid_scale_factor,
@@ -75227,19 +75252,13 @@ class pseudo_time_settings(Group):
75227
75252
  _version = '261'
75228
75253
  fluent_name = 'pseudo-time-settings'
75229
75254
  _python_name = 'pseudo_time_settings'
75230
- child_names = ['verbosity', 'time_step_method']
75255
+ child_names = ['time_step_method']
75231
75256
  _child_classes = dict(
75232
- verbosity=verbosity_19,
75233
75257
  time_step_method=time_step_method,
75234
75258
  )
75235
-
75236
- class iter_count_2(Integer):
75237
- """
75238
- Number of iterations.
75239
- """
75240
- _version = '261'
75241
- fluent_name = 'iter-count'
75242
- _python_name = 'iter_count'
75259
+ _child_aliases = dict(
75260
+ verbosity=('time_step_method/verbosity', 'verbosity'),
75261
+ )
75243
75262
 
75244
75263
  class enabled_66(Boolean):
75245
75264
  """
@@ -75395,22 +75414,6 @@ class cfl_based_adaptive_time_stepping(Group):
75395
75414
  max_step_change_factor=max_step_change_factor,
75396
75415
  )
75397
75416
 
75398
- class reporting_interval(Integer):
75399
- """
75400
- Number of solver iterations before returning to scheme.
75401
- """
75402
- _version = '261'
75403
- fluent_name = 'reporting-interval'
75404
- _python_name = 'reporting_interval'
75405
-
75406
- class profile_update_interval(Integer):
75407
- """
75408
- Number of solver iterations after which profile is updated.
75409
- """
75410
- _version = '261'
75411
- fluent_name = 'profile-update-interval'
75412
- _python_name = 'profile_update_interval'
75413
-
75414
75417
  class enable_28(Boolean):
75415
75418
  """
75416
75419
  Enable solution steering for density-based solver?.
@@ -75666,17 +75669,9 @@ class solution_status(Boolean):
75666
75669
  fluent_name = 'solution-status'
75667
75670
  _python_name = 'solution_status'
75668
75671
 
75669
- class extrapolate_variables(Boolean):
75670
- """
75671
- The extrapolation object.
75672
- """
75673
- _version = '261'
75674
- fluent_name = 'extrapolate-variables'
75675
- _python_name = 'extrapolate_variables'
75676
-
75677
75672
  class max_flow_time(Real):
75678
75673
  """
75679
- Maximum flow time.
75674
+ Maximum flow time (-1 no maximum).
75680
75675
  """
75681
75676
  _version = '261'
75682
75677
  fluent_name = 'max-flow-time'
@@ -75730,25 +75725,6 @@ class update_interval_3(Integer):
75730
75725
  fluent_name = 'update-interval'
75731
75726
  _python_name = 'update_interval'
75732
75727
 
75733
- class cfl_based_time_stepping(Group):
75734
- """
75735
- CFL-based time stepping object.
75736
- """
75737
- _version = '261'
75738
- fluent_name = 'cfl-based-time-stepping'
75739
- _python_name = 'cfl_based_time_stepping'
75740
- 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']
75741
- _child_classes = dict(
75742
- courant_number=courant_number_1,
75743
- initial_time_step_size=initial_time_step_size,
75744
- fixed_time_step_size=fixed_time_step_size,
75745
- min_time_step_size=min_time_step_size,
75746
- max_time_step_size=max_time_step_size,
75747
- min_step_change_factor=min_step_change_factor,
75748
- max_step_change_factor=max_step_change_factor,
75749
- update_interval=update_interval_3,
75750
- )
75751
-
75752
75728
  class control_time_step_size_variation(Boolean):
75753
75729
  """
75754
75730
  Control time step size variation.
@@ -75773,13 +75749,13 @@ class cfl_type(String, AllowedValuesMixin):
75773
75749
  fluent_name = 'cfl-type'
75774
75750
  _python_name = 'cfl_type'
75775
75751
 
75776
- class cfl_based_time_stepping_advanced_options(Group):
75752
+ class advanced_options(Group):
75777
75753
  """
75778
75754
  Advanced settings for CFL-based time stepping.
75779
75755
  """
75780
75756
  _version = '261'
75781
- fluent_name = 'cfl-based-time-stepping-advanced-options'
75782
- _python_name = 'cfl_based_time_stepping_advanced_options'
75757
+ fluent_name = 'advanced-options'
75758
+ _python_name = 'advanced_options'
75783
75759
  child_names = ['control_time_step_size_variation', 'use_average_cfl', 'cfl_type']
75784
75760
  _child_classes = dict(
75785
75761
  control_time_step_size_variation=control_time_step_size_variation,
@@ -75787,6 +75763,26 @@ class cfl_based_time_stepping_advanced_options(Group):
75787
75763
  cfl_type=cfl_type,
75788
75764
  )
75789
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
+
75790
75786
  class error_tolerance_3(Real):
75791
75787
  """
75792
75788
  Error Tolerance.
@@ -75795,6 +75791,14 @@ class error_tolerance_3(Real):
75795
75791
  fluent_name = 'error-tolerance'
75796
75792
  _python_name = 'error_tolerance'
75797
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
+
75798
75802
  class error_based_time_stepping(Group):
75799
75803
  """
75800
75804
  Error-based time stepping object.
@@ -75802,7 +75806,7 @@ class error_based_time_stepping(Group):
75802
75806
  _version = '261'
75803
75807
  fluent_name = 'error-based-time-stepping'
75804
75808
  _python_name = 'error_based_time_stepping'
75805
- 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']
75806
75810
  _child_classes = dict(
75807
75811
  error_tolerance=error_tolerance_3,
75808
75812
  initial_time_step_size=initial_time_step_size,
@@ -75812,16 +75816,9 @@ class error_based_time_stepping(Group):
75812
75816
  min_step_change_factor=min_step_change_factor,
75813
75817
  max_step_change_factor=max_step_change_factor,
75814
75818
  update_interval=update_interval_3,
75819
+ undo_timestep=undo_timestep,
75815
75820
  )
75816
75821
 
75817
- class undo_timestep(Boolean):
75818
- """
75819
- Undo the previous time step.
75820
- """
75821
- _version = '261'
75822
- fluent_name = 'undo-timestep?'
75823
- _python_name = 'undo_timestep'
75824
-
75825
75822
  class predict_next(Boolean):
75826
75823
  """
75827
75824
  Applies a predictor algorithm for computing initial condition at time step n+1.
@@ -75854,6 +75851,113 @@ class global_courant_number(Real):
75854
75851
  fluent_name = 'global-courant-number'
75855
75852
  _python_name = 'global_courant_number'
75856
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
+
75857
75961
  class mp_specific_time_stepping(Group):
75858
75962
  """
75859
75963
  Multiphase-specific adaptive time stepping parameters.
@@ -75861,7 +75965,7 @@ class mp_specific_time_stepping(Group):
75861
75965
  _version = '261'
75862
75966
  fluent_name = 'mp-specific-time-stepping'
75863
75967
  _python_name = 'mp_specific_time_stepping'
75864
- 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']
75865
75969
  _child_classes = dict(
75866
75970
  enabled=enabled_68,
75867
75971
  global_courant_number=global_courant_number,
@@ -75872,6 +75976,7 @@ class mp_specific_time_stepping(Group):
75872
75976
  min_step_change_factor=min_step_change_factor,
75873
75977
  max_step_change_factor=max_step_change_factor,
75874
75978
  update_interval=update_interval_3,
75979
+ time_constraints=time_constraints,
75875
75980
  )
75876
75981
 
75877
75982
  class udf_hook(String, AllowedValuesMixin):
@@ -75968,113 +76073,6 @@ class fixed_periodic(Group):
75968
76073
  times_steps_per_period=('time_steps_per_period', 'times-steps-per-period'),
75969
76074
  )
75970
76075
 
75971
- class moving_mesh_constraint(Boolean):
75972
- """
75973
- Enable Moving Mesh Constraint.
75974
- """
75975
- _version = '261'
75976
- fluent_name = 'moving-mesh-constraint?'
75977
- _python_name = 'moving_mesh_constraint'
75978
-
75979
- class mesh_courant_number(Real):
75980
- """
75981
- Moving Mesh Courant Number.
75982
- """
75983
- _version = '261'
75984
- fluent_name = 'mesh-courant-number'
75985
- _python_name = 'mesh_courant_number'
75986
-
75987
- class moving_mesh_cfl_constraint(Group):
75988
- """
75989
- Moving mesh CFL constraint object.
75990
- """
75991
- _version = '261'
75992
- fluent_name = 'moving-mesh-cfl-constraint'
75993
- _python_name = 'moving_mesh_cfl_constraint'
75994
- child_names = ['moving_mesh_constraint', 'mesh_courant_number']
75995
- _child_classes = dict(
75996
- moving_mesh_constraint=moving_mesh_constraint,
75997
- mesh_courant_number=mesh_courant_number,
75998
- )
75999
-
76000
- class physics_based_constraint(Boolean):
76001
- """
76002
- Include physics driven time-step constraints.
76003
- """
76004
- _version = '261'
76005
- fluent_name = 'physics-based-constraint?'
76006
- _python_name = 'physics_based_constraint'
76007
-
76008
- class viscous_scale(Boolean):
76009
- """
76010
- Include viscous time scale.
76011
- """
76012
- _version = '261'
76013
- fluent_name = 'viscous-scale?'
76014
- _python_name = 'viscous_scale'
76015
-
76016
- class gravity_scale(Boolean):
76017
- """
76018
- Include gravity based time scale.
76019
- """
76020
- _version = '261'
76021
- fluent_name = 'gravity-scale?'
76022
- _python_name = 'gravity_scale'
76023
-
76024
- class surface_tension_scale(Boolean):
76025
- """
76026
- Include surface tension based time scale.
76027
- """
76028
- _version = '261'
76029
- fluent_name = 'surface-tension-scale?'
76030
- _python_name = 'surface_tension_scale'
76031
-
76032
- class acoustic_scale(Boolean):
76033
- """
76034
- Include acoustic time scale.
76035
- """
76036
- _version = '261'
76037
- fluent_name = 'acoustic-scale?'
76038
- _python_name = 'acoustic_scale'
76039
-
76040
- class time_scale_options(Group):
76041
- """
76042
- Physics based time scale options.
76043
- """
76044
- _version = '261'
76045
- fluent_name = 'time-scale-options'
76046
- _python_name = 'time_scale_options'
76047
- child_names = ['viscous_scale', 'gravity_scale', 'surface_tension_scale', 'acoustic_scale']
76048
- _child_classes = dict(
76049
- viscous_scale=viscous_scale,
76050
- gravity_scale=gravity_scale,
76051
- surface_tension_scale=surface_tension_scale,
76052
- acoustic_scale=acoustic_scale,
76053
- )
76054
-
76055
- class verbosity_20(Boolean):
76056
- """
76057
- Verbosity to print multiphase specific time scales.
76058
- """
76059
- _version = '261'
76060
- fluent_name = 'verbosity?'
76061
- _python_name = 'verbosity'
76062
-
76063
- class multiphase_specific_time_constraints(Group):
76064
- """
76065
- Multiphase-specific time constraints object.
76066
- """
76067
- _version = '261'
76068
- fluent_name = 'multiphase-specific-time-constraints'
76069
- _python_name = 'multiphase_specific_time_constraints'
76070
- child_names = ['moving_mesh_cfl_constraint', 'physics_based_constraint', 'time_scale_options', 'verbosity']
76071
- _child_classes = dict(
76072
- moving_mesh_cfl_constraint=moving_mesh_cfl_constraint,
76073
- physics_based_constraint=physics_based_constraint,
76074
- time_scale_options=time_scale_options,
76075
- verbosity=verbosity_20,
76076
- )
76077
-
76078
76076
  class enable_solid_time_step(Boolean):
76079
76077
  """
76080
76078
  Enable/Disable different time step size for solid zones?.
@@ -76121,6 +76119,14 @@ class time_step_size_for_acoustic_export(Real):
76121
76119
  fluent_name = 'time-step-size-for-acoustic-export'
76122
76120
  _python_name = 'time_step_size_for_acoustic_export'
76123
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
+
76124
76130
  class extrapolate_eqn_vars_child(Boolean):
76125
76131
  """
76126
76132
  'child_object_type' of extrapolate_eqn_vars.
@@ -76162,7 +76168,7 @@ class transient_controls(Group):
76162
76168
  _version = '261'
76163
76169
  fluent_name = 'transient-controls'
76164
76170
  _python_name = 'transient_controls'
76165
- 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']
76166
76172
  query_names = ['simulation_status']
76167
76173
  _child_classes = dict(
76168
76174
  type=type_15,
@@ -76177,23 +76183,64 @@ class transient_controls(Group):
76177
76183
  flow_time=flow_time,
76178
76184
  total_time_step_count=total_time_step_count,
76179
76185
  solution_status=solution_status,
76180
- extrapolate_variables=extrapolate_variables,
76181
76186
  max_flow_time=max_flow_time,
76182
76187
  cfl_based_time_stepping=cfl_based_time_stepping,
76183
- cfl_based_time_stepping_advanced_options=cfl_based_time_stepping_advanced_options,
76184
76188
  error_based_time_stepping=error_based_time_stepping,
76185
- undo_timestep=undo_timestep,
76186
76189
  predict_next=predict_next,
76187
76190
  rotating_mesh_flow_predictor=rotating_mesh_flow_predictor,
76188
76191
  mp_specific_time_stepping=mp_specific_time_stepping,
76189
76192
  udf_hook=udf_hook,
76190
76193
  fixed_periodic=fixed_periodic,
76191
- multiphase_specific_time_constraints=multiphase_specific_time_constraints,
76192
76194
  solid_time_step_size=solid_time_step_size,
76193
76195
  time_step_size_for_acoustic_export=time_step_size_for_acoustic_export,
76196
+ extrapolate_variables=extrapolate_variables,
76194
76197
  extrapolate_eqn_vars=extrapolate_eqn_vars,
76195
76198
  simulation_status=simulation_status,
76196
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
+ )
76197
76244
 
76198
76245
  class postprocess(Boolean):
76199
76246
  """
@@ -76723,19 +76770,17 @@ class run_calculation(Group):
76723
76770
  _version = '261'
76724
76771
  fluent_name = 'run-calculation'
76725
76772
  _python_name = 'run_calculation'
76726
- 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']
76727
76774
  command_names = ['calculate', 'interrupt', 'dual_time_iterate', 'iterate']
76728
76775
  query_names = ['iterating']
76729
76776
  _child_classes = dict(
76730
76777
  pseudo_time_settings=pseudo_time_settings,
76731
- iter_count=iter_count_2,
76732
76778
  adaptive_time_stepping=adaptive_time_stepping,
76733
76779
  cfl_based_adaptive_time_stepping=cfl_based_adaptive_time_stepping,
76734
- reporting_interval=reporting_interval,
76735
- profile_update_interval=profile_update_interval,
76736
76780
  solution_steering=solution_steering,
76737
76781
  time_step_count=time_step_count_1,
76738
76782
  transient_controls=transient_controls,
76783
+ parameters=parameters_8,
76739
76784
  pollutants=pollutants,
76740
76785
  data_sampling=data_sampling,
76741
76786
  data_sampling_options=data_sampling_options,
@@ -76746,6 +76791,11 @@ class run_calculation(Group):
76746
76791
  iterate=iterate,
76747
76792
  iterating=iterating,
76748
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
+ )
76749
76799
 
76750
76800
  class solution(Group):
76751
76801
  """
@@ -95631,7 +95681,7 @@ class constraints(Real):
95631
95681
  fluent_name = 'constraints'
95632
95682
  _python_name = 'constraints'
95633
95683
 
95634
- class parameters_8(Real):
95684
+ class parameters_9(Real):
95635
95685
  """
95636
95686
  Tolerance on parameters.
95637
95687
  """
@@ -95649,7 +95699,7 @@ class tolerances(Group):
95649
95699
  child_names = ['constraints', 'parameters']
95650
95700
  _child_classes = dict(
95651
95701
  constraints=constraints,
95652
- parameters=parameters_8,
95702
+ parameters=parameters_9,
95653
95703
  )
95654
95704
 
95655
95705
  class polynomials(Group):
@@ -96537,7 +96587,7 @@ class value_21(Real):
96537
96587
  fluent_name = 'value'
96538
96588
  _python_name = 'value'
96539
96589
 
96540
- class parameters_9_child(Group):
96590
+ class parameters_10_child(Group):
96541
96591
  """
96542
96592
  'child_object_type' of parameters.
96543
96593
  """
@@ -96550,7 +96600,7 @@ class parameters_9_child(Group):
96550
96600
  value=value_21,
96551
96601
  )
96552
96602
 
96553
- class parameters_9(NamedObject[parameters_9_child], CreatableNamedObjectMixin[parameters_9_child]):
96603
+ class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[parameters_10_child]):
96554
96604
  """
96555
96605
  Parameters for prescribed profile.
96556
96606
  """
@@ -96566,7 +96616,7 @@ class parameters_9(NamedObject[parameters_9_child], CreatableNamedObjectMixin[pa
96566
96616
  list_properties=list_properties,
96567
96617
  make_a_copy=make_a_copy,
96568
96618
  )
96569
- child_object_type = parameters_9_child
96619
+ child_object_type = parameters_10_child
96570
96620
 
96571
96621
  class x_10(Group):
96572
96622
  """
@@ -96951,7 +97001,7 @@ class definition_3_child(Group):
96951
97001
  fit_imported_surfaces=fit_imported_surfaces,
96952
97002
  bounding_offset=bounding_offset,
96953
97003
  deformation_profile=deformation_profile,
96954
- parameters=parameters_9,
97004
+ parameters=parameters_10,
96955
97005
  displacement=displacement,
96956
97006
  scaling_type=scaling_type,
96957
97007
  scale_factor=scale_factor_2,
@@ -97442,7 +97492,7 @@ class affected_conditions(StringList, AllowedValuesMixin):
97442
97492
  fluent_name = 'affected-conditions'
97443
97493
  _python_name = 'affected_conditions'
97444
97494
 
97445
- class parameters_10_child(Group):
97495
+ class parameters_11_child(Group):
97446
97496
  """
97447
97497
  'child_object_type' of parameters.
97448
97498
  """
@@ -97455,7 +97505,7 @@ class parameters_10_child(Group):
97455
97505
  affected_conditions=affected_conditions,
97456
97506
  )
97457
97507
 
97458
- class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[parameters_10_child]):
97508
+ class parameters_11(NamedObject[parameters_11_child], CreatableNamedObjectMixin[parameters_11_child]):
97459
97509
  """
97460
97510
  Design change parameter.
97461
97511
  """
@@ -97471,7 +97521,7 @@ class parameters_10(NamedObject[parameters_10_child], CreatableNamedObjectMixin[
97471
97521
  list_properties=list_properties,
97472
97522
  make_a_copy=make_a_copy,
97473
97523
  )
97474
- child_object_type = parameters_10_child
97524
+ child_object_type = parameters_11_child
97475
97525
 
97476
97526
  class file_name_30(String):
97477
97527
  """
@@ -97834,7 +97884,7 @@ class design_change(Group):
97834
97884
  child_names = ['parameters', 'results', 'export', 'preview', 'history']
97835
97885
  command_names = ['check', 'calculate_design_change', 'print_expected_changes', 'modify', 'revert', 'remesh']
97836
97886
  _child_classes = dict(
97837
- parameters=parameters_10,
97887
+ parameters=parameters_11,
97838
97888
  results=results_1,
97839
97889
  export=export_2,
97840
97890
  preview=preview_1,
@@ -97957,7 +98007,7 @@ class parameters_count(Integer):
97957
98007
  fluent_name = 'parameters-count'
97958
98008
  _python_name = 'parameters_count'
97959
98009
 
97960
- class parameters_11_child(String, AllowedValuesMixin):
98010
+ class parameters_12_child(String, AllowedValuesMixin):
97961
98011
  """
97962
98012
  'child_object_type' of parameters.
97963
98013
  """
@@ -97965,7 +98015,7 @@ class parameters_11_child(String, AllowedValuesMixin):
97965
98015
  fluent_name = 'child-object-type'
97966
98016
  _python_name = 'parameters_child'
97967
98017
 
97968
- class parameters_11(ListObject[parameters_11_child]):
98018
+ class parameters_12(ListObject[parameters_12_child]):
97969
98019
  """
97970
98020
  Operating condition parameter.
97971
98021
  """
@@ -97977,7 +98027,7 @@ class parameters_11(ListObject[parameters_11_child]):
97977
98027
  list_properties=list_properties_1,
97978
98028
  resize=resize,
97979
98029
  )
97980
- child_object_type = parameters_11_child
98030
+ child_object_type = parameters_12_child
97981
98031
 
97982
98032
  class id_1(Integer):
97983
98033
  """
@@ -97995,7 +98045,7 @@ class active_4(Boolean):
97995
98045
  fluent_name = 'active'
97996
98046
  _python_name = 'active'
97997
98047
 
97998
- class parameters_12_child(Real):
98048
+ class parameters_13_child(Real):
97999
98049
  """
98000
98050
  'child_object_type' of parameters.
98001
98051
  """
@@ -98003,7 +98053,7 @@ class parameters_12_child(Real):
98003
98053
  fluent_name = 'child-object-type'
98004
98054
  _python_name = 'parameters_child'
98005
98055
 
98006
- class parameters_12(NamedObject[parameters_12_child], CreatableNamedObjectMixin[parameters_12_child]):
98056
+ class parameters_13(NamedObject[parameters_13_child], CreatableNamedObjectMixin[parameters_13_child]):
98007
98057
  """
98008
98058
  Parameter values of the given condition.
98009
98059
  """
@@ -98019,7 +98069,7 @@ class parameters_12(NamedObject[parameters_12_child], CreatableNamedObjectMixin[
98019
98069
  list_properties=list_properties,
98020
98070
  make_a_copy=make_a_copy,
98021
98071
  )
98022
- child_object_type = parameters_12_child
98072
+ child_object_type = parameters_13_child
98023
98073
 
98024
98074
  class conditions_2_child(Group):
98025
98075
  """
@@ -98032,7 +98082,7 @@ class conditions_2_child(Group):
98032
98082
  _child_classes = dict(
98033
98083
  id=id_1,
98034
98084
  active=active_4,
98035
- parameters=parameters_12,
98085
+ parameters=parameters_13,
98036
98086
  )
98037
98087
 
98038
98088
  class conditions_2(ListObject[conditions_2_child]):
@@ -98060,7 +98110,7 @@ class operating_conditions_1(Group):
98060
98110
  _child_classes = dict(
98061
98111
  count=count_1,
98062
98112
  parameters_count=parameters_count,
98063
- parameters=parameters_11,
98113
+ parameters=parameters_12,
98064
98114
  conditions=conditions_2,
98065
98115
  )
98066
98116