ansys-fluent-core 0.30.dev0__py3-none-any.whl → 0.30.dev1__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 +6 -6
- ansys/fluent/core/_version.py +1 -1
- ansys/fluent/core/filereader/case_file.py +28 -6
- ansys/fluent/core/filereader/casereader.py +1 -1
- ansys/fluent/core/fluent_connection.py +1 -1
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +16 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +10 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +33 -5
- ansys/fluent/core/generated/solver/settings_252.py +1842 -593
- ansys/fluent/core/generated/solver/settings_252.pyi +1052 -453
- ansys/fluent/core/generated/solver/tui_252.py +60 -22
- ansys/fluent/core/launcher/launcher.py +1 -1
- ansys/fluent/core/launcher/launcher_utils.py +2 -2
- ansys/fluent/core/post_objects/meta.py +6 -6
- ansys/fluent/core/services/deprecated_field_data.py +1 -1
- ansys/fluent/core/services/solution_variables.py +1 -1
- ansys/fluent/core/session.py +4 -1
- ansys/fluent/core/session_solver.py +1 -1
- ansys/fluent/core/solver/flobject.py +4 -1
- ansys/fluent/core/streaming_services/events_streaming.py +1 -1
- ansys/fluent/core/utils/deprecate.py +1 -1
- ansys/fluent/core/utils/file_transfer_service.py +4 -4
- ansys/fluent/core/workflow.py +4 -1
- {ansys_fluent_core-0.30.dev0.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/METADATA +2 -2
- {ansys_fluent_core-0.30.dev0.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/RECORD +30 -30
- /ansys/fluent/core/{warnings.py → pyfluent_warnings.py} +0 -0
- {ansys_fluent_core-0.30.dev0.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.30.dev0.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/WHEEL +0 -0
|
@@ -2674,7 +2674,7 @@ class general(Group):
|
|
|
2674
2674
|
adjust_solver_defaults_based_on_setup: adjust_solver_defaults_based_on_setup
|
|
2675
2675
|
operating_conditions: operating_conditions
|
|
2676
2676
|
units: units
|
|
2677
|
-
class
|
|
2677
|
+
class model(String, AllowedValuesMixin):
|
|
2678
2678
|
version: str
|
|
2679
2679
|
fluent_name: str
|
|
2680
2680
|
_python_name: str
|
|
@@ -3234,6 +3234,26 @@ class mt_cav_p_vap_udf(String, AllowedValuesMixin):
|
|
|
3234
3234
|
version: str
|
|
3235
3235
|
fluent_name: str
|
|
3236
3236
|
_python_name: str
|
|
3237
|
+
class mt_cav_p_vap_ptl_tabular_table_name(String, AllowedValuesMixin):
|
|
3238
|
+
version: str
|
|
3239
|
+
fluent_name: str
|
|
3240
|
+
_python_name: str
|
|
3241
|
+
class mt_cav_p_vap_ptl_tabular_sat_temp(String, AllowedValuesMixin):
|
|
3242
|
+
version: str
|
|
3243
|
+
fluent_name: str
|
|
3244
|
+
_python_name: str
|
|
3245
|
+
class mt_cav_p_vap_ptl_tabular_sat_press(String, AllowedValuesMixin):
|
|
3246
|
+
version: str
|
|
3247
|
+
fluent_name: str
|
|
3248
|
+
_python_name: str
|
|
3249
|
+
class mt_cav_p_vap_ptl_tabular_lat_heat(String, AllowedValuesMixin):
|
|
3250
|
+
version: str
|
|
3251
|
+
fluent_name: str
|
|
3252
|
+
_python_name: str
|
|
3253
|
+
class mt_cav_p_vap_rgp_data_set(String, AllowedValuesMixin):
|
|
3254
|
+
version: str
|
|
3255
|
+
fluent_name: str
|
|
3256
|
+
_python_name: str
|
|
3237
3257
|
class mt_cav_p_vap_polynomial(Group):
|
|
3238
3258
|
version: str
|
|
3239
3259
|
fluent_name: str
|
|
@@ -3241,6 +3261,20 @@ class mt_cav_p_vap_polynomial(Group):
|
|
|
3241
3261
|
child_names: list[str]
|
|
3242
3262
|
function_of: function_of
|
|
3243
3263
|
coefficients: coefficients
|
|
3264
|
+
class mt_cav_p_vap_piecewise_polynomial(Group):
|
|
3265
|
+
version: str
|
|
3266
|
+
fluent_name: str
|
|
3267
|
+
_python_name: str
|
|
3268
|
+
child_names: list[str]
|
|
3269
|
+
function_of: function_of
|
|
3270
|
+
range: range
|
|
3271
|
+
class mt_cav_p_vap_piecewise_linear(Group):
|
|
3272
|
+
version: str
|
|
3273
|
+
fluent_name: str
|
|
3274
|
+
_python_name: str
|
|
3275
|
+
child_names: list[str]
|
|
3276
|
+
function_of: function_of_1
|
|
3277
|
+
data_points: data_points
|
|
3244
3278
|
class mt_cav_mod_opt(String, AllowedValuesMixin):
|
|
3245
3279
|
version: str
|
|
3246
3280
|
fluent_name: str
|
|
@@ -3273,6 +3307,18 @@ class mt_cav_turb_coeff(Real):
|
|
|
3273
3307
|
version: str
|
|
3274
3308
|
fluent_name: str
|
|
3275
3309
|
_python_name: str
|
|
3310
|
+
class mt_cav_p_vap_taylor_sat_press(Real):
|
|
3311
|
+
version: str
|
|
3312
|
+
fluent_name: str
|
|
3313
|
+
_python_name: str
|
|
3314
|
+
class mt_cav_p_vap_taylor_fs_temp(Real):
|
|
3315
|
+
version: str
|
|
3316
|
+
fluent_name: str
|
|
3317
|
+
_python_name: str
|
|
3318
|
+
class mt_cav_p_vap_taylor_tcoeff(Real):
|
|
3319
|
+
version: str
|
|
3320
|
+
fluent_name: str
|
|
3321
|
+
_python_name: str
|
|
3276
3322
|
class mt_cav_group(Group):
|
|
3277
3323
|
version: str
|
|
3278
3324
|
fluent_name: str
|
|
@@ -3281,7 +3327,14 @@ class mt_cav_group(Group):
|
|
|
3281
3327
|
mt_cav_p_vap: mt_cav_p_vap
|
|
3282
3328
|
mt_cav_p_vap_constant: mt_cav_p_vap_constant
|
|
3283
3329
|
mt_cav_p_vap_udf: mt_cav_p_vap_udf
|
|
3330
|
+
mt_cav_p_vap_ptl_tabular_table_name: mt_cav_p_vap_ptl_tabular_table_name
|
|
3331
|
+
mt_cav_p_vap_ptl_tabular_sat_temp: mt_cav_p_vap_ptl_tabular_sat_temp
|
|
3332
|
+
mt_cav_p_vap_ptl_tabular_sat_press: mt_cav_p_vap_ptl_tabular_sat_press
|
|
3333
|
+
mt_cav_p_vap_ptl_tabular_lat_heat: mt_cav_p_vap_ptl_tabular_lat_heat
|
|
3334
|
+
mt_cav_p_vap_rgp_data_set: mt_cav_p_vap_rgp_data_set
|
|
3284
3335
|
mt_cav_p_vap_polynomial: mt_cav_p_vap_polynomial
|
|
3336
|
+
mt_cav_p_vap_piecewise_polynomial: mt_cav_p_vap_piecewise_polynomial
|
|
3337
|
+
mt_cav_p_vap_piecewise_linear: mt_cav_p_vap_piecewise_linear
|
|
3285
3338
|
mt_cav_mod_opt: mt_cav_mod_opt
|
|
3286
3339
|
mt_cav_schnerr_bub_num_den: mt_cav_schnerr_bub_num_den
|
|
3287
3340
|
mt_cav_zwart_bub_dia: mt_cav_zwart_bub_dia
|
|
@@ -3290,6 +3343,9 @@ class mt_cav_group(Group):
|
|
|
3290
3343
|
mt_cav_zwart_cond_coeff: mt_cav_zwart_cond_coeff
|
|
3291
3344
|
mt_cav_turb_factor: mt_cav_turb_factor
|
|
3292
3345
|
mt_cav_turb_coeff: mt_cav_turb_coeff
|
|
3346
|
+
mt_cav_p_vap_taylor_sat_press: mt_cav_p_vap_taylor_sat_press
|
|
3347
|
+
mt_cav_p_vap_taylor_fs_temp: mt_cav_p_vap_taylor_fs_temp
|
|
3348
|
+
mt_cav_p_vap_taylor_tcoeff: mt_cav_p_vap_taylor_tcoeff
|
|
3293
3349
|
class mass_transfer_list_child(Group):
|
|
3294
3350
|
version: str
|
|
3295
3351
|
fluent_name: str
|
|
@@ -3395,7 +3451,7 @@ class multiphase(Group):
|
|
|
3395
3451
|
fluent_name: str
|
|
3396
3452
|
_python_name: str
|
|
3397
3453
|
child_names: list[str]
|
|
3398
|
-
|
|
3454
|
+
model: model
|
|
3399
3455
|
vaporization_pressure: vaporization_pressure
|
|
3400
3456
|
non_condensable_gas: non_condensable_gas
|
|
3401
3457
|
liquid_surface_tension: liquid_surface_tension
|
|
@@ -3410,6 +3466,7 @@ class multiphase(Group):
|
|
|
3410
3466
|
phase_interaction: phase_interaction
|
|
3411
3467
|
wet_steam_settings: wet_steam_settings
|
|
3412
3468
|
wet_steam_enabled: wet_steam_enabled
|
|
3469
|
+
_child_aliases: dict
|
|
3413
3470
|
class enabled(Boolean):
|
|
3414
3471
|
version: str
|
|
3415
3472
|
fluent_name: str
|
|
@@ -3446,7 +3503,7 @@ class set_verbosity(Integer):
|
|
|
3446
3503
|
version: str
|
|
3447
3504
|
fluent_name: str
|
|
3448
3505
|
_python_name: str
|
|
3449
|
-
class
|
|
3506
|
+
class model_1(String, AllowedValuesMixin):
|
|
3450
3507
|
version: str
|
|
3451
3508
|
fluent_name: str
|
|
3452
3509
|
_python_name: str
|
|
@@ -3508,7 +3565,7 @@ class translational_vibrational_energy_relaxation(Group):
|
|
|
3508
3565
|
fluent_name: str
|
|
3509
3566
|
_python_name: str
|
|
3510
3567
|
child_names: list[str]
|
|
3511
|
-
model:
|
|
3568
|
+
model: model_1
|
|
3512
3569
|
expert: expert
|
|
3513
3570
|
class two_temperature(Group):
|
|
3514
3571
|
version: str
|
|
@@ -3531,7 +3588,7 @@ class energy(Group):
|
|
|
3531
3588
|
kinetic_energy: kinetic_energy
|
|
3532
3589
|
inlet_diffusion: inlet_diffusion
|
|
3533
3590
|
two_temperature: two_temperature
|
|
3534
|
-
class
|
|
3591
|
+
class model_2(String, AllowedValuesMixin):
|
|
3535
3592
|
version: str
|
|
3536
3593
|
fluent_name: str
|
|
3537
3594
|
_python_name: str
|
|
@@ -3547,21 +3604,22 @@ class k_omega_model(String, AllowedValuesMixin):
|
|
|
3547
3604
|
version: str
|
|
3548
3605
|
fluent_name: str
|
|
3549
3606
|
_python_name: str
|
|
3550
|
-
class
|
|
3607
|
+
class k_omega_low_re_correction(Boolean):
|
|
3551
3608
|
version: str
|
|
3552
3609
|
fluent_name: str
|
|
3553
3610
|
_python_name: str
|
|
3554
|
-
class
|
|
3611
|
+
class k_omega_shear_correction(Boolean):
|
|
3555
3612
|
version: str
|
|
3556
3613
|
fluent_name: str
|
|
3557
3614
|
_python_name: str
|
|
3558
|
-
class
|
|
3615
|
+
class k_omega(Group):
|
|
3559
3616
|
version: str
|
|
3560
3617
|
fluent_name: str
|
|
3561
3618
|
_python_name: str
|
|
3562
3619
|
child_names: list[str]
|
|
3563
|
-
|
|
3564
|
-
|
|
3620
|
+
k_omega_low_re_correction: k_omega_low_re_correction
|
|
3621
|
+
k_omega_shear_correction: k_omega_shear_correction
|
|
3622
|
+
_child_aliases: dict
|
|
3565
3623
|
class wall_distance_free(Boolean):
|
|
3566
3624
|
version: str
|
|
3567
3625
|
fluent_name: str
|
|
@@ -3582,7 +3640,7 @@ class expression_1(Real):
|
|
|
3582
3640
|
version: str
|
|
3583
3641
|
fluent_name: str
|
|
3584
3642
|
_python_name: str
|
|
3585
|
-
class
|
|
3643
|
+
class user_defined_3(String, AllowedValuesMixin):
|
|
3586
3644
|
version: str
|
|
3587
3645
|
fluent_name: str
|
|
3588
3646
|
_python_name: str
|
|
@@ -3594,7 +3652,7 @@ class csep(Group):
|
|
|
3594
3652
|
option: option_6
|
|
3595
3653
|
value: value_2
|
|
3596
3654
|
expression: expression_1
|
|
3597
|
-
user_defined:
|
|
3655
|
+
user_defined: user_defined_3
|
|
3598
3656
|
class option_7(String, AllowedValuesMixin):
|
|
3599
3657
|
version: str
|
|
3600
3658
|
fluent_name: str
|
|
@@ -3607,7 +3665,7 @@ class expression_2(Real):
|
|
|
3607
3665
|
version: str
|
|
3608
3666
|
fluent_name: str
|
|
3609
3667
|
_python_name: str
|
|
3610
|
-
class
|
|
3668
|
+
class user_defined_4(String, AllowedValuesMixin):
|
|
3611
3669
|
version: str
|
|
3612
3670
|
fluent_name: str
|
|
3613
3671
|
_python_name: str
|
|
@@ -3619,7 +3677,7 @@ class cnw(Group):
|
|
|
3619
3677
|
option: option_7
|
|
3620
3678
|
value: value_3
|
|
3621
3679
|
expression: expression_2
|
|
3622
|
-
user_defined:
|
|
3680
|
+
user_defined: user_defined_4
|
|
3623
3681
|
class option_8(String, AllowedValuesMixin):
|
|
3624
3682
|
version: str
|
|
3625
3683
|
fluent_name: str
|
|
@@ -3632,7 +3690,7 @@ class expression_3(Real):
|
|
|
3632
3690
|
version: str
|
|
3633
3691
|
fluent_name: str
|
|
3634
3692
|
_python_name: str
|
|
3635
|
-
class
|
|
3693
|
+
class user_defined_5(String, AllowedValuesMixin):
|
|
3636
3694
|
version: str
|
|
3637
3695
|
fluent_name: str
|
|
3638
3696
|
_python_name: str
|
|
@@ -3644,7 +3702,7 @@ class cmix(Group):
|
|
|
3644
3702
|
option: option_8
|
|
3645
3703
|
value: value_4
|
|
3646
3704
|
expression: expression_3
|
|
3647
|
-
user_defined:
|
|
3705
|
+
user_defined: user_defined_5
|
|
3648
3706
|
class cjet(Real):
|
|
3649
3707
|
version: str
|
|
3650
3708
|
fluent_name: str
|
|
@@ -3657,7 +3715,7 @@ class expression_4(Real):
|
|
|
3657
3715
|
version: str
|
|
3658
3716
|
fluent_name: str
|
|
3659
3717
|
_python_name: str
|
|
3660
|
-
class
|
|
3718
|
+
class user_defined_6(String, AllowedValuesMixin):
|
|
3661
3719
|
version: str
|
|
3662
3720
|
fluent_name: str
|
|
3663
3721
|
_python_name: str
|
|
@@ -3668,7 +3726,7 @@ class blending_function(Group):
|
|
|
3668
3726
|
child_names: list[str]
|
|
3669
3727
|
option: option_9
|
|
3670
3728
|
expression: expression_4
|
|
3671
|
-
user_defined:
|
|
3729
|
+
user_defined: user_defined_6
|
|
3672
3730
|
class creal(Real):
|
|
3673
3731
|
version: str
|
|
3674
3732
|
fluent_name: str
|
|
@@ -3699,7 +3757,7 @@ class auxiliary_constants(Group):
|
|
|
3699
3757
|
cjet_aux: cjet_aux
|
|
3700
3758
|
cbf_lam: cbf_lam
|
|
3701
3759
|
cbf_tur: cbf_tur
|
|
3702
|
-
class
|
|
3760
|
+
class geko(Group):
|
|
3703
3761
|
version: str
|
|
3704
3762
|
fluent_name: str
|
|
3705
3763
|
_python_name: str
|
|
@@ -3726,7 +3784,7 @@ class swirl_dominated_flow(Boolean):
|
|
|
3726
3784
|
version: str
|
|
3727
3785
|
fluent_name: str
|
|
3728
3786
|
_python_name: str
|
|
3729
|
-
class
|
|
3787
|
+
class rng(Group):
|
|
3730
3788
|
version: str
|
|
3731
3789
|
fluent_name: str
|
|
3732
3790
|
_python_name: str
|
|
@@ -3737,7 +3795,7 @@ class wall_treatment(String, AllowedValuesMixin):
|
|
|
3737
3795
|
version: str
|
|
3738
3796
|
fluent_name: str
|
|
3739
3797
|
_python_name: str
|
|
3740
|
-
class
|
|
3798
|
+
class user_defined_7(String, AllowedValuesMixin):
|
|
3741
3799
|
version: str
|
|
3742
3800
|
fluent_name: str
|
|
3743
3801
|
_python_name: str
|
|
@@ -3770,11 +3828,11 @@ class near_wall_treatment(Group):
|
|
|
3770
3828
|
_python_name: str
|
|
3771
3829
|
child_names: list[str]
|
|
3772
3830
|
wall_treatment: wall_treatment
|
|
3773
|
-
user_defined:
|
|
3831
|
+
user_defined: user_defined_7
|
|
3774
3832
|
enhanced_wall_treatment_options: enhanced_wall_treatment_options
|
|
3775
3833
|
wall_omega_treatment: wall_omega_treatment
|
|
3776
3834
|
use_second_cell_off_a_wall_quantities: use_second_cell_off_a_wall_quantities
|
|
3777
|
-
class
|
|
3835
|
+
class reynolds_stress(String, AllowedValuesMixin):
|
|
3778
3836
|
version: str
|
|
3779
3837
|
fluent_name: str
|
|
3780
3838
|
_python_name: str
|
|
@@ -3847,7 +3905,7 @@ class reynolds_stress_options(Group):
|
|
|
3847
3905
|
child_names: list[str]
|
|
3848
3906
|
solve_tke: solve_tke
|
|
3849
3907
|
wall_echo: wall_echo
|
|
3850
|
-
class
|
|
3908
|
+
class rans(String, AllowedValuesMixin):
|
|
3851
3909
|
version: str
|
|
3852
3910
|
fluent_name: str
|
|
3853
3911
|
_python_name: str
|
|
@@ -3855,17 +3913,18 @@ class all_len_modified(Boolean):
|
|
|
3855
3913
|
version: str
|
|
3856
3914
|
fluent_name: str
|
|
3857
3915
|
_python_name: str
|
|
3858
|
-
class
|
|
3916
|
+
class des_limiter(String, AllowedValuesMixin):
|
|
3859
3917
|
version: str
|
|
3860
3918
|
fluent_name: str
|
|
3861
3919
|
_python_name: str
|
|
3862
|
-
class
|
|
3920
|
+
class des(Group):
|
|
3863
3921
|
version: str
|
|
3864
3922
|
fluent_name: str
|
|
3865
3923
|
_python_name: str
|
|
3866
3924
|
child_names: list[str]
|
|
3867
3925
|
all_len_modified: all_len_modified
|
|
3868
|
-
|
|
3926
|
+
des_limiter: des_limiter
|
|
3927
|
+
_child_aliases: dict
|
|
3869
3928
|
class transition_module(String, AllowedValuesMixin):
|
|
3870
3929
|
version: str
|
|
3871
3930
|
fluent_name: str
|
|
@@ -3878,7 +3937,7 @@ class hybrid_model(String, AllowedValuesMixin):
|
|
|
3878
3937
|
version: str
|
|
3879
3938
|
fluent_name: str
|
|
3880
3939
|
_python_name: str
|
|
3881
|
-
class
|
|
3940
|
+
class user_defined_8(String, AllowedValuesMixin):
|
|
3882
3941
|
version: str
|
|
3883
3942
|
fluent_name: str
|
|
3884
3943
|
_python_name: str
|
|
@@ -3894,13 +3953,13 @@ class les_subgrid_dynamic_fvar(Boolean):
|
|
|
3894
3953
|
version: str
|
|
3895
3954
|
fluent_name: str
|
|
3896
3955
|
_python_name: str
|
|
3897
|
-
class
|
|
3956
|
+
class sbes(Group):
|
|
3898
3957
|
version: str
|
|
3899
3958
|
fluent_name: str
|
|
3900
3959
|
_python_name: str
|
|
3901
3960
|
child_names: list[str]
|
|
3902
3961
|
hybrid_model: hybrid_model
|
|
3903
|
-
user_defined:
|
|
3962
|
+
user_defined: user_defined_8
|
|
3904
3963
|
update_interval_k_omega: update_interval_k_omega
|
|
3905
3964
|
les_subgrid_scale_model: les_subgrid_scale_model
|
|
3906
3965
|
les_subgrid_dynamic_fvar: les_subgrid_dynamic_fvar
|
|
@@ -3948,7 +4007,7 @@ class expression_5(Real):
|
|
|
3948
4007
|
version: str
|
|
3949
4008
|
fluent_name: str
|
|
3950
4009
|
_python_name: str
|
|
3951
|
-
class
|
|
4010
|
+
class user_defined_9(String, AllowedValuesMixin):
|
|
3952
4011
|
version: str
|
|
3953
4012
|
fluent_name: str
|
|
3954
4013
|
_python_name: str
|
|
@@ -3960,7 +4019,7 @@ class ccurv(Group):
|
|
|
3960
4019
|
option: option_10
|
|
3961
4020
|
value: value_5
|
|
3962
4021
|
expression: expression_5
|
|
3963
|
-
user_defined:
|
|
4022
|
+
user_defined: user_defined_9
|
|
3964
4023
|
class curvature_correction(Group):
|
|
3965
4024
|
version: str
|
|
3966
4025
|
fluent_name: str
|
|
@@ -3984,7 +4043,7 @@ class expression_6(Real):
|
|
|
3984
4043
|
version: str
|
|
3985
4044
|
fluent_name: str
|
|
3986
4045
|
_python_name: str
|
|
3987
|
-
class
|
|
4046
|
+
class user_defined_10(String, AllowedValuesMixin):
|
|
3988
4047
|
version: str
|
|
3989
4048
|
fluent_name: str
|
|
3990
4049
|
_python_name: str
|
|
@@ -3996,7 +4055,7 @@ class ccorner(Group):
|
|
|
3996
4055
|
option: option_11
|
|
3997
4056
|
value: value_6
|
|
3998
4057
|
expression: expression_6
|
|
3999
|
-
user_defined:
|
|
4058
|
+
user_defined: user_defined_10
|
|
4000
4059
|
class corner_flow_correction(Group):
|
|
4001
4060
|
version: str
|
|
4002
4061
|
fluent_name: str
|
|
@@ -4216,7 +4275,7 @@ class rv1_switch(Real):
|
|
|
4216
4275
|
version: str
|
|
4217
4276
|
fluent_name: str
|
|
4218
4277
|
_python_name: str
|
|
4219
|
-
class
|
|
4278
|
+
class transition(Group):
|
|
4220
4279
|
version: str
|
|
4221
4280
|
fluent_name: str
|
|
4222
4281
|
_python_name: str
|
|
@@ -4248,7 +4307,7 @@ class geometric_roughness_ht_val(Real):
|
|
|
4248
4307
|
version: str
|
|
4249
4308
|
fluent_name: str
|
|
4250
4309
|
_python_name: str
|
|
4251
|
-
class
|
|
4310
|
+
class transition_sst(Group):
|
|
4252
4311
|
version: str
|
|
4253
4312
|
fluent_name: str
|
|
4254
4313
|
_python_name: str
|
|
@@ -4260,11 +4319,11 @@ class subgrid_scale_turb_visc(String, AllowedValuesMixin):
|
|
|
4260
4319
|
version: str
|
|
4261
4320
|
fluent_name: str
|
|
4262
4321
|
_python_name: str
|
|
4263
|
-
class
|
|
4322
|
+
class turb_visc_mf_child(String, AllowedValuesMixin):
|
|
4264
4323
|
version: str
|
|
4265
4324
|
fluent_name: str
|
|
4266
4325
|
_python_name: str
|
|
4267
|
-
class
|
|
4326
|
+
class turb_visc_mf(NamedObject[turb_visc_mf_child]):
|
|
4268
4327
|
version: str
|
|
4269
4328
|
fluent_name: str
|
|
4270
4329
|
_python_name: str
|
|
@@ -4322,8 +4381,8 @@ class turb_visc_func_mf(NamedObject[turb_visc_func_mf_child]):
|
|
|
4322
4381
|
to : str
|
|
4323
4382
|
Specify the name of the new object.
|
|
4324
4383
|
"""
|
|
4325
|
-
child_object_type:
|
|
4326
|
-
class
|
|
4384
|
+
child_object_type: turb_visc_mf_child
|
|
4385
|
+
class turb_visc(String, AllowedValuesMixin):
|
|
4327
4386
|
version: str
|
|
4328
4387
|
fluent_name: str
|
|
4329
4388
|
_python_name: str
|
|
@@ -4351,20 +4410,21 @@ class turbulent_schmidt(String, AllowedValuesMixin):
|
|
|
4351
4410
|
version: str
|
|
4352
4411
|
fluent_name: str
|
|
4353
4412
|
_python_name: str
|
|
4354
|
-
class
|
|
4413
|
+
class user_defined_functions(Group):
|
|
4355
4414
|
version: str
|
|
4356
4415
|
fluent_name: str
|
|
4357
4416
|
_python_name: str
|
|
4358
4417
|
child_names: list[str]
|
|
4359
4418
|
subgrid_scale_turb_visc: subgrid_scale_turb_visc
|
|
4360
|
-
|
|
4361
|
-
|
|
4419
|
+
turb_visc_mf: turb_visc_mf
|
|
4420
|
+
turb_visc: turb_visc
|
|
4362
4421
|
tke_prandtl: tke_prandtl
|
|
4363
4422
|
tdr_prandtl: tdr_prandtl
|
|
4364
4423
|
sdr_prandtl: sdr_prandtl
|
|
4365
4424
|
energy_prandtl: energy_prandtl
|
|
4366
4425
|
wall_prandtl: wall_prandtl
|
|
4367
4426
|
turbulent_schmidt: turbulent_schmidt
|
|
4427
|
+
_child_aliases: dict
|
|
4368
4428
|
class sa_enhanced_wall_treatment(Boolean):
|
|
4369
4429
|
version: str
|
|
4370
4430
|
fluent_name: str
|
|
@@ -4378,33 +4438,34 @@ class viscous(Group):
|
|
|
4378
4438
|
fluent_name: str
|
|
4379
4439
|
_python_name: str
|
|
4380
4440
|
child_names: list[str]
|
|
4381
|
-
model:
|
|
4441
|
+
model: model_2
|
|
4382
4442
|
spalart_allmaras_production: spalart_allmaras_production
|
|
4383
4443
|
k_epsilon_model: k_epsilon_model
|
|
4384
4444
|
k_omega_model: k_omega_model
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4445
|
+
k_omega: k_omega
|
|
4446
|
+
geko: geko
|
|
4447
|
+
rng: rng
|
|
4388
4448
|
near_wall_treatment: near_wall_treatment
|
|
4389
|
-
|
|
4449
|
+
reynolds_stress: reynolds_stress
|
|
4390
4450
|
subgrid_scale_model: subgrid_scale_model
|
|
4391
4451
|
les_model_options: les_model_options
|
|
4392
4452
|
reynolds_stress_options: reynolds_stress_options
|
|
4393
|
-
|
|
4394
|
-
|
|
4453
|
+
rans: rans
|
|
4454
|
+
des: des
|
|
4395
4455
|
transition_module: transition_module
|
|
4396
4456
|
hybrid_rans_les: hybrid_rans_les
|
|
4397
|
-
|
|
4457
|
+
sbes: sbes
|
|
4398
4458
|
user_defined_transition: user_defined_transition
|
|
4399
4459
|
options: options_1
|
|
4400
4460
|
multiphase_turbulence: multiphase_turbulence
|
|
4401
4461
|
turbulence_expert: turbulence_expert
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4462
|
+
transition: transition
|
|
4463
|
+
transition_sst: transition_sst
|
|
4464
|
+
user_defined_functions: user_defined_functions
|
|
4405
4465
|
sa_enhanced_wall_treatment: sa_enhanced_wall_treatment
|
|
4406
4466
|
sa_damping: sa_damping
|
|
4407
|
-
|
|
4467
|
+
_child_aliases: dict
|
|
4468
|
+
class model_3(String, AllowedValuesMixin):
|
|
4408
4469
|
version: str
|
|
4409
4470
|
fluent_name: str
|
|
4410
4471
|
_python_name: str
|
|
@@ -4520,7 +4581,7 @@ class acoustics(Group):
|
|
|
4520
4581
|
_python_name: str
|
|
4521
4582
|
child_names: list[str]
|
|
4522
4583
|
command_names: list[str]
|
|
4523
|
-
model:
|
|
4584
|
+
model: model_3
|
|
4524
4585
|
export_source_data: export_source_data
|
|
4525
4586
|
fwh_options: fwh_options
|
|
4526
4587
|
def sources(self, source_zones: list[int]):
|
|
@@ -4532,7 +4593,7 @@ class acoustics(Group):
|
|
|
4532
4593
|
source_zones : List
|
|
4533
4594
|
Specify source zones for FW-H model or for data export.
|
|
4534
4595
|
"""
|
|
4535
|
-
class
|
|
4596
|
+
class model_4(String, AllowedValuesMixin):
|
|
4536
4597
|
version: str
|
|
4537
4598
|
fluent_name: str
|
|
4538
4599
|
_python_name: str
|
|
@@ -4925,7 +4986,7 @@ class polynomial_1(Group):
|
|
|
4925
4986
|
child_names: list[str]
|
|
4926
4987
|
function_of: function_of
|
|
4927
4988
|
coefficients: coefficients
|
|
4928
|
-
class
|
|
4989
|
+
class user_defined_11(String, AllowedValuesMixin):
|
|
4929
4990
|
version: str
|
|
4930
4991
|
fluent_name: str
|
|
4931
4992
|
_python_name: str
|
|
@@ -4938,12 +4999,12 @@ class direct_solar_irradiation(Group):
|
|
|
4938
4999
|
constant: constant
|
|
4939
5000
|
piecewise_linear: piecewise_linear
|
|
4940
5001
|
polynomial: polynomial_1
|
|
4941
|
-
user_defined:
|
|
5002
|
+
user_defined: user_defined_11
|
|
4942
5003
|
class option_14(String, AllowedValuesMixin):
|
|
4943
5004
|
version: str
|
|
4944
5005
|
fluent_name: str
|
|
4945
5006
|
_python_name: str
|
|
4946
|
-
class
|
|
5007
|
+
class user_defined_12(String, AllowedValuesMixin):
|
|
4947
5008
|
version: str
|
|
4948
5009
|
fluent_name: str
|
|
4949
5010
|
_python_name: str
|
|
@@ -4956,7 +5017,7 @@ class diffuse_solar_irradiation(Group):
|
|
|
4956
5017
|
constant: constant
|
|
4957
5018
|
piecewise_linear: piecewise_linear
|
|
4958
5019
|
polynomial: polynomial_1
|
|
4959
|
-
user_defined:
|
|
5020
|
+
user_defined: user_defined_12
|
|
4960
5021
|
class spectral_fraction(Real):
|
|
4961
5022
|
version: str
|
|
4962
5023
|
fluent_name: str
|
|
@@ -5138,7 +5199,7 @@ class radiation(Group):
|
|
|
5138
5199
|
fluent_name: str
|
|
5139
5200
|
_python_name: str
|
|
5140
5201
|
child_names: list[str]
|
|
5141
|
-
model:
|
|
5202
|
+
model: model_4
|
|
5142
5203
|
discrete_ordinates: discrete_ordinates
|
|
5143
5204
|
monte_carlo: monte_carlo
|
|
5144
5205
|
s2s: s2s
|
|
@@ -5218,7 +5279,7 @@ class number_vol_spec(Integer):
|
|
|
5218
5279
|
version: str
|
|
5219
5280
|
fluent_name: str
|
|
5220
5281
|
_python_name: str
|
|
5221
|
-
class
|
|
5282
|
+
class model_5(Group):
|
|
5222
5283
|
version: str
|
|
5223
5284
|
fluent_name: str
|
|
5224
5285
|
_python_name: str
|
|
@@ -6532,7 +6593,7 @@ class species(Group):
|
|
|
6532
6593
|
_python_name: str
|
|
6533
6594
|
child_names: list[str]
|
|
6534
6595
|
command_names: list[str]
|
|
6535
|
-
model:
|
|
6596
|
+
model: model_5
|
|
6536
6597
|
options: options_2
|
|
6537
6598
|
reactions: reactions
|
|
6538
6599
|
wall_surface_options: wall_surface_options
|
|
@@ -7281,7 +7342,7 @@ class max_num_udf_species(Integer):
|
|
|
7281
7342
|
version: str
|
|
7282
7343
|
fluent_name: str
|
|
7283
7344
|
_python_name: str
|
|
7284
|
-
class
|
|
7345
|
+
class user_defined_functions_1(Group):
|
|
7285
7346
|
version: str
|
|
7286
7347
|
fluent_name: str
|
|
7287
7348
|
_python_name: str
|
|
@@ -8310,10 +8371,10 @@ class discrete_phase(Group):
|
|
|
8310
8371
|
tracking: tracking
|
|
8311
8372
|
numerics: numerics
|
|
8312
8373
|
parallel: parallel_1
|
|
8313
|
-
user_defined_functions:
|
|
8374
|
+
user_defined_functions: user_defined_functions_1
|
|
8314
8375
|
injections: injections
|
|
8315
8376
|
_child_aliases: dict
|
|
8316
|
-
class
|
|
8377
|
+
class enabled_21(Boolean):
|
|
8317
8378
|
version: str
|
|
8318
8379
|
fluent_name: str
|
|
8319
8380
|
_python_name: str
|
|
@@ -8709,14 +8770,15 @@ class virtual_blade_model(Group):
|
|
|
8709
8770
|
_python_name: str
|
|
8710
8771
|
child_names: list[str]
|
|
8711
8772
|
command_names: list[str]
|
|
8712
|
-
|
|
8773
|
+
enabled: enabled_21
|
|
8713
8774
|
mode: mode
|
|
8714
8775
|
rotor: rotor
|
|
8715
8776
|
def apply(self):
|
|
8716
8777
|
"""
|
|
8717
8778
|
Read and apply VBM setting.
|
|
8718
8779
|
"""
|
|
8719
|
-
|
|
8780
|
+
_child_aliases: dict
|
|
8781
|
+
class enable_11(Boolean):
|
|
8720
8782
|
version: str
|
|
8721
8783
|
fluent_name: str
|
|
8722
8784
|
_python_name: str
|
|
@@ -8873,13 +8935,17 @@ class optics(Group):
|
|
|
8873
8935
|
fluent_name: str
|
|
8874
8936
|
_python_name: str
|
|
8875
8937
|
child_names: list[str]
|
|
8876
|
-
enable:
|
|
8938
|
+
enable: enable_11
|
|
8877
8939
|
beams: beams
|
|
8878
8940
|
statistics: statistics
|
|
8879
8941
|
sampling_iterations: sampling_iterations
|
|
8880
8942
|
index_of_refraction: index_of_refraction
|
|
8881
8943
|
report: report
|
|
8882
8944
|
verbosity: verbosity_2
|
|
8945
|
+
class model_6(String, AllowedValuesMixin):
|
|
8946
|
+
version: str
|
|
8947
|
+
fluent_name: str
|
|
8948
|
+
_python_name: str
|
|
8883
8949
|
class thermal_effects_1(Boolean):
|
|
8884
8950
|
version: str
|
|
8885
8951
|
fluent_name: str
|
|
@@ -8955,11 +9021,11 @@ class structure(Group):
|
|
|
8955
9021
|
fluent_name: str
|
|
8956
9022
|
_python_name: str
|
|
8957
9023
|
child_names: list[str]
|
|
8958
|
-
model:
|
|
9024
|
+
model: model_6
|
|
8959
9025
|
options: options_4
|
|
8960
9026
|
controls: controls
|
|
8961
9027
|
expert: expert_3
|
|
8962
|
-
class
|
|
9028
|
+
class enabled_22(Boolean):
|
|
8963
9029
|
version: str
|
|
8964
9030
|
fluent_name: str
|
|
8965
9031
|
_python_name: str
|
|
@@ -8968,8 +9034,8 @@ class ablation(Group):
|
|
|
8968
9034
|
fluent_name: str
|
|
8969
9035
|
_python_name: str
|
|
8970
9036
|
child_names: list[str]
|
|
8971
|
-
enabled:
|
|
8972
|
-
class
|
|
9037
|
+
enabled: enabled_22
|
|
9038
|
+
class enabled_23(Boolean):
|
|
8973
9039
|
version: str
|
|
8974
9040
|
fluent_name: str
|
|
8975
9041
|
_python_name: str
|
|
@@ -9041,7 +9107,7 @@ class value_7(Real):
|
|
|
9041
9107
|
version: str
|
|
9042
9108
|
fluent_name: str
|
|
9043
9109
|
_python_name: str
|
|
9044
|
-
class
|
|
9110
|
+
class user_defined_13(String, AllowedValuesMixin):
|
|
9045
9111
|
version: str
|
|
9046
9112
|
fluent_name: str
|
|
9047
9113
|
_python_name: str
|
|
@@ -9052,7 +9118,7 @@ class cathode_ocv(Group):
|
|
|
9052
9118
|
child_names: list[str]
|
|
9053
9119
|
method: method_4
|
|
9054
9120
|
value: value_7
|
|
9055
|
-
user_defined:
|
|
9121
|
+
user_defined: user_defined_13
|
|
9056
9122
|
class anode_i0(Real):
|
|
9057
9123
|
version: str
|
|
9058
9124
|
fluent_name: str
|
|
@@ -9084,7 +9150,7 @@ class anode_ocv(Group):
|
|
|
9084
9150
|
child_names: list[str]
|
|
9085
9151
|
method: method_4
|
|
9086
9152
|
value: value_7
|
|
9087
|
-
user_defined:
|
|
9153
|
+
user_defined: user_defined_13
|
|
9088
9154
|
class linearized_bv_rate(Boolean):
|
|
9089
9155
|
version: str
|
|
9090
9156
|
fluent_name: str
|
|
@@ -9136,7 +9202,7 @@ class tplus(Group):
|
|
|
9136
9202
|
child_names: list[str]
|
|
9137
9203
|
method: method_4
|
|
9138
9204
|
value: value_7
|
|
9139
|
-
user_defined:
|
|
9205
|
+
user_defined: user_defined_13
|
|
9140
9206
|
class activity_term(Group):
|
|
9141
9207
|
version: str
|
|
9142
9208
|
fluent_name: str
|
|
@@ -9144,7 +9210,7 @@ class activity_term(Group):
|
|
|
9144
9210
|
child_names: list[str]
|
|
9145
9211
|
method: method_4
|
|
9146
9212
|
value: value_7
|
|
9147
|
-
user_defined:
|
|
9213
|
+
user_defined: user_defined_13
|
|
9148
9214
|
class material_property(Group):
|
|
9149
9215
|
version: str
|
|
9150
9216
|
fluent_name: str
|
|
@@ -10048,13 +10114,14 @@ class echemistry(Group):
|
|
|
10048
10114
|
fluent_name: str
|
|
10049
10115
|
_python_name: str
|
|
10050
10116
|
child_names: list[str]
|
|
10051
|
-
|
|
10117
|
+
enabled: enabled_23
|
|
10052
10118
|
joule_heating: joule_heating
|
|
10053
10119
|
li_battery_enabled: li_battery_enabled
|
|
10054
10120
|
echemistry_enabled: echemistry_enabled
|
|
10055
10121
|
lithium_battery: lithium_battery
|
|
10056
10122
|
electrolysis: electrolysis
|
|
10057
|
-
|
|
10123
|
+
_child_aliases: dict
|
|
10124
|
+
class enabled_24(Boolean):
|
|
10058
10125
|
version: str
|
|
10059
10126
|
fluent_name: str
|
|
10060
10127
|
_python_name: str
|
|
@@ -11056,7 +11123,7 @@ class anode_ds(Group):
|
|
|
11056
11123
|
value: value_7
|
|
11057
11124
|
piecewise_linear: piecewise_linear
|
|
11058
11125
|
polynomial: polynomial_1
|
|
11059
|
-
user_defined:
|
|
11126
|
+
user_defined: user_defined_13
|
|
11060
11127
|
_child_aliases: dict
|
|
11061
11128
|
class anode_ed(Real):
|
|
11062
11129
|
version: str
|
|
@@ -11075,7 +11142,7 @@ class anode_sigma(Group):
|
|
|
11075
11142
|
value: value_7
|
|
11076
11143
|
piecewise_linear: piecewise_linear
|
|
11077
11144
|
polynomial: polynomial_1
|
|
11078
|
-
user_defined:
|
|
11145
|
+
user_defined: user_defined_13
|
|
11079
11146
|
_child_aliases: dict
|
|
11080
11147
|
class anode_i0_1(Real):
|
|
11081
11148
|
version: str
|
|
@@ -11102,7 +11169,7 @@ class anode_ocv_1(Group):
|
|
|
11102
11169
|
value: value_7
|
|
11103
11170
|
piecewise_linear: piecewise_linear
|
|
11104
11171
|
polynomial: polynomial_1
|
|
11105
|
-
user_defined:
|
|
11172
|
+
user_defined: user_defined_13
|
|
11106
11173
|
_child_aliases: dict
|
|
11107
11174
|
class cathode_thickness(Real):
|
|
11108
11175
|
version: str
|
|
@@ -11161,7 +11228,7 @@ class cathode_ds(Group):
|
|
|
11161
11228
|
value: value_7
|
|
11162
11229
|
piecewise_linear: piecewise_linear
|
|
11163
11230
|
polynomial: polynomial_1
|
|
11164
|
-
user_defined:
|
|
11231
|
+
user_defined: user_defined_13
|
|
11165
11232
|
_child_aliases: dict
|
|
11166
11233
|
class cathode_ed(Real):
|
|
11167
11234
|
version: str
|
|
@@ -11180,7 +11247,7 @@ class cathode_sigma(Group):
|
|
|
11180
11247
|
value: value_7
|
|
11181
11248
|
piecewise_linear: piecewise_linear
|
|
11182
11249
|
polynomial: polynomial_1
|
|
11183
|
-
user_defined:
|
|
11250
|
+
user_defined: user_defined_13
|
|
11184
11251
|
_child_aliases: dict
|
|
11185
11252
|
class cathode_i0_1(Real):
|
|
11186
11253
|
version: str
|
|
@@ -11207,7 +11274,7 @@ class cathode_ocv_1(Group):
|
|
|
11207
11274
|
value: value_7
|
|
11208
11275
|
piecewise_linear: piecewise_linear
|
|
11209
11276
|
polynomial: polynomial_1
|
|
11210
|
-
user_defined:
|
|
11277
|
+
user_defined: user_defined_13
|
|
11211
11278
|
_child_aliases: dict
|
|
11212
11279
|
class electrolyte_thickness(Real):
|
|
11213
11280
|
version: str
|
|
@@ -11238,7 +11305,7 @@ class electrolyte_de(Group):
|
|
|
11238
11305
|
value: value_7
|
|
11239
11306
|
piecewise_linear: piecewise_linear
|
|
11240
11307
|
polynomial: polynomial_1
|
|
11241
|
-
user_defined:
|
|
11308
|
+
user_defined: user_defined_13
|
|
11242
11309
|
_child_aliases: dict
|
|
11243
11310
|
class electrolyte_t_plus(Group):
|
|
11244
11311
|
version: str
|
|
@@ -11249,7 +11316,7 @@ class electrolyte_t_plus(Group):
|
|
|
11249
11316
|
value: value_7
|
|
11250
11317
|
piecewise_linear: piecewise_linear
|
|
11251
11318
|
polynomial: polynomial_1
|
|
11252
|
-
user_defined:
|
|
11319
|
+
user_defined: user_defined_13
|
|
11253
11320
|
_child_aliases: dict
|
|
11254
11321
|
class electrolyte_sigma(Group):
|
|
11255
11322
|
version: str
|
|
@@ -11260,7 +11327,7 @@ class electrolyte_sigma(Group):
|
|
|
11260
11327
|
value: value_7
|
|
11261
11328
|
piecewise_linear: piecewise_linear
|
|
11262
11329
|
polynomial: polynomial_1
|
|
11263
|
-
user_defined:
|
|
11330
|
+
user_defined: user_defined_13
|
|
11264
11331
|
_child_aliases: dict
|
|
11265
11332
|
class electrolyte_activity(Group):
|
|
11266
11333
|
version: str
|
|
@@ -11271,7 +11338,7 @@ class electrolyte_activity(Group):
|
|
|
11271
11338
|
value: value_7
|
|
11272
11339
|
piecewise_linear: piecewise_linear
|
|
11273
11340
|
polynomial: polynomial_1
|
|
11274
|
-
user_defined:
|
|
11341
|
+
user_defined: user_defined_13
|
|
11275
11342
|
_child_aliases: dict
|
|
11276
11343
|
class analytical_cs(Boolean):
|
|
11277
11344
|
version: str
|
|
@@ -11900,7 +11967,7 @@ class option_settings(Group):
|
|
|
11900
11967
|
q_correct_enabled: q_correct_enabled
|
|
11901
11968
|
heat_correct_table: heat_correct_table
|
|
11902
11969
|
entropic_heat: entropic_heat
|
|
11903
|
-
class
|
|
11970
|
+
class enabled_27(Boolean):
|
|
11904
11971
|
version: str
|
|
11905
11972
|
fluent_name: str
|
|
11906
11973
|
_python_name: str
|
|
@@ -11937,7 +12004,7 @@ class cell_clustering(Group):
|
|
|
11937
12004
|
fluent_name: str
|
|
11938
12005
|
_python_name: str
|
|
11939
12006
|
child_names: list[str]
|
|
11940
|
-
enabled:
|
|
12007
|
+
enabled: enabled_27
|
|
11941
12008
|
clustering_type: clustering_type
|
|
11942
12009
|
nx: nx
|
|
11943
12010
|
ny: ny
|
|
@@ -12007,7 +12074,7 @@ class contact_resistance(ListObject[contact_resistance_child]):
|
|
|
12007
12074
|
Specify object name when deleting a thread-real-pair object.
|
|
12008
12075
|
"""
|
|
12009
12076
|
child_object_type: contact_resistance_child
|
|
12010
|
-
class
|
|
12077
|
+
class enabled_28(Boolean):
|
|
12011
12078
|
version: str
|
|
12012
12079
|
fluent_name: str
|
|
12013
12080
|
_python_name: str
|
|
@@ -12040,14 +12107,14 @@ class orthotropic_k(Group):
|
|
|
12040
12107
|
fluent_name: str
|
|
12041
12108
|
_python_name: str
|
|
12042
12109
|
child_names: list[str]
|
|
12043
|
-
enabled:
|
|
12110
|
+
enabled: enabled_28
|
|
12044
12111
|
cell_type: cell_type
|
|
12045
12112
|
cyl_axis_vec: cyl_axis_vec
|
|
12046
12113
|
prism_axis_vec: prism_axis_vec
|
|
12047
12114
|
prism_vec2: prism_vec2
|
|
12048
12115
|
pouch_normal_vec: pouch_normal_vec
|
|
12049
12116
|
thermal_conductivity: thermal_conductivity
|
|
12050
|
-
class
|
|
12117
|
+
class enabled_29(Boolean):
|
|
12051
12118
|
version: str
|
|
12052
12119
|
fluent_name: str
|
|
12053
12120
|
_python_name: str
|
|
@@ -12335,7 +12402,7 @@ class n_equation(Group):
|
|
|
12335
12402
|
file_name : str
|
|
12336
12403
|
Write abuse reaction rate into a file in the N-eqn abuse model.
|
|
12337
12404
|
"""
|
|
12338
|
-
class
|
|
12405
|
+
class enabled_30(Boolean):
|
|
12339
12406
|
version: str
|
|
12340
12407
|
fluent_name: str
|
|
12341
12408
|
_python_name: str
|
|
@@ -12364,7 +12431,7 @@ class internal_short(Group):
|
|
|
12364
12431
|
fluent_name: str
|
|
12365
12432
|
_python_name: str
|
|
12366
12433
|
child_names: list[str]
|
|
12367
|
-
enabled:
|
|
12434
|
+
enabled: enabled_30
|
|
12368
12435
|
h: h
|
|
12369
12436
|
a: a_1
|
|
12370
12437
|
e: e_1
|
|
@@ -12375,14 +12442,14 @@ class thermal_abuse_model(Group):
|
|
|
12375
12442
|
fluent_name: str
|
|
12376
12443
|
_python_name: str
|
|
12377
12444
|
child_names: list[str]
|
|
12378
|
-
enabled:
|
|
12445
|
+
enabled: enabled_29
|
|
12379
12446
|
model_type: model_type
|
|
12380
12447
|
only_abuse: only_abuse
|
|
12381
12448
|
one_equation: one_equation
|
|
12382
12449
|
four_equation: four_equation
|
|
12383
12450
|
n_equation: n_equation
|
|
12384
12451
|
internal_short: internal_short
|
|
12385
|
-
class
|
|
12452
|
+
class enabled_31(Boolean):
|
|
12386
12453
|
version: str
|
|
12387
12454
|
fluent_name: str
|
|
12388
12455
|
_python_name: str
|
|
@@ -12418,9 +12485,9 @@ class capacity_fade_model(Group):
|
|
|
12418
12485
|
fluent_name: str
|
|
12419
12486
|
_python_name: str
|
|
12420
12487
|
child_names: list[str]
|
|
12421
|
-
enabled:
|
|
12488
|
+
enabled: enabled_31
|
|
12422
12489
|
capacity_fade_table: capacity_fade_table
|
|
12423
|
-
class
|
|
12490
|
+
class enabled_32(Boolean):
|
|
12424
12491
|
version: str
|
|
12425
12492
|
fluent_name: str
|
|
12426
12493
|
_python_name: str
|
|
@@ -12493,13 +12560,13 @@ class life_model(Group):
|
|
|
12493
12560
|
fluent_name: str
|
|
12494
12561
|
_python_name: str
|
|
12495
12562
|
child_names: list[str]
|
|
12496
|
-
enabled:
|
|
12563
|
+
enabled: enabled_32
|
|
12497
12564
|
calendar_time: calendar_time
|
|
12498
12565
|
cycle_number: cycle_number
|
|
12499
12566
|
operation_temperature: operation_temperature
|
|
12500
12567
|
calendar_life_params: calendar_life_params
|
|
12501
12568
|
cycle_life_table: cycle_life_table
|
|
12502
|
-
class
|
|
12569
|
+
class enabled_33(Boolean):
|
|
12503
12570
|
version: str
|
|
12504
12571
|
fluent_name: str
|
|
12505
12572
|
_python_name: str
|
|
@@ -12572,7 +12639,7 @@ class swelling_model(Group):
|
|
|
12572
12639
|
fluent_name: str
|
|
12573
12640
|
_python_name: str
|
|
12574
12641
|
child_names: list[str]
|
|
12575
|
-
enabled:
|
|
12642
|
+
enabled: enabled_33
|
|
12576
12643
|
omega: omega
|
|
12577
12644
|
omega_pe: omega_pe
|
|
12578
12645
|
omega_ne: omega_ne
|
|
@@ -12589,7 +12656,7 @@ class swelling_model(Group):
|
|
|
12589
12656
|
orientation_udf_name: orientation_udf_name
|
|
12590
12657
|
customize_swelling_strain_enabled: customize_swelling_strain_enabled
|
|
12591
12658
|
strain_udf_name: strain_udf_name
|
|
12592
|
-
class
|
|
12659
|
+
class enabled_34(Boolean):
|
|
12593
12660
|
version: str
|
|
12594
12661
|
fluent_name: str
|
|
12595
12662
|
_python_name: str
|
|
@@ -12650,7 +12717,7 @@ class venting_model(Group):
|
|
|
12650
12717
|
fluent_name: str
|
|
12651
12718
|
_python_name: str
|
|
12652
12719
|
child_names: list[str]
|
|
12653
|
-
enabled:
|
|
12720
|
+
enabled: enabled_34
|
|
12654
12721
|
venting_gas_phase: venting_gas_phase
|
|
12655
12722
|
gas_release_faces: gas_release_faces
|
|
12656
12723
|
reacting_model: reacting_model
|
|
@@ -12717,7 +12784,7 @@ class advanced_models(Group):
|
|
|
12717
12784
|
swelling_model: swelling_model
|
|
12718
12785
|
venting_model: venting_model
|
|
12719
12786
|
udf_hooks: udf_hooks
|
|
12720
|
-
class
|
|
12787
|
+
class enabled_35(Boolean):
|
|
12721
12788
|
version: str
|
|
12722
12789
|
fluent_name: str
|
|
12723
12790
|
_python_name: str
|
|
@@ -12843,7 +12910,7 @@ class standalone_echem_model(Group):
|
|
|
12843
12910
|
_python_name: str
|
|
12844
12911
|
child_names: list[str]
|
|
12845
12912
|
command_names: list[str]
|
|
12846
|
-
enabled:
|
|
12913
|
+
enabled: enabled_35
|
|
12847
12914
|
life_model_enabled: life_model_enabled
|
|
12848
12915
|
report_time_step: report_time_step
|
|
12849
12916
|
total_run_num_cycles: total_run_num_cycles
|
|
@@ -13169,7 +13236,7 @@ class file_saving_frequency(Group):
|
|
|
13169
13236
|
face_heat_run: face_heat_run
|
|
13170
13237
|
face_temperature_run: face_temperature_run
|
|
13171
13238
|
joule_heat_run: joule_heat_run
|
|
13172
|
-
class
|
|
13239
|
+
class enabled_36(Boolean):
|
|
13173
13240
|
version: str
|
|
13174
13241
|
fluent_name: str
|
|
13175
13242
|
_python_name: str
|
|
@@ -13182,7 +13249,7 @@ class joule_heat_parameter(Group):
|
|
|
13182
13249
|
fluent_name: str
|
|
13183
13250
|
_python_name: str
|
|
13184
13251
|
child_names: list[str]
|
|
13185
|
-
enabled:
|
|
13252
|
+
enabled: enabled_36
|
|
13186
13253
|
value: value_14
|
|
13187
13254
|
class rom_data_creator_tool(Group):
|
|
13188
13255
|
version: str
|
|
@@ -13372,7 +13439,7 @@ class battery(Group):
|
|
|
13372
13439
|
_python_name: str
|
|
13373
13440
|
child_names: list[str]
|
|
13374
13441
|
command_names: list[str]
|
|
13375
|
-
enabled:
|
|
13442
|
+
enabled: enabled_24
|
|
13376
13443
|
solution_method: solution_method_1
|
|
13377
13444
|
echem_model: echem_model
|
|
13378
13445
|
zone_assignment: zone_assignment_1
|
|
@@ -13633,7 +13700,7 @@ class system_coupling(Group):
|
|
|
13633
13700
|
attribute_name : str
|
|
13634
13701
|
Provide attribute name.
|
|
13635
13702
|
"""
|
|
13636
|
-
class
|
|
13703
|
+
class enabled_37(Boolean):
|
|
13637
13704
|
version: str
|
|
13638
13705
|
fluent_name: str
|
|
13639
13706
|
_python_name: str
|
|
@@ -14101,7 +14168,7 @@ class electric_field(Group):
|
|
|
14101
14168
|
current_tap: current_tap
|
|
14102
14169
|
conductive_regions: conductive_regions
|
|
14103
14170
|
contact_resistance_regions: contact_resistance_regions
|
|
14104
|
-
class
|
|
14171
|
+
class enabled_38(Boolean):
|
|
14105
14172
|
version: str
|
|
14106
14173
|
fluent_name: str
|
|
14107
14174
|
_python_name: str
|
|
@@ -14115,7 +14182,7 @@ class customized_udf(Group):
|
|
|
14115
14182
|
_python_name: str
|
|
14116
14183
|
child_names: list[str]
|
|
14117
14184
|
command_names: list[str]
|
|
14118
|
-
enabled:
|
|
14185
|
+
enabled: enabled_38
|
|
14119
14186
|
source_file: source_file
|
|
14120
14187
|
def create_customized_addon_lib(self):
|
|
14121
14188
|
"""
|
|
@@ -14130,13 +14197,13 @@ class sofc(Group):
|
|
|
14130
14197
|
fluent_name: str
|
|
14131
14198
|
_python_name: str
|
|
14132
14199
|
child_names: list[str]
|
|
14133
|
-
enabled:
|
|
14200
|
+
enabled: enabled_37
|
|
14134
14201
|
model_parameters: model_parameters
|
|
14135
14202
|
electrochemistry: electrochemistry
|
|
14136
14203
|
electrolyte_porous: electrolyte_porous
|
|
14137
14204
|
electric_field: electric_field
|
|
14138
14205
|
customized_udf: customized_udf
|
|
14139
|
-
class
|
|
14206
|
+
class enabled_39(Boolean):
|
|
14140
14207
|
version: str
|
|
14141
14208
|
fluent_name: str
|
|
14142
14209
|
_python_name: str
|
|
@@ -15083,7 +15150,7 @@ class cathode_1(Group):
|
|
|
15083
15150
|
cathode_gdl_zone: cathode_gdl_zone
|
|
15084
15151
|
cathode_mpl_zone: cathode_mpl_zone
|
|
15085
15152
|
cathode_ca_zone: cathode_ca_zone
|
|
15086
|
-
class
|
|
15153
|
+
class enabled_40(Boolean):
|
|
15087
15154
|
version: str
|
|
15088
15155
|
fluent_name: str
|
|
15089
15156
|
_python_name: str
|
|
@@ -15100,7 +15167,7 @@ class coolant_channel(Group):
|
|
|
15100
15167
|
fluent_name: str
|
|
15101
15168
|
_python_name: str
|
|
15102
15169
|
child_names: list[str]
|
|
15103
|
-
enabled:
|
|
15170
|
+
enabled: enabled_40
|
|
15104
15171
|
coolant_zone_list: coolant_zone_list
|
|
15105
15172
|
coolant_density: coolant_density
|
|
15106
15173
|
class stack_management(Group):
|
|
@@ -15161,7 +15228,7 @@ class stack_management(Group):
|
|
|
15161
15228
|
submit : bool
|
|
15162
15229
|
Submit new stack setup.
|
|
15163
15230
|
"""
|
|
15164
|
-
class
|
|
15231
|
+
class enabled_41(Boolean):
|
|
15165
15232
|
version: str
|
|
15166
15233
|
fluent_name: str
|
|
15167
15234
|
_python_name: str
|
|
@@ -15174,7 +15241,7 @@ class predefined_workflow(Group):
|
|
|
15174
15241
|
fluent_name: str
|
|
15175
15242
|
_python_name: str
|
|
15176
15243
|
child_names: list[str]
|
|
15177
|
-
enabled:
|
|
15244
|
+
enabled: enabled_41
|
|
15178
15245
|
num_init_iter: num_init_iter
|
|
15179
15246
|
class advanced_1(Group):
|
|
15180
15247
|
version: str
|
|
@@ -15210,7 +15277,7 @@ class pemfc(Group):
|
|
|
15210
15277
|
fluent_name: str
|
|
15211
15278
|
_python_name: str
|
|
15212
15279
|
child_names: list[str]
|
|
15213
|
-
enabled:
|
|
15280
|
+
enabled: enabled_39
|
|
15214
15281
|
options: options_7
|
|
15215
15282
|
parameters: parameters_2
|
|
15216
15283
|
anode: anode_1
|
|
@@ -19240,7 +19307,7 @@ class reference_frame_2(Group):
|
|
|
19240
19307
|
reference_frame_axis_direction: reference_frame_axis_direction
|
|
19241
19308
|
reference_frame_zone_motion_function: reference_frame_zone_motion_function
|
|
19242
19309
|
_child_aliases: dict
|
|
19243
|
-
class
|
|
19310
|
+
class enable_12(Boolean):
|
|
19244
19311
|
version: str
|
|
19245
19312
|
fluent_name: str
|
|
19246
19313
|
_python_name: str
|
|
@@ -19377,7 +19444,7 @@ class mesh_motion(Group):
|
|
|
19377
19444
|
fluent_name: str
|
|
19378
19445
|
_python_name: str
|
|
19379
19446
|
child_names: list[str]
|
|
19380
|
-
enable:
|
|
19447
|
+
enable: enable_12
|
|
19381
19448
|
mgrid_enable_transient: mgrid_enable_transient
|
|
19382
19449
|
mgrid_relative_to_thread: mgrid_relative_to_thread
|
|
19383
19450
|
mgrid_omega: mgrid_omega
|
|
@@ -19631,14 +19698,34 @@ class inertial_resistance(ListObject[inertial_resistance_child]):
|
|
|
19631
19698
|
New size for list-object.
|
|
19632
19699
|
"""
|
|
19633
19700
|
child_object_type: inertial_resistance_child
|
|
19634
|
-
class
|
|
19701
|
+
class power_law_model_child(Real):
|
|
19635
19702
|
version: str
|
|
19636
19703
|
fluent_name: str
|
|
19637
19704
|
_python_name: str
|
|
19638
|
-
class
|
|
19705
|
+
class power_law_model(ListObject[power_law_model_child]):
|
|
19639
19706
|
version: str
|
|
19640
19707
|
fluent_name: str
|
|
19641
19708
|
_python_name: str
|
|
19709
|
+
command_names: list[str]
|
|
19710
|
+
def list_properties(self, object_at: int):
|
|
19711
|
+
"""
|
|
19712
|
+
List properties of selected object.
|
|
19713
|
+
|
|
19714
|
+
Parameters
|
|
19715
|
+
----------
|
|
19716
|
+
object_at : int
|
|
19717
|
+
Select object index to delete.
|
|
19718
|
+
"""
|
|
19719
|
+
def resize(self, size: int):
|
|
19720
|
+
"""
|
|
19721
|
+
Set number of objects for list-object.
|
|
19722
|
+
|
|
19723
|
+
Parameters
|
|
19724
|
+
----------
|
|
19725
|
+
size : int
|
|
19726
|
+
New size for list-object.
|
|
19727
|
+
"""
|
|
19728
|
+
child_object_type: power_law_model_child
|
|
19642
19729
|
class porosity(Group):
|
|
19643
19730
|
version: str
|
|
19644
19731
|
fluent_name: str
|
|
@@ -19981,8 +20068,7 @@ class porous_zone(Group):
|
|
|
19981
20068
|
viscous_resistance: viscous_resistance
|
|
19982
20069
|
alt_inertial_form: alt_inertial_form
|
|
19983
20070
|
inertial_resistance: inertial_resistance
|
|
19984
|
-
|
|
19985
|
-
power_law_c1: power_law_c1
|
|
20071
|
+
power_law_model: power_law_model
|
|
19986
20072
|
porosity: porosity
|
|
19987
20073
|
relative_viscosity: relative_viscosity
|
|
19988
20074
|
relative_permeability: relative_permeability_1
|
|
@@ -20253,7 +20339,7 @@ class reaction(Group):
|
|
|
20253
20339
|
react: react
|
|
20254
20340
|
reaction_mechs: reaction_mechs_1
|
|
20255
20341
|
surface_volume_ratio: surface_volume_ratio
|
|
20256
|
-
class
|
|
20342
|
+
class enable_13(Boolean):
|
|
20257
20343
|
version: str
|
|
20258
20344
|
fluent_name: str
|
|
20259
20345
|
_python_name: str
|
|
@@ -20356,10 +20442,10 @@ class sources_1(Group):
|
|
|
20356
20442
|
fluent_name: str
|
|
20357
20443
|
_python_name: str
|
|
20358
20444
|
child_names: list[str]
|
|
20359
|
-
enable:
|
|
20445
|
+
enable: enable_13
|
|
20360
20446
|
terms: terms
|
|
20361
20447
|
_child_aliases: dict
|
|
20362
|
-
class
|
|
20448
|
+
class enable_14(Boolean):
|
|
20363
20449
|
version: str
|
|
20364
20450
|
fluent_name: str
|
|
20365
20451
|
_python_name: str
|
|
@@ -20442,7 +20528,7 @@ class fixed_values(Group):
|
|
|
20442
20528
|
fluent_name: str
|
|
20443
20529
|
_python_name: str
|
|
20444
20530
|
child_names: list[str]
|
|
20445
|
-
enable:
|
|
20531
|
+
enable: enable_14
|
|
20446
20532
|
cylindrical_fixed_var: cylindrical_fixed_var
|
|
20447
20533
|
variables: variables
|
|
20448
20534
|
_child_aliases: dict
|
|
@@ -20699,7 +20785,7 @@ class solid_relative_to_thread(String, AllowedValuesMixin):
|
|
|
20699
20785
|
version: str
|
|
20700
20786
|
fluent_name: str
|
|
20701
20787
|
_python_name: str
|
|
20702
|
-
class
|
|
20788
|
+
class enable_15(Boolean):
|
|
20703
20789
|
version: str
|
|
20704
20790
|
fluent_name: str
|
|
20705
20791
|
_python_name: str
|
|
@@ -20842,7 +20928,7 @@ class disabled(Group):
|
|
|
20842
20928
|
cursys: cursys
|
|
20843
20929
|
solid_omega: solid_omega
|
|
20844
20930
|
solid_relative_to_thread: solid_relative_to_thread
|
|
20845
|
-
enable:
|
|
20931
|
+
enable: enable_15
|
|
20846
20932
|
solid_motion_axis_direction: solid_motion_axis_direction
|
|
20847
20933
|
solid_motion_axis_origin: solid_motion_axis_origin
|
|
20848
20934
|
solid_motion_velocity: solid_motion_velocity
|
|
@@ -21053,7 +21139,7 @@ class solid_motion(Group):
|
|
|
21053
21139
|
fluent_name: str
|
|
21054
21140
|
_python_name: str
|
|
21055
21141
|
child_names: list[str]
|
|
21056
|
-
enable:
|
|
21142
|
+
enable: enable_15
|
|
21057
21143
|
solid_relative_to_thread: solid_relative_to_thread
|
|
21058
21144
|
solid_omega: solid_omega
|
|
21059
21145
|
solid_motion_velocity: solid_motion_velocity
|
|
@@ -24357,7 +24443,7 @@ class current_density_boundary_value(Group):
|
|
|
24357
24443
|
field_name: field_name
|
|
24358
24444
|
udf: udf
|
|
24359
24445
|
_child_aliases: dict
|
|
24360
|
-
class
|
|
24446
|
+
class potential(Group):
|
|
24361
24447
|
version: str
|
|
24362
24448
|
fluent_name: str
|
|
24363
24449
|
_python_name: str
|
|
@@ -24606,7 +24692,7 @@ class phase_4_child(Group):
|
|
|
24606
24692
|
species: species_5
|
|
24607
24693
|
discrete_phase: discrete_phase_1
|
|
24608
24694
|
multiphase: multiphase_2
|
|
24609
|
-
potential:
|
|
24695
|
+
potential: potential
|
|
24610
24696
|
structure: structure_1
|
|
24611
24697
|
uds: uds
|
|
24612
24698
|
icing: icing
|
|
@@ -24682,7 +24768,7 @@ class settings_2(Group):
|
|
|
24682
24768
|
species: species_5
|
|
24683
24769
|
discrete_phase: discrete_phase_1
|
|
24684
24770
|
multiphase: multiphase_2
|
|
24685
|
-
potential:
|
|
24771
|
+
potential: potential
|
|
24686
24772
|
structure: structure_1
|
|
24687
24773
|
uds: uds
|
|
24688
24774
|
icing: icing
|
|
@@ -26354,7 +26440,7 @@ class phase_6_child(Group):
|
|
|
26354
26440
|
species: species_6
|
|
26355
26441
|
discrete_phase: discrete_phase_1
|
|
26356
26442
|
multiphase: multiphase_3
|
|
26357
|
-
potential:
|
|
26443
|
+
potential: potential
|
|
26358
26444
|
structure: structure_1
|
|
26359
26445
|
uds: uds
|
|
26360
26446
|
icing: icing_1
|
|
@@ -26430,7 +26516,7 @@ class settings_4(Group):
|
|
|
26430
26516
|
species: species_6
|
|
26431
26517
|
discrete_phase: discrete_phase_1
|
|
26432
26518
|
multiphase: multiphase_3
|
|
26433
|
-
potential:
|
|
26519
|
+
potential: potential
|
|
26434
26520
|
structure: structure_1
|
|
26435
26521
|
uds: uds
|
|
26436
26522
|
icing: icing_1
|
|
@@ -26563,7 +26649,7 @@ class phase_7_child(Group):
|
|
|
26563
26649
|
species: species_6
|
|
26564
26650
|
discrete_phase: discrete_phase_1
|
|
26565
26651
|
multiphase: multiphase_3
|
|
26566
|
-
potential:
|
|
26652
|
+
potential: potential
|
|
26567
26653
|
structure: structure_1
|
|
26568
26654
|
uds: uds
|
|
26569
26655
|
icing: icing_1
|
|
@@ -26639,7 +26725,7 @@ class settings_5(Group):
|
|
|
26639
26725
|
species: species_6
|
|
26640
26726
|
discrete_phase: discrete_phase_1
|
|
26641
26727
|
multiphase: multiphase_3
|
|
26642
|
-
potential:
|
|
26728
|
+
potential: potential
|
|
26643
26729
|
structure: structure_1
|
|
26644
26730
|
uds: uds
|
|
26645
26731
|
icing: icing_1
|
|
@@ -27410,7 +27496,7 @@ class phase_10_child(Group):
|
|
|
27410
27496
|
species: species_7
|
|
27411
27497
|
discrete_phase: discrete_phase_3
|
|
27412
27498
|
multiphase: multiphase_4
|
|
27413
|
-
potential:
|
|
27499
|
+
potential: potential
|
|
27414
27500
|
structure: structure_1
|
|
27415
27501
|
uds: uds
|
|
27416
27502
|
icing: icing_1
|
|
@@ -27486,7 +27572,7 @@ class settings_8(Group):
|
|
|
27486
27572
|
species: species_7
|
|
27487
27573
|
discrete_phase: discrete_phase_3
|
|
27488
27574
|
multiphase: multiphase_4
|
|
27489
|
-
potential:
|
|
27575
|
+
potential: potential
|
|
27490
27576
|
structure: structure_1
|
|
27491
27577
|
uds: uds
|
|
27492
27578
|
icing: icing_1
|
|
@@ -27608,7 +27694,7 @@ class multiphase_5(Group):
|
|
|
27608
27694
|
granular_temperature: granular_temperature
|
|
27609
27695
|
interfacial_area_concentration: interfacial_area_concentration
|
|
27610
27696
|
_child_aliases: dict
|
|
27611
|
-
class
|
|
27697
|
+
class potential_1(Group):
|
|
27612
27698
|
version: str
|
|
27613
27699
|
fluent_name: str
|
|
27614
27700
|
_python_name: str
|
|
@@ -27624,7 +27710,7 @@ class phase_11_child(Group):
|
|
|
27624
27710
|
species: species_8
|
|
27625
27711
|
discrete_phase: discrete_phase_3
|
|
27626
27712
|
multiphase: multiphase_5
|
|
27627
|
-
potential:
|
|
27713
|
+
potential: potential_1
|
|
27628
27714
|
structure: structure_1
|
|
27629
27715
|
uds: uds
|
|
27630
27716
|
icing: icing_1
|
|
@@ -27700,7 +27786,7 @@ class settings_9(Group):
|
|
|
27700
27786
|
species: species_8
|
|
27701
27787
|
discrete_phase: discrete_phase_3
|
|
27702
27788
|
multiphase: multiphase_5
|
|
27703
|
-
potential:
|
|
27789
|
+
potential: potential_1
|
|
27704
27790
|
structure: structure_1
|
|
27705
27791
|
uds: uds
|
|
27706
27792
|
icing: icing_1
|
|
@@ -28171,7 +28257,7 @@ class phase_14_child(Group):
|
|
|
28171
28257
|
_python_name: str
|
|
28172
28258
|
child_names: list[str]
|
|
28173
28259
|
momentum: momentum_5
|
|
28174
|
-
potential:
|
|
28260
|
+
potential: potential
|
|
28175
28261
|
structure: structure_1
|
|
28176
28262
|
uds: uds_2
|
|
28177
28263
|
radiation: radiation_4
|
|
@@ -28242,7 +28328,7 @@ class settings_12(Group):
|
|
|
28242
28328
|
_python_name: str
|
|
28243
28329
|
child_names: list[str]
|
|
28244
28330
|
momentum: momentum_5
|
|
28245
|
-
potential:
|
|
28331
|
+
potential: potential
|
|
28246
28332
|
structure: structure_1
|
|
28247
28333
|
uds: uds_2
|
|
28248
28334
|
radiation: radiation_4
|
|
@@ -28378,7 +28464,7 @@ class phase_15_child(Group):
|
|
|
28378
28464
|
species: species_5
|
|
28379
28465
|
discrete_phase: discrete_phase_1
|
|
28380
28466
|
multiphase: multiphase_2
|
|
28381
|
-
potential:
|
|
28467
|
+
potential: potential
|
|
28382
28468
|
structure: structure_1
|
|
28383
28469
|
uds: uds
|
|
28384
28470
|
icing: icing
|
|
@@ -28454,7 +28540,7 @@ class settings_13(Group):
|
|
|
28454
28540
|
species: species_5
|
|
28455
28541
|
discrete_phase: discrete_phase_1
|
|
28456
28542
|
multiphase: multiphase_2
|
|
28457
|
-
potential:
|
|
28543
|
+
potential: potential
|
|
28458
28544
|
structure: structure_1
|
|
28459
28545
|
uds: uds
|
|
28460
28546
|
icing: icing
|
|
@@ -29332,7 +29418,7 @@ class phase_18_child(Group):
|
|
|
29332
29418
|
radiation: radiation_5
|
|
29333
29419
|
species: species_9
|
|
29334
29420
|
discrete_phase: discrete_phase_4
|
|
29335
|
-
potential:
|
|
29421
|
+
potential: potential
|
|
29336
29422
|
structure: structure_1
|
|
29337
29423
|
uds: uds
|
|
29338
29424
|
icing: icing_1
|
|
@@ -29407,7 +29493,7 @@ class settings_16(Group):
|
|
|
29407
29493
|
radiation: radiation_5
|
|
29408
29494
|
species: species_9
|
|
29409
29495
|
discrete_phase: discrete_phase_4
|
|
29410
|
-
potential:
|
|
29496
|
+
potential: potential
|
|
29411
29497
|
structure: structure_1
|
|
29412
29498
|
uds: uds
|
|
29413
29499
|
icing: icing_1
|
|
@@ -29525,7 +29611,7 @@ class phase_19_child(Group):
|
|
|
29525
29611
|
species: species_6
|
|
29526
29612
|
discrete_phase: discrete_phase_1
|
|
29527
29613
|
multiphase: multiphase_3
|
|
29528
|
-
potential:
|
|
29614
|
+
potential: potential
|
|
29529
29615
|
structure: structure_1
|
|
29530
29616
|
uds: uds
|
|
29531
29617
|
icing: icing_1
|
|
@@ -29601,7 +29687,7 @@ class settings_17(Group):
|
|
|
29601
29687
|
species: species_6
|
|
29602
29688
|
discrete_phase: discrete_phase_1
|
|
29603
29689
|
multiphase: multiphase_3
|
|
29604
|
-
potential:
|
|
29690
|
+
potential: potential
|
|
29605
29691
|
structure: structure_1
|
|
29606
29692
|
uds: uds
|
|
29607
29693
|
icing: icing_1
|
|
@@ -29734,7 +29820,7 @@ class phase_20_child(Group):
|
|
|
29734
29820
|
species: species_5
|
|
29735
29821
|
discrete_phase: discrete_phase_1
|
|
29736
29822
|
multiphase: multiphase_2
|
|
29737
|
-
potential:
|
|
29823
|
+
potential: potential
|
|
29738
29824
|
structure: structure_1
|
|
29739
29825
|
uds: uds
|
|
29740
29826
|
icing: icing
|
|
@@ -29810,7 +29896,7 @@ class settings_18(Group):
|
|
|
29810
29896
|
species: species_5
|
|
29811
29897
|
discrete_phase: discrete_phase_1
|
|
29812
29898
|
multiphase: multiphase_2
|
|
29813
|
-
potential:
|
|
29899
|
+
potential: potential
|
|
29814
29900
|
structure: structure_1
|
|
29815
29901
|
uds: uds
|
|
29816
29902
|
icing: icing
|
|
@@ -31691,7 +31777,7 @@ class phase_25_child(Group):
|
|
|
31691
31777
|
species: species_7
|
|
31692
31778
|
discrete_phase: discrete_phase_1
|
|
31693
31779
|
multiphase: multiphase_6
|
|
31694
|
-
potential:
|
|
31780
|
+
potential: potential
|
|
31695
31781
|
structure: structure_1
|
|
31696
31782
|
uds: uds
|
|
31697
31783
|
icing: icing_1
|
|
@@ -31767,7 +31853,7 @@ class settings_23(Group):
|
|
|
31767
31853
|
species: species_7
|
|
31768
31854
|
discrete_phase: discrete_phase_1
|
|
31769
31855
|
multiphase: multiphase_6
|
|
31770
|
-
potential:
|
|
31856
|
+
potential: potential
|
|
31771
31857
|
structure: structure_1
|
|
31772
31858
|
uds: uds
|
|
31773
31859
|
icing: icing_1
|
|
@@ -33442,7 +33528,7 @@ class vof_to_lwf_enabled(Boolean):
|
|
|
33442
33528
|
version: str
|
|
33443
33529
|
fluent_name: str
|
|
33444
33530
|
_python_name: str
|
|
33445
|
-
class
|
|
33531
|
+
class model_7(String, AllowedValuesMixin):
|
|
33446
33532
|
version: str
|
|
33447
33533
|
fluent_name: str
|
|
33448
33534
|
_python_name: str
|
|
@@ -33496,7 +33582,7 @@ class impingement_splashing(Group):
|
|
|
33496
33582
|
fluent_name: str
|
|
33497
33583
|
_python_name: str
|
|
33498
33584
|
child_names: list[str]
|
|
33499
|
-
model:
|
|
33585
|
+
model: model_7
|
|
33500
33586
|
number_of_splashed_drops: number_of_splashed_drops
|
|
33501
33587
|
regime_parameters: regime_parameters
|
|
33502
33588
|
_child_aliases: dict
|
|
@@ -33538,7 +33624,7 @@ class friction_coefficient(Group):
|
|
|
33538
33624
|
piecewise_polynomial: piecewise_polynomial_1
|
|
33539
33625
|
piecewise_linear: piecewise_linear_2
|
|
33540
33626
|
polynomial: polynomial_3
|
|
33541
|
-
class
|
|
33627
|
+
class model_8(String, AllowedValuesMixin):
|
|
33542
33628
|
version: str
|
|
33543
33629
|
fluent_name: str
|
|
33544
33630
|
_python_name: str
|
|
@@ -33555,11 +33641,11 @@ class film_separation(Group):
|
|
|
33555
33641
|
fluent_name: str
|
|
33556
33642
|
_python_name: str
|
|
33557
33643
|
child_names: list[str]
|
|
33558
|
-
model:
|
|
33644
|
+
model: model_8
|
|
33559
33645
|
critical_weber_number: critical_weber_number_1
|
|
33560
33646
|
separation_angle: separation_angle
|
|
33561
33647
|
_child_aliases: dict
|
|
33562
|
-
class
|
|
33648
|
+
class enabled_42(Boolean):
|
|
33563
33649
|
version: str
|
|
33564
33650
|
fluent_name: str
|
|
33565
33651
|
_python_name: str
|
|
@@ -33572,10 +33658,10 @@ class film_particle_stripping(Group):
|
|
|
33572
33658
|
fluent_name: str
|
|
33573
33659
|
_python_name: str
|
|
33574
33660
|
child_names: list[str]
|
|
33575
|
-
enabled:
|
|
33661
|
+
enabled: enabled_42
|
|
33576
33662
|
critical_shear_stress: critical_shear_stress
|
|
33577
33663
|
_child_aliases: dict
|
|
33578
|
-
class
|
|
33664
|
+
class enabled_43(Boolean):
|
|
33579
33665
|
version: str
|
|
33580
33666
|
fluent_name: str
|
|
33581
33667
|
_python_name: str
|
|
@@ -33633,7 +33719,7 @@ class film_initialization(Group):
|
|
|
33633
33719
|
_python_name: str
|
|
33634
33720
|
child_names: list[str]
|
|
33635
33721
|
command_names: list[str]
|
|
33636
|
-
enabled:
|
|
33722
|
+
enabled: enabled_43
|
|
33637
33723
|
film_height: film_height
|
|
33638
33724
|
film_velocity: film_velocity
|
|
33639
33725
|
film_temperature: film_temperature
|
|
@@ -33645,7 +33731,7 @@ class film_initialization(Group):
|
|
|
33645
33731
|
Apply All settings and initialize film on selected wall(s) Now?.
|
|
33646
33732
|
"""
|
|
33647
33733
|
_child_aliases: dict
|
|
33648
|
-
class
|
|
33734
|
+
class enabled_44(Boolean):
|
|
33649
33735
|
version: str
|
|
33650
33736
|
fluent_name: str
|
|
33651
33737
|
_python_name: str
|
|
@@ -33683,12 +33769,12 @@ class film_in_situ_data_reduction(Group):
|
|
|
33683
33769
|
fluent_name: str
|
|
33684
33770
|
_python_name: str
|
|
33685
33771
|
child_names: list[str]
|
|
33686
|
-
enabled:
|
|
33772
|
+
enabled: enabled_44
|
|
33687
33773
|
time_of_first_execution: time_of_first_execution
|
|
33688
33774
|
execution_time_interval: execution_time_interval
|
|
33689
33775
|
per_face_parameters: per_face_parameters
|
|
33690
33776
|
_child_aliases: dict
|
|
33691
|
-
class
|
|
33777
|
+
class enabled_45(Boolean):
|
|
33692
33778
|
version: str
|
|
33693
33779
|
fluent_name: str
|
|
33694
33780
|
_python_name: str
|
|
@@ -33733,12 +33819,12 @@ class generic(Group):
|
|
|
33733
33819
|
fluent_name: str
|
|
33734
33820
|
_python_name: str
|
|
33735
33821
|
child_names: list[str]
|
|
33736
|
-
enabled:
|
|
33822
|
+
enabled: enabled_45
|
|
33737
33823
|
impact_angle_function: impact_angle_function
|
|
33738
33824
|
diameter_function: diameter_function
|
|
33739
33825
|
velocity_exponent_function: velocity_exponent_function
|
|
33740
33826
|
_child_aliases: dict
|
|
33741
|
-
class
|
|
33827
|
+
class enabled_46(Boolean):
|
|
33742
33828
|
version: str
|
|
33743
33829
|
fluent_name: str
|
|
33744
33830
|
_python_name: str
|
|
@@ -33759,12 +33845,12 @@ class finnie(Group):
|
|
|
33759
33845
|
fluent_name: str
|
|
33760
33846
|
_python_name: str
|
|
33761
33847
|
child_names: list[str]
|
|
33762
|
-
enabled:
|
|
33848
|
+
enabled: enabled_46
|
|
33763
33849
|
model_constant_k: model_constant_k
|
|
33764
33850
|
velocity_exponent: velocity_exponent
|
|
33765
33851
|
angle_of_max_erosion: angle_of_max_erosion
|
|
33766
33852
|
_child_aliases: dict
|
|
33767
|
-
class
|
|
33853
|
+
class enabled_47(Boolean):
|
|
33768
33854
|
version: str
|
|
33769
33855
|
fluent_name: str
|
|
33770
33856
|
_python_name: str
|
|
@@ -33801,7 +33887,7 @@ class mclaury(Group):
|
|
|
33801
33887
|
fluent_name: str
|
|
33802
33888
|
_python_name: str
|
|
33803
33889
|
child_names: list[str]
|
|
33804
|
-
enabled:
|
|
33890
|
+
enabled: enabled_47
|
|
33805
33891
|
model_constant_a: model_constant_a
|
|
33806
33892
|
velocity_exponent: velocity_exponent
|
|
33807
33893
|
transition_angle: transition_angle
|
|
@@ -33811,7 +33897,7 @@ class mclaury(Group):
|
|
|
33811
33897
|
impact_angle_constant_x: impact_angle_constant_x
|
|
33812
33898
|
impact_angle_constant_y: impact_angle_constant_y
|
|
33813
33899
|
_child_aliases: dict
|
|
33814
|
-
class
|
|
33900
|
+
class enabled_48(Boolean):
|
|
33815
33901
|
version: str
|
|
33816
33902
|
fluent_name: str
|
|
33817
33903
|
_python_name: str
|
|
@@ -33852,7 +33938,7 @@ class oka(Group):
|
|
|
33852
33938
|
fluent_name: str
|
|
33853
33939
|
_python_name: str
|
|
33854
33940
|
child_names: list[str]
|
|
33855
|
-
enabled:
|
|
33941
|
+
enabled: enabled_48
|
|
33856
33942
|
reference_erosion_rate_e90: reference_erosion_rate_e90
|
|
33857
33943
|
wall_vickers_hardness_hv: wall_vickers_hardness_hv
|
|
33858
33944
|
model_constant_n1: model_constant_n1
|
|
@@ -33862,7 +33948,7 @@ class oka(Group):
|
|
|
33862
33948
|
reference_diameter_dref: reference_diameter_dref
|
|
33863
33949
|
reference_velocity_vref: reference_velocity_vref
|
|
33864
33950
|
_child_aliases: dict
|
|
33865
|
-
class
|
|
33951
|
+
class enabled_49(Boolean):
|
|
33866
33952
|
version: str
|
|
33867
33953
|
fluent_name: str
|
|
33868
33954
|
_python_name: str
|
|
@@ -33879,12 +33965,12 @@ class dnv(Group):
|
|
|
33879
33965
|
fluent_name: str
|
|
33880
33966
|
_python_name: str
|
|
33881
33967
|
child_names: list[str]
|
|
33882
|
-
enabled:
|
|
33968
|
+
enabled: enabled_49
|
|
33883
33969
|
model_constant_k: model_constant_k
|
|
33884
33970
|
model_constant_n: model_constant_n
|
|
33885
33971
|
ductile_material_enabled: ductile_material_enabled
|
|
33886
33972
|
_child_aliases: dict
|
|
33887
|
-
class
|
|
33973
|
+
class enabled_50(Boolean):
|
|
33888
33974
|
version: str
|
|
33889
33975
|
fluent_name: str
|
|
33890
33976
|
_python_name: str
|
|
@@ -33909,7 +33995,7 @@ class shear_erosion(Group):
|
|
|
33909
33995
|
fluent_name: str
|
|
33910
33996
|
_python_name: str
|
|
33911
33997
|
child_names: list[str]
|
|
33912
|
-
enabled:
|
|
33998
|
+
enabled: enabled_50
|
|
33913
33999
|
velocity_exponent_v: velocity_exponent_v
|
|
33914
34000
|
model_constant_c: model_constant_c
|
|
33915
34001
|
packing_limit: packing_limit
|
|
@@ -34360,7 +34446,7 @@ class lithium_boundary_value(Group):
|
|
|
34360
34446
|
field_name: field_name
|
|
34361
34447
|
udf: udf
|
|
34362
34448
|
_child_aliases: dict
|
|
34363
|
-
class
|
|
34449
|
+
class potential_2(Group):
|
|
34364
34450
|
version: str
|
|
34365
34451
|
fluent_name: str
|
|
34366
34452
|
_python_name: str
|
|
@@ -34405,6 +34491,17 @@ class fensapice_ice_wall_conductivity(Real):
|
|
|
34405
34491
|
version: str
|
|
34406
34492
|
fluent_name: str
|
|
34407
34493
|
_python_name: str
|
|
34494
|
+
class fensapice_ice_film_height(Group):
|
|
34495
|
+
version: str
|
|
34496
|
+
fluent_name: str
|
|
34497
|
+
_python_name: str
|
|
34498
|
+
child_names: list[str]
|
|
34499
|
+
option: option_35
|
|
34500
|
+
value: value_16
|
|
34501
|
+
profile_name: profile_name
|
|
34502
|
+
field_name: field_name
|
|
34503
|
+
udf: udf
|
|
34504
|
+
_child_aliases: dict
|
|
34408
34505
|
class fensapice_drop_vwet(Boolean):
|
|
34409
34506
|
version: str
|
|
34410
34507
|
fluent_name: str
|
|
@@ -34442,6 +34539,7 @@ class icing_2(Group):
|
|
|
34442
34539
|
fensapice_ice_wall_thickness: fensapice_ice_wall_thickness
|
|
34443
34540
|
fensapice_ice_wall_internal_temperature: fensapice_ice_wall_internal_temperature
|
|
34444
34541
|
fensapice_ice_wall_conductivity: fensapice_ice_wall_conductivity
|
|
34542
|
+
fensapice_ice_film_height: fensapice_ice_film_height
|
|
34445
34543
|
fensapice_drop_vwet: fensapice_drop_vwet
|
|
34446
34544
|
fensapice_drop_reinj: fensapice_drop_reinj
|
|
34447
34545
|
fensapice_dpm_wall_condition: fensapice_dpm_wall_condition
|
|
@@ -34563,7 +34661,7 @@ class phase_26_child(Group):
|
|
|
34563
34661
|
discrete_phase: discrete_phase_5
|
|
34564
34662
|
wall_film: wall_film_1
|
|
34565
34663
|
multiphase: multiphase_7
|
|
34566
|
-
potential:
|
|
34664
|
+
potential: potential_2
|
|
34567
34665
|
structure: structure_1
|
|
34568
34666
|
uds: uds
|
|
34569
34667
|
icing: icing_2
|
|
@@ -34641,7 +34739,7 @@ class settings_24(Group):
|
|
|
34641
34739
|
discrete_phase: discrete_phase_5
|
|
34642
34740
|
wall_film: wall_film_1
|
|
34643
34741
|
multiphase: multiphase_7
|
|
34644
|
-
potential:
|
|
34742
|
+
potential: potential_2
|
|
34645
34743
|
structure: structure_1
|
|
34646
34744
|
uds: uds
|
|
34647
34745
|
icing: icing_2
|
|
@@ -35350,7 +35448,7 @@ class exhaust_fan_1_child(Group):
|
|
|
35350
35448
|
species: species_5
|
|
35351
35449
|
discrete_phase: discrete_phase_1
|
|
35352
35450
|
multiphase: multiphase_2
|
|
35353
|
-
potential:
|
|
35451
|
+
potential: potential
|
|
35354
35452
|
structure: structure_1
|
|
35355
35453
|
uds: uds
|
|
35356
35454
|
icing: icing
|
|
@@ -35631,7 +35729,7 @@ class inlet_vent_1_child(Group):
|
|
|
35631
35729
|
species: species_6
|
|
35632
35730
|
discrete_phase: discrete_phase_1
|
|
35633
35731
|
multiphase: multiphase_3
|
|
35634
|
-
potential:
|
|
35732
|
+
potential: potential
|
|
35635
35733
|
structure: structure_1
|
|
35636
35734
|
uds: uds
|
|
35637
35735
|
icing: icing_1
|
|
@@ -35731,7 +35829,7 @@ class intake_fan_1_child(Group):
|
|
|
35731
35829
|
species: species_6
|
|
35732
35830
|
discrete_phase: discrete_phase_1
|
|
35733
35831
|
multiphase: multiphase_3
|
|
35734
|
-
potential:
|
|
35832
|
+
potential: potential
|
|
35735
35833
|
structure: structure_1
|
|
35736
35834
|
uds: uds
|
|
35737
35835
|
icing: icing_1
|
|
@@ -36010,7 +36108,7 @@ class mass_flow_inlet_1_child(Group):
|
|
|
36010
36108
|
species: species_7
|
|
36011
36109
|
discrete_phase: discrete_phase_3
|
|
36012
36110
|
multiphase: multiphase_4
|
|
36013
|
-
potential:
|
|
36111
|
+
potential: potential
|
|
36014
36112
|
structure: structure_1
|
|
36015
36113
|
uds: uds
|
|
36016
36114
|
icing: icing_1
|
|
@@ -36110,7 +36208,7 @@ class mass_flow_outlet_1_child(Group):
|
|
|
36110
36208
|
species: species_8
|
|
36111
36209
|
discrete_phase: discrete_phase_3
|
|
36112
36210
|
multiphase: multiphase_5
|
|
36113
|
-
potential:
|
|
36211
|
+
potential: potential_1
|
|
36114
36212
|
structure: structure_1
|
|
36115
36213
|
uds: uds
|
|
36116
36214
|
icing: icing_1
|
|
@@ -36381,7 +36479,7 @@ class outflow_1_child(Group):
|
|
|
36381
36479
|
name: name_4
|
|
36382
36480
|
location: location_2
|
|
36383
36481
|
momentum: momentum_5
|
|
36384
|
-
potential:
|
|
36482
|
+
potential: potential
|
|
36385
36483
|
structure: structure_1
|
|
36386
36484
|
uds: uds_2
|
|
36387
36485
|
radiation: radiation_4
|
|
@@ -36482,7 +36580,7 @@ class outlet_vent_1_child(Group):
|
|
|
36482
36580
|
species: species_5
|
|
36483
36581
|
discrete_phase: discrete_phase_1
|
|
36484
36582
|
multiphase: multiphase_2
|
|
36485
|
-
potential:
|
|
36583
|
+
potential: potential
|
|
36486
36584
|
structure: structure_1
|
|
36487
36585
|
uds: uds
|
|
36488
36586
|
icing: icing
|
|
@@ -36851,7 +36949,7 @@ class pressure_far_field_1_child(Group):
|
|
|
36851
36949
|
radiation: radiation_5
|
|
36852
36950
|
species: species_9
|
|
36853
36951
|
discrete_phase: discrete_phase_4
|
|
36854
|
-
potential:
|
|
36952
|
+
potential: potential
|
|
36855
36953
|
structure: structure_1
|
|
36856
36954
|
uds: uds
|
|
36857
36955
|
icing: icing_1
|
|
@@ -36951,7 +37049,7 @@ class pressure_inlet_1_child(Group):
|
|
|
36951
37049
|
species: species_6
|
|
36952
37050
|
discrete_phase: discrete_phase_1
|
|
36953
37051
|
multiphase: multiphase_3
|
|
36954
|
-
potential:
|
|
37052
|
+
potential: potential
|
|
36955
37053
|
structure: structure_1
|
|
36956
37054
|
uds: uds
|
|
36957
37055
|
icing: icing_1
|
|
@@ -37051,7 +37149,7 @@ class pressure_outlet_1_child(Group):
|
|
|
37051
37149
|
species: species_5
|
|
37052
37150
|
discrete_phase: discrete_phase_1
|
|
37053
37151
|
multiphase: multiphase_2
|
|
37054
|
-
potential:
|
|
37152
|
+
potential: potential
|
|
37055
37153
|
structure: structure_1
|
|
37056
37154
|
uds: uds
|
|
37057
37155
|
icing: icing
|
|
@@ -37690,7 +37788,7 @@ class velocity_inlet_1_child(Group):
|
|
|
37690
37788
|
species: species_7
|
|
37691
37789
|
discrete_phase: discrete_phase_1
|
|
37692
37790
|
multiphase: multiphase_6
|
|
37693
|
-
potential:
|
|
37791
|
+
potential: potential
|
|
37694
37792
|
structure: structure_1
|
|
37695
37793
|
uds: uds
|
|
37696
37794
|
icing: icing_1
|
|
@@ -37791,7 +37889,7 @@ class wall_1_child(Group):
|
|
|
37791
37889
|
discrete_phase: discrete_phase_5
|
|
37792
37890
|
wall_film: wall_film_1
|
|
37793
37891
|
multiphase: multiphase_7
|
|
37794
|
-
potential:
|
|
37892
|
+
potential: potential_2
|
|
37795
37893
|
structure: structure_1
|
|
37796
37894
|
uds: uds
|
|
37797
37895
|
icing: icing_2
|
|
@@ -38275,7 +38373,7 @@ class phase_29_child(Group):
|
|
|
38275
38373
|
species: species_5
|
|
38276
38374
|
discrete_phase: discrete_phase_1
|
|
38277
38375
|
multiphase: multiphase_2
|
|
38278
|
-
potential:
|
|
38376
|
+
potential: potential
|
|
38279
38377
|
structure: structure_1
|
|
38280
38378
|
uds: uds
|
|
38281
38379
|
icing: icing
|
|
@@ -38363,7 +38461,7 @@ class exhaust_fan_2_child(Group):
|
|
|
38363
38461
|
species: species_5
|
|
38364
38462
|
discrete_phase: discrete_phase_1
|
|
38365
38463
|
multiphase: multiphase_2
|
|
38366
|
-
potential:
|
|
38464
|
+
potential: potential
|
|
38367
38465
|
structure: structure_1
|
|
38368
38466
|
uds: uds
|
|
38369
38467
|
icing: icing
|
|
@@ -38683,7 +38781,7 @@ class phase_31_child(Group):
|
|
|
38683
38781
|
species: species_6
|
|
38684
38782
|
discrete_phase: discrete_phase_1
|
|
38685
38783
|
multiphase: multiphase_3
|
|
38686
|
-
potential:
|
|
38784
|
+
potential: potential
|
|
38687
38785
|
structure: structure_1
|
|
38688
38786
|
uds: uds
|
|
38689
38787
|
icing: icing_1
|
|
@@ -38771,7 +38869,7 @@ class inlet_vent_2_child(Group):
|
|
|
38771
38869
|
species: species_6
|
|
38772
38870
|
discrete_phase: discrete_phase_1
|
|
38773
38871
|
multiphase: multiphase_3
|
|
38774
|
-
potential:
|
|
38872
|
+
potential: potential
|
|
38775
38873
|
structure: structure_1
|
|
38776
38874
|
uds: uds
|
|
38777
38875
|
icing: icing_1
|
|
@@ -38857,7 +38955,7 @@ class phase_32_child(Group):
|
|
|
38857
38955
|
species: species_6
|
|
38858
38956
|
discrete_phase: discrete_phase_1
|
|
38859
38957
|
multiphase: multiphase_3
|
|
38860
|
-
potential:
|
|
38958
|
+
potential: potential
|
|
38861
38959
|
structure: structure_1
|
|
38862
38960
|
uds: uds
|
|
38863
38961
|
icing: icing_1
|
|
@@ -38945,7 +39043,7 @@ class intake_fan_2_child(Group):
|
|
|
38945
39043
|
species: species_6
|
|
38946
39044
|
discrete_phase: discrete_phase_1
|
|
38947
39045
|
multiphase: multiphase_3
|
|
38948
|
-
potential:
|
|
39046
|
+
potential: potential
|
|
38949
39047
|
structure: structure_1
|
|
38950
39048
|
uds: uds
|
|
38951
39049
|
icing: icing_1
|
|
@@ -39333,7 +39431,7 @@ class phase_35_child(Group):
|
|
|
39333
39431
|
species: species_7
|
|
39334
39432
|
discrete_phase: discrete_phase_3
|
|
39335
39433
|
multiphase: multiphase_4
|
|
39336
|
-
potential:
|
|
39434
|
+
potential: potential
|
|
39337
39435
|
structure: structure_1
|
|
39338
39436
|
uds: uds
|
|
39339
39437
|
icing: icing_1
|
|
@@ -39421,7 +39519,7 @@ class mass_flow_inlet_2_child(Group):
|
|
|
39421
39519
|
species: species_7
|
|
39422
39520
|
discrete_phase: discrete_phase_3
|
|
39423
39521
|
multiphase: multiphase_4
|
|
39424
|
-
potential:
|
|
39522
|
+
potential: potential
|
|
39425
39523
|
structure: structure_1
|
|
39426
39524
|
uds: uds
|
|
39427
39525
|
icing: icing_1
|
|
@@ -39507,7 +39605,7 @@ class phase_36_child(Group):
|
|
|
39507
39605
|
species: species_8
|
|
39508
39606
|
discrete_phase: discrete_phase_3
|
|
39509
39607
|
multiphase: multiphase_5
|
|
39510
|
-
potential:
|
|
39608
|
+
potential: potential_1
|
|
39511
39609
|
structure: structure_1
|
|
39512
39610
|
uds: uds
|
|
39513
39611
|
icing: icing_1
|
|
@@ -39595,7 +39693,7 @@ class mass_flow_outlet_2_child(Group):
|
|
|
39595
39693
|
species: species_8
|
|
39596
39694
|
discrete_phase: discrete_phase_3
|
|
39597
39695
|
multiphase: multiphase_5
|
|
39598
|
-
potential:
|
|
39696
|
+
potential: potential_1
|
|
39599
39697
|
structure: structure_1
|
|
39600
39698
|
uds: uds
|
|
39601
39699
|
icing: icing_1
|
|
@@ -39972,7 +40070,7 @@ class phase_39_child(Group):
|
|
|
39972
40070
|
child_names: list[str]
|
|
39973
40071
|
query_names: list[str]
|
|
39974
40072
|
momentum: momentum_5
|
|
39975
|
-
potential:
|
|
40073
|
+
potential: potential
|
|
39976
40074
|
structure: structure_1
|
|
39977
40075
|
uds: uds_2
|
|
39978
40076
|
radiation: radiation_4
|
|
@@ -40055,7 +40153,7 @@ class outflow_2_child(Group):
|
|
|
40055
40153
|
name: name_4
|
|
40056
40154
|
phase: phase_39
|
|
40057
40155
|
momentum: momentum_5
|
|
40058
|
-
potential:
|
|
40156
|
+
potential: potential
|
|
40059
40157
|
structure: structure_1
|
|
40060
40158
|
uds: uds_2
|
|
40061
40159
|
radiation: radiation_4
|
|
@@ -40142,7 +40240,7 @@ class phase_40_child(Group):
|
|
|
40142
40240
|
species: species_5
|
|
40143
40241
|
discrete_phase: discrete_phase_1
|
|
40144
40242
|
multiphase: multiphase_2
|
|
40145
|
-
potential:
|
|
40243
|
+
potential: potential
|
|
40146
40244
|
structure: structure_1
|
|
40147
40245
|
uds: uds
|
|
40148
40246
|
icing: icing
|
|
@@ -40230,7 +40328,7 @@ class outlet_vent_2_child(Group):
|
|
|
40230
40328
|
species: species_5
|
|
40231
40329
|
discrete_phase: discrete_phase_1
|
|
40232
40330
|
multiphase: multiphase_2
|
|
40233
|
-
potential:
|
|
40331
|
+
potential: potential
|
|
40234
40332
|
structure: structure_1
|
|
40235
40333
|
uds: uds
|
|
40236
40334
|
icing: icing
|
|
@@ -40699,7 +40797,7 @@ class phase_43_child(Group):
|
|
|
40699
40797
|
radiation: radiation_5
|
|
40700
40798
|
species: species_9
|
|
40701
40799
|
discrete_phase: discrete_phase_4
|
|
40702
|
-
potential:
|
|
40800
|
+
potential: potential
|
|
40703
40801
|
structure: structure_1
|
|
40704
40802
|
uds: uds
|
|
40705
40803
|
icing: icing_1
|
|
@@ -40786,7 +40884,7 @@ class pressure_far_field_2_child(Group):
|
|
|
40786
40884
|
radiation: radiation_5
|
|
40787
40885
|
species: species_9
|
|
40788
40886
|
discrete_phase: discrete_phase_4
|
|
40789
|
-
potential:
|
|
40887
|
+
potential: potential
|
|
40790
40888
|
structure: structure_1
|
|
40791
40889
|
uds: uds
|
|
40792
40890
|
icing: icing_1
|
|
@@ -40872,7 +40970,7 @@ class phase_44_child(Group):
|
|
|
40872
40970
|
species: species_6
|
|
40873
40971
|
discrete_phase: discrete_phase_1
|
|
40874
40972
|
multiphase: multiphase_3
|
|
40875
|
-
potential:
|
|
40973
|
+
potential: potential
|
|
40876
40974
|
structure: structure_1
|
|
40877
40975
|
uds: uds
|
|
40878
40976
|
icing: icing_1
|
|
@@ -40960,7 +41058,7 @@ class pressure_inlet_2_child(Group):
|
|
|
40960
41058
|
species: species_6
|
|
40961
41059
|
discrete_phase: discrete_phase_1
|
|
40962
41060
|
multiphase: multiphase_3
|
|
40963
|
-
potential:
|
|
41061
|
+
potential: potential
|
|
40964
41062
|
structure: structure_1
|
|
40965
41063
|
uds: uds
|
|
40966
41064
|
icing: icing_1
|
|
@@ -41046,7 +41144,7 @@ class phase_45_child(Group):
|
|
|
41046
41144
|
species: species_5
|
|
41047
41145
|
discrete_phase: discrete_phase_1
|
|
41048
41146
|
multiphase: multiphase_2
|
|
41049
|
-
potential:
|
|
41147
|
+
potential: potential
|
|
41050
41148
|
structure: structure_1
|
|
41051
41149
|
uds: uds
|
|
41052
41150
|
icing: icing
|
|
@@ -41134,7 +41232,7 @@ class pressure_outlet_2_child(Group):
|
|
|
41134
41232
|
species: species_5
|
|
41135
41233
|
discrete_phase: discrete_phase_1
|
|
41136
41234
|
multiphase: multiphase_2
|
|
41137
|
-
potential:
|
|
41235
|
+
potential: potential
|
|
41138
41236
|
structure: structure_1
|
|
41139
41237
|
uds: uds
|
|
41140
41238
|
icing: icing
|
|
@@ -41984,7 +42082,7 @@ class phase_50_child(Group):
|
|
|
41984
42082
|
species: species_7
|
|
41985
42083
|
discrete_phase: discrete_phase_1
|
|
41986
42084
|
multiphase: multiphase_6
|
|
41987
|
-
potential:
|
|
42085
|
+
potential: potential
|
|
41988
42086
|
structure: structure_1
|
|
41989
42087
|
uds: uds
|
|
41990
42088
|
icing: icing_1
|
|
@@ -42072,7 +42170,7 @@ class velocity_inlet_2_child(Group):
|
|
|
42072
42170
|
species: species_7
|
|
42073
42171
|
discrete_phase: discrete_phase_1
|
|
42074
42172
|
multiphase: multiphase_6
|
|
42075
|
-
potential:
|
|
42173
|
+
potential: potential
|
|
42076
42174
|
structure: structure_1
|
|
42077
42175
|
uds: uds
|
|
42078
42176
|
icing: icing_1
|
|
@@ -42159,7 +42257,7 @@ class phase_51_child(Group):
|
|
|
42159
42257
|
discrete_phase: discrete_phase_5
|
|
42160
42258
|
wall_film: wall_film_1
|
|
42161
42259
|
multiphase: multiphase_7
|
|
42162
|
-
potential:
|
|
42260
|
+
potential: potential_2
|
|
42163
42261
|
structure: structure_1
|
|
42164
42262
|
uds: uds
|
|
42165
42263
|
icing: icing_2
|
|
@@ -42249,7 +42347,7 @@ class wall_2_child(Group):
|
|
|
42249
42347
|
discrete_phase: discrete_phase_5
|
|
42250
42348
|
wall_film: wall_film_1
|
|
42251
42349
|
multiphase: multiphase_7
|
|
42252
|
-
potential:
|
|
42350
|
+
potential: potential_2
|
|
42253
42351
|
structure: structure_1
|
|
42254
42352
|
uds: uds
|
|
42255
42353
|
icing: icing_2
|
|
@@ -42353,7 +42451,7 @@ class general_nrbc(Group):
|
|
|
42353
42451
|
relax: relax
|
|
42354
42452
|
tangential_source: tangential_source
|
|
42355
42453
|
verbosity: verbosity_4
|
|
42356
|
-
class
|
|
42454
|
+
class enable_16(Boolean):
|
|
42357
42455
|
version: str
|
|
42358
42456
|
fluent_name: str
|
|
42359
42457
|
_python_name: str
|
|
@@ -42375,7 +42473,7 @@ class turbo_sepcific_nrbc(Group):
|
|
|
42375
42473
|
_python_name: str
|
|
42376
42474
|
child_names: list[str]
|
|
42377
42475
|
command_names: list[str]
|
|
42378
|
-
enable:
|
|
42476
|
+
enable: enable_16
|
|
42379
42477
|
discretization: discretization
|
|
42380
42478
|
under_relaxation: under_relaxation_1
|
|
42381
42479
|
verbosity: verbosity_5
|
|
@@ -43602,11 +43700,11 @@ class mesh_interfaces(Group):
|
|
|
43602
43700
|
zone_name : str
|
|
43603
43701
|
Enter zone id/name.
|
|
43604
43702
|
"""
|
|
43605
|
-
class
|
|
43703
|
+
class enabled_52(Boolean):
|
|
43606
43704
|
version: str
|
|
43607
43705
|
fluent_name: str
|
|
43608
43706
|
_python_name: str
|
|
43609
|
-
class
|
|
43707
|
+
class enabled_53(Boolean):
|
|
43610
43708
|
version: str
|
|
43611
43709
|
fluent_name: str
|
|
43612
43710
|
_python_name: str
|
|
@@ -43797,13 +43895,13 @@ class smoothing_1(Group):
|
|
|
43797
43895
|
fluent_name: str
|
|
43798
43896
|
_python_name: str
|
|
43799
43897
|
child_names: list[str]
|
|
43800
|
-
enabled:
|
|
43898
|
+
enabled: enabled_53
|
|
43801
43899
|
method: method_8
|
|
43802
43900
|
spring_settings: spring_settings
|
|
43803
43901
|
diffusion_settings: diffusion_settings
|
|
43804
43902
|
linelast_settings: linelast_settings
|
|
43805
43903
|
radial_settings: radial_settings
|
|
43806
|
-
class
|
|
43904
|
+
class enabled_54(Boolean):
|
|
43807
43905
|
version: str
|
|
43808
43906
|
fluent_name: str
|
|
43809
43907
|
_python_name: str
|
|
@@ -43847,9 +43945,9 @@ class remeshing(Group):
|
|
|
43847
43945
|
fluent_name: str
|
|
43848
43946
|
_python_name: str
|
|
43849
43947
|
child_names: list[str]
|
|
43850
|
-
enabled:
|
|
43948
|
+
enabled: enabled_54
|
|
43851
43949
|
settings: settings_26
|
|
43852
|
-
class
|
|
43950
|
+
class enabled_55(Boolean):
|
|
43853
43951
|
version: str
|
|
43854
43952
|
fluent_name: str
|
|
43855
43953
|
_python_name: str
|
|
@@ -43878,7 +43976,7 @@ class layering(Group):
|
|
|
43878
43976
|
fluent_name: str
|
|
43879
43977
|
_python_name: str
|
|
43880
43978
|
child_names: list[str]
|
|
43881
|
-
enabled:
|
|
43979
|
+
enabled: enabled_55
|
|
43882
43980
|
settings: settings_27
|
|
43883
43981
|
class methods(Group):
|
|
43884
43982
|
version: str
|
|
@@ -43888,32 +43986,457 @@ class methods(Group):
|
|
|
43888
43986
|
smoothing: smoothing_1
|
|
43889
43987
|
remeshing: remeshing
|
|
43890
43988
|
layering: layering
|
|
43891
|
-
class
|
|
43989
|
+
class enabled_56(Boolean):
|
|
43892
43990
|
version: str
|
|
43893
43991
|
fluent_name: str
|
|
43894
43992
|
_python_name: str
|
|
43895
|
-
class
|
|
43993
|
+
class crank_shaft_speed(Real):
|
|
43896
43994
|
version: str
|
|
43897
43995
|
fluent_name: str
|
|
43898
43996
|
_python_name: str
|
|
43899
|
-
class
|
|
43997
|
+
class starting_crank_angle(Real):
|
|
43900
43998
|
version: str
|
|
43901
43999
|
fluent_name: str
|
|
43902
44000
|
_python_name: str
|
|
43903
|
-
class
|
|
44001
|
+
class crank_period(Real):
|
|
43904
44002
|
version: str
|
|
43905
44003
|
fluent_name: str
|
|
43906
44004
|
_python_name: str
|
|
43907
|
-
class
|
|
44005
|
+
class crank_angle_step(Real):
|
|
44006
|
+
version: str
|
|
44007
|
+
fluent_name: str
|
|
44008
|
+
_python_name: str
|
|
44009
|
+
class max_crank_angle_step(Real):
|
|
44010
|
+
version: str
|
|
44011
|
+
fluent_name: str
|
|
44012
|
+
_python_name: str
|
|
44013
|
+
class crank_radius(Real):
|
|
44014
|
+
version: str
|
|
44015
|
+
fluent_name: str
|
|
44016
|
+
_python_name: str
|
|
44017
|
+
class connecting_rod_length(Real):
|
|
44018
|
+
version: str
|
|
44019
|
+
fluent_name: str
|
|
44020
|
+
_python_name: str
|
|
44021
|
+
class piston_pin_offset(Real):
|
|
44022
|
+
version: str
|
|
44023
|
+
fluent_name: str
|
|
44024
|
+
_python_name: str
|
|
44025
|
+
class piston_stroke_cutoff(Real):
|
|
44026
|
+
version: str
|
|
44027
|
+
fluent_name: str
|
|
44028
|
+
_python_name: str
|
|
44029
|
+
class minimum_valve_lift(Real):
|
|
44030
|
+
version: str
|
|
44031
|
+
fluent_name: str
|
|
44032
|
+
_python_name: str
|
|
44033
|
+
class write_freq(Integer):
|
|
44034
|
+
version: str
|
|
44035
|
+
fluent_name: str
|
|
44036
|
+
_python_name: str
|
|
44037
|
+
class swirl_center_method(String, AllowedValuesMixin):
|
|
44038
|
+
version: str
|
|
44039
|
+
fluent_name: str
|
|
44040
|
+
_python_name: str
|
|
44041
|
+
class swirl_origin(RealList):
|
|
44042
|
+
version: str
|
|
44043
|
+
fluent_name: str
|
|
44044
|
+
_python_name: str
|
|
44045
|
+
class user_defined_function_1(String, AllowedValuesMixin):
|
|
44046
|
+
version: str
|
|
44047
|
+
fluent_name: str
|
|
44048
|
+
_python_name: str
|
|
44049
|
+
class swirl_axis(RealList):
|
|
44050
|
+
version: str
|
|
44051
|
+
fluent_name: str
|
|
44052
|
+
_python_name: str
|
|
44053
|
+
class tumble_x(RealList):
|
|
44054
|
+
version: str
|
|
44055
|
+
fluent_name: str
|
|
44056
|
+
_python_name: str
|
|
44057
|
+
class tumble_y(RealList):
|
|
44058
|
+
version: str
|
|
44059
|
+
fluent_name: str
|
|
44060
|
+
_python_name: str
|
|
44061
|
+
class threads(StringList, AllowedValuesMixin):
|
|
44062
|
+
version: str
|
|
44063
|
+
fluent_name: str
|
|
44064
|
+
_python_name: str
|
|
44065
|
+
class write_in_cylinder_ouput(Group):
|
|
44066
|
+
version: str
|
|
44067
|
+
fluent_name: str
|
|
44068
|
+
_python_name: str
|
|
44069
|
+
child_names: list[str]
|
|
44070
|
+
enabled: enabled_56
|
|
44071
|
+
write_freq: write_freq
|
|
44072
|
+
swirl_center_method: swirl_center_method
|
|
44073
|
+
swirl_origin: swirl_origin
|
|
44074
|
+
user_defined_function: user_defined_function_1
|
|
44075
|
+
swirl_axis: swirl_axis
|
|
44076
|
+
tumble_x: tumble_x
|
|
44077
|
+
tumble_y: tumble_y
|
|
44078
|
+
threads: threads
|
|
44079
|
+
file_name: file_name_11
|
|
44080
|
+
class in_cylinder(Group):
|
|
44081
|
+
version: str
|
|
44082
|
+
fluent_name: str
|
|
44083
|
+
_python_name: str
|
|
44084
|
+
child_names: list[str]
|
|
44085
|
+
enabled: enabled_56
|
|
44086
|
+
crank_shaft_speed: crank_shaft_speed
|
|
44087
|
+
starting_crank_angle: starting_crank_angle
|
|
44088
|
+
crank_period: crank_period
|
|
44089
|
+
crank_angle_step: crank_angle_step
|
|
44090
|
+
max_crank_angle_step: max_crank_angle_step
|
|
44091
|
+
crank_radius: crank_radius
|
|
44092
|
+
connecting_rod_length: connecting_rod_length
|
|
44093
|
+
piston_pin_offset: piston_pin_offset
|
|
44094
|
+
piston_stroke_cutoff: piston_stroke_cutoff
|
|
44095
|
+
minimum_valve_lift: minimum_valve_lift
|
|
44096
|
+
write_in_cylinder_ouput: write_in_cylinder_ouput
|
|
44097
|
+
class x_1(Real):
|
|
44098
|
+
version: str
|
|
44099
|
+
fluent_name: str
|
|
44100
|
+
_python_name: str
|
|
44101
|
+
class y_1(Real):
|
|
44102
|
+
version: str
|
|
44103
|
+
fluent_name: str
|
|
44104
|
+
_python_name: str
|
|
44105
|
+
class z_1(Real):
|
|
44106
|
+
version: str
|
|
44107
|
+
fluent_name: str
|
|
44108
|
+
_python_name: str
|
|
44109
|
+
class gravity_1(Group):
|
|
44110
|
+
version: str
|
|
44111
|
+
fluent_name: str
|
|
44112
|
+
_python_name: str
|
|
44113
|
+
child_names: list[str]
|
|
44114
|
+
x: x_1
|
|
44115
|
+
y: y_1
|
|
44116
|
+
z: z_1
|
|
44117
|
+
class write_motion_history(Boolean):
|
|
44118
|
+
version: str
|
|
44119
|
+
fluent_name: str
|
|
44120
|
+
_python_name: str
|
|
44121
|
+
class basename(String):
|
|
44122
|
+
version: str
|
|
44123
|
+
fluent_name: str
|
|
44124
|
+
_python_name: str
|
|
44125
|
+
class second_order(Boolean):
|
|
44126
|
+
version: str
|
|
44127
|
+
fluent_name: str
|
|
44128
|
+
_python_name: str
|
|
44129
|
+
class mass(Real):
|
|
44130
|
+
version: str
|
|
44131
|
+
fluent_name: str
|
|
44132
|
+
_python_name: str
|
|
44133
|
+
class one_dof_translation(Group):
|
|
44134
|
+
version: str
|
|
44135
|
+
fluent_name: str
|
|
44136
|
+
_python_name: str
|
|
44137
|
+
child_names: list[str]
|
|
44138
|
+
enabled: enabled_56
|
|
44139
|
+
class center_of_rotation(RealList):
|
|
44140
|
+
version: str
|
|
44141
|
+
fluent_name: str
|
|
44142
|
+
_python_name: str
|
|
44143
|
+
class preload(Real):
|
|
44144
|
+
version: str
|
|
44145
|
+
fluent_name: str
|
|
44146
|
+
_python_name: str
|
|
44147
|
+
class spring_stiffness(Real):
|
|
44148
|
+
version: str
|
|
44149
|
+
fluent_name: str
|
|
44150
|
+
_python_name: str
|
|
44151
|
+
class reference_angle(Real):
|
|
44152
|
+
version: str
|
|
44153
|
+
fluent_name: str
|
|
44154
|
+
_python_name: str
|
|
44155
|
+
class angle_minimum(Real):
|
|
44156
|
+
version: str
|
|
44157
|
+
fluent_name: str
|
|
44158
|
+
_python_name: str
|
|
44159
|
+
class angle_maximum(Real):
|
|
44160
|
+
version: str
|
|
44161
|
+
fluent_name: str
|
|
44162
|
+
_python_name: str
|
|
44163
|
+
class constraint(Group):
|
|
44164
|
+
version: str
|
|
44165
|
+
fluent_name: str
|
|
44166
|
+
_python_name: str
|
|
44167
|
+
child_names: list[str]
|
|
44168
|
+
enabled: enabled_56
|
|
44169
|
+
reference_angle: reference_angle
|
|
44170
|
+
angle_minimum: angle_minimum
|
|
44171
|
+
angle_maximum: angle_maximum
|
|
44172
|
+
class moment_of_inertia(Real):
|
|
44173
|
+
version: str
|
|
44174
|
+
fluent_name: str
|
|
44175
|
+
_python_name: str
|
|
44176
|
+
class one_dof_rotation(Group):
|
|
44177
|
+
version: str
|
|
44178
|
+
fluent_name: str
|
|
44179
|
+
_python_name: str
|
|
44180
|
+
child_names: list[str]
|
|
44181
|
+
enabled: enabled_56
|
|
44182
|
+
axis: axis_3
|
|
44183
|
+
center_of_rotation: center_of_rotation
|
|
44184
|
+
preload: preload
|
|
44185
|
+
spring_stiffness: spring_stiffness
|
|
44186
|
+
constraint: constraint
|
|
44187
|
+
moment_of_inertia: moment_of_inertia
|
|
44188
|
+
class ixx(Real):
|
|
44189
|
+
version: str
|
|
44190
|
+
fluent_name: str
|
|
44191
|
+
_python_name: str
|
|
44192
|
+
class iyy(Real):
|
|
44193
|
+
version: str
|
|
44194
|
+
fluent_name: str
|
|
44195
|
+
_python_name: str
|
|
44196
|
+
class izz(Real):
|
|
44197
|
+
version: str
|
|
44198
|
+
fluent_name: str
|
|
44199
|
+
_python_name: str
|
|
44200
|
+
class ixy(Real):
|
|
43908
44201
|
version: str
|
|
43909
44202
|
fluent_name: str
|
|
43910
44203
|
_python_name: str
|
|
44204
|
+
class ixz(Real):
|
|
44205
|
+
version: str
|
|
44206
|
+
fluent_name: str
|
|
44207
|
+
_python_name: str
|
|
44208
|
+
class iyz(Real):
|
|
44209
|
+
version: str
|
|
44210
|
+
fluent_name: str
|
|
44211
|
+
_python_name: str
|
|
44212
|
+
class inertia_tensor(Group):
|
|
44213
|
+
version: str
|
|
44214
|
+
fluent_name: str
|
|
44215
|
+
_python_name: str
|
|
44216
|
+
child_names: list[str]
|
|
44217
|
+
ixx: ixx
|
|
44218
|
+
iyy: iyy
|
|
44219
|
+
izz: izz
|
|
44220
|
+
ixy: ixy
|
|
44221
|
+
ixz: ixz
|
|
44222
|
+
iyz: iyz
|
|
44223
|
+
class sdof_properties_child(Group):
|
|
44224
|
+
version: str
|
|
44225
|
+
fluent_name: str
|
|
44226
|
+
_python_name: str
|
|
44227
|
+
child_names: list[str]
|
|
44228
|
+
name: name_4
|
|
44229
|
+
mass: mass
|
|
44230
|
+
one_dof_translation: one_dof_translation
|
|
44231
|
+
one_dof_rotation: one_dof_rotation
|
|
44232
|
+
inertia_tensor: inertia_tensor
|
|
44233
|
+
class sdof_properties(NamedObject[sdof_properties_child]):
|
|
44234
|
+
version: str
|
|
44235
|
+
fluent_name: str
|
|
44236
|
+
_python_name: str
|
|
44237
|
+
command_names: list[str]
|
|
44238
|
+
def create(self, name: str):
|
|
44239
|
+
"""
|
|
44240
|
+
Create an instance of this.
|
|
44241
|
+
|
|
44242
|
+
Parameters
|
|
44243
|
+
----------
|
|
44244
|
+
name : str
|
|
44245
|
+
Set name for an object.
|
|
44246
|
+
"""
|
|
44247
|
+
def delete(self, name_list: list[str]):
|
|
44248
|
+
"""
|
|
44249
|
+
Delete selected objects.
|
|
44250
|
+
|
|
44251
|
+
Parameters
|
|
44252
|
+
----------
|
|
44253
|
+
name_list : List
|
|
44254
|
+
Select objects to be deleted.
|
|
44255
|
+
"""
|
|
44256
|
+
def rename(self, new: str, old: str):
|
|
44257
|
+
"""
|
|
44258
|
+
Rename the object.
|
|
44259
|
+
|
|
44260
|
+
Parameters
|
|
44261
|
+
----------
|
|
44262
|
+
new : str
|
|
44263
|
+
New name for the object.
|
|
44264
|
+
old : str
|
|
44265
|
+
Select object to rename.
|
|
44266
|
+
"""
|
|
44267
|
+
def list(self):
|
|
44268
|
+
"""
|
|
44269
|
+
List the names of the objects.
|
|
44270
|
+
"""
|
|
44271
|
+
def list_properties(self, object_name: str):
|
|
44272
|
+
"""
|
|
44273
|
+
List active properties of the object.
|
|
44274
|
+
|
|
44275
|
+
Parameters
|
|
44276
|
+
----------
|
|
44277
|
+
object_name : str
|
|
44278
|
+
Select object for which properties are to be listed.
|
|
44279
|
+
"""
|
|
44280
|
+
def make_a_copy(self, from_: str, to: str):
|
|
44281
|
+
"""
|
|
44282
|
+
Create a copy of the object.
|
|
44283
|
+
|
|
44284
|
+
Parameters
|
|
44285
|
+
----------
|
|
44286
|
+
from_ : str
|
|
44287
|
+
Select the object to duplicate.
|
|
44288
|
+
to : str
|
|
44289
|
+
Specify the name of the new object.
|
|
44290
|
+
"""
|
|
44291
|
+
def list_properties_all(self):
|
|
44292
|
+
"""
|
|
44293
|
+
'list_properties_all' command.
|
|
44294
|
+
"""
|
|
44295
|
+
child_object_type: sdof_properties_child
|
|
43911
44296
|
class six_dof(Group):
|
|
43912
44297
|
version: str
|
|
43913
44298
|
fluent_name: str
|
|
43914
44299
|
_python_name: str
|
|
43915
44300
|
child_names: list[str]
|
|
43916
|
-
enabled:
|
|
44301
|
+
enabled: enabled_56
|
|
44302
|
+
gravity: gravity_1
|
|
44303
|
+
write_motion_history: write_motion_history
|
|
44304
|
+
basename: basename
|
|
44305
|
+
second_order: second_order
|
|
44306
|
+
sdof_properties: sdof_properties
|
|
44307
|
+
class update_interval(Integer):
|
|
44308
|
+
version: str
|
|
44309
|
+
fluent_name: str
|
|
44310
|
+
_python_name: str
|
|
44311
|
+
class relaxation_factor(Real):
|
|
44312
|
+
version: str
|
|
44313
|
+
fluent_name: str
|
|
44314
|
+
_python_name: str
|
|
44315
|
+
class residual_criterion(Real):
|
|
44316
|
+
version: str
|
|
44317
|
+
fluent_name: str
|
|
44318
|
+
_python_name: str
|
|
44319
|
+
class implicit_update(Group):
|
|
44320
|
+
version: str
|
|
44321
|
+
fluent_name: str
|
|
44322
|
+
_python_name: str
|
|
44323
|
+
child_names: list[str]
|
|
44324
|
+
enabled: enabled_56
|
|
44325
|
+
update_interval: update_interval
|
|
44326
|
+
relaxation_factor: relaxation_factor
|
|
44327
|
+
residual_criterion: residual_criterion
|
|
44328
|
+
class face_zones(StringList, AllowedValuesMixin):
|
|
44329
|
+
version: str
|
|
44330
|
+
fluent_name: str
|
|
44331
|
+
_python_name: str
|
|
44332
|
+
class proximity_threshold(Real):
|
|
44333
|
+
version: str
|
|
44334
|
+
fluent_name: str
|
|
44335
|
+
_python_name: str
|
|
44336
|
+
class contact_udf(String, AllowedValuesMixin):
|
|
44337
|
+
version: str
|
|
44338
|
+
fluent_name: str
|
|
44339
|
+
_python_name: str
|
|
44340
|
+
class enabled_57(Boolean):
|
|
44341
|
+
version: str
|
|
44342
|
+
fluent_name: str
|
|
44343
|
+
_python_name: str
|
|
44344
|
+
class method_9(String, AllowedValuesMixin):
|
|
44345
|
+
version: str
|
|
44346
|
+
fluent_name: str
|
|
44347
|
+
_python_name: str
|
|
44348
|
+
class solution_stabilization(Boolean):
|
|
44349
|
+
version: str
|
|
44350
|
+
fluent_name: str
|
|
44351
|
+
_python_name: str
|
|
44352
|
+
class flow_control(Group):
|
|
44353
|
+
version: str
|
|
44354
|
+
fluent_name: str
|
|
44355
|
+
_python_name: str
|
|
44356
|
+
child_names: list[str]
|
|
44357
|
+
command_names: list[str]
|
|
44358
|
+
enabled: enabled_57
|
|
44359
|
+
method: method_9
|
|
44360
|
+
solution_stabilization: solution_stabilization
|
|
44361
|
+
def create_zone(self, zone: str, new_name: str):
|
|
44362
|
+
"""
|
|
44363
|
+
Create a flow control zone.
|
|
44364
|
+
|
|
44365
|
+
Parameters
|
|
44366
|
+
----------
|
|
44367
|
+
zone : str
|
|
44368
|
+
Zone.
|
|
44369
|
+
new_name : str
|
|
44370
|
+
Zone name.
|
|
44371
|
+
"""
|
|
44372
|
+
def delete_zone(self, zone: str):
|
|
44373
|
+
"""
|
|
44374
|
+
Delete a flow control zone.
|
|
44375
|
+
|
|
44376
|
+
Parameters
|
|
44377
|
+
----------
|
|
44378
|
+
zone : str
|
|
44379
|
+
Zone.
|
|
44380
|
+
"""
|
|
44381
|
+
def update_contact_marks(self):
|
|
44382
|
+
"""
|
|
44383
|
+
Update which cells are marked in order to block flow in the contact region.
|
|
44384
|
+
"""
|
|
44385
|
+
def render_contact_cells(self, include: bool):
|
|
44386
|
+
"""
|
|
44387
|
+
Set the option to include contact-cells in post-processing.
|
|
44388
|
+
|
|
44389
|
+
Parameters
|
|
44390
|
+
----------
|
|
44391
|
+
include : bool
|
|
44392
|
+
Include contact-cells in post-processing?.
|
|
44393
|
+
"""
|
|
44394
|
+
class verbosity_12(Integer):
|
|
44395
|
+
version: str
|
|
44396
|
+
fluent_name: str
|
|
44397
|
+
_python_name: str
|
|
44398
|
+
class contact_detection(Group):
|
|
44399
|
+
version: str
|
|
44400
|
+
fluent_name: str
|
|
44401
|
+
_python_name: str
|
|
44402
|
+
child_names: list[str]
|
|
44403
|
+
enabled: enabled_56
|
|
44404
|
+
face_zones: face_zones
|
|
44405
|
+
proximity_threshold: proximity_threshold
|
|
44406
|
+
contact_udf: contact_udf
|
|
44407
|
+
flow_control: flow_control
|
|
44408
|
+
verbosity: verbosity_12
|
|
44409
|
+
class options_8(Group):
|
|
44410
|
+
version: str
|
|
44411
|
+
fluent_name: str
|
|
44412
|
+
_python_name: str
|
|
44413
|
+
child_names: list[str]
|
|
44414
|
+
in_cylinder: in_cylinder
|
|
44415
|
+
six_dof: six_dof
|
|
44416
|
+
implicit_update: implicit_update
|
|
44417
|
+
contact_detection: contact_detection
|
|
44418
|
+
class zone_1(String, AllowedValuesMixin):
|
|
44419
|
+
version: str
|
|
44420
|
+
fluent_name: str
|
|
44421
|
+
_python_name: str
|
|
44422
|
+
class type_10(String, AllowedValuesMixin):
|
|
44423
|
+
version: str
|
|
44424
|
+
fluent_name: str
|
|
44425
|
+
_python_name: str
|
|
44426
|
+
class motion_def(String, AllowedValuesMixin):
|
|
44427
|
+
version: str
|
|
44428
|
+
fluent_name: str
|
|
44429
|
+
_python_name: str
|
|
44430
|
+
class passive(Boolean):
|
|
44431
|
+
version: str
|
|
44432
|
+
fluent_name: str
|
|
44433
|
+
_python_name: str
|
|
44434
|
+
class six_dof_1(Group):
|
|
44435
|
+
version: str
|
|
44436
|
+
fluent_name: str
|
|
44437
|
+
_python_name: str
|
|
44438
|
+
child_names: list[str]
|
|
44439
|
+
enabled: enabled_56
|
|
43917
44440
|
passive: passive
|
|
43918
44441
|
class exclude_motion_bc(Boolean):
|
|
43919
44442
|
version: str
|
|
@@ -43928,7 +44451,7 @@ class relative_motion(Group):
|
|
|
43928
44451
|
fluent_name: str
|
|
43929
44452
|
_python_name: str
|
|
43930
44453
|
child_names: list[str]
|
|
43931
|
-
enabled:
|
|
44454
|
+
enabled: enabled_56
|
|
43932
44455
|
relative_zone: relative_zone
|
|
43933
44456
|
class cg_position(RealList):
|
|
43934
44457
|
version: str
|
|
@@ -43964,7 +44487,7 @@ class motion(Group):
|
|
|
43964
44487
|
_python_name: str
|
|
43965
44488
|
child_names: list[str]
|
|
43966
44489
|
motion_def: motion_def
|
|
43967
|
-
six_dof:
|
|
44490
|
+
six_dof: six_dof_1
|
|
43968
44491
|
exclude_motion_bc: exclude_motion_bc
|
|
43969
44492
|
relative_motion: relative_motion
|
|
43970
44493
|
rigid_body_properties: rigid_body_properties
|
|
@@ -43998,7 +44521,7 @@ class remeshing_1(Group):
|
|
|
43998
44521
|
fluent_name: str
|
|
43999
44522
|
_python_name: str
|
|
44000
44523
|
child_names: list[str]
|
|
44001
|
-
enabled:
|
|
44524
|
+
enabled: enabled_56
|
|
44002
44525
|
parameters: parameters_3
|
|
44003
44526
|
class methods_1(String, AllowedValuesMixin):
|
|
44004
44527
|
version: str
|
|
@@ -44020,7 +44543,7 @@ class smoothing_2(Group):
|
|
|
44020
44543
|
fluent_name: str
|
|
44021
44544
|
_python_name: str
|
|
44022
44545
|
child_names: list[str]
|
|
44023
|
-
enabled:
|
|
44546
|
+
enabled: enabled_56
|
|
44024
44547
|
methods: methods_1
|
|
44025
44548
|
elements: elements
|
|
44026
44549
|
class type_11(String, AllowedValuesMixin):
|
|
@@ -44065,7 +44588,7 @@ class udf_deform(Group):
|
|
|
44065
44588
|
fluent_name: str
|
|
44066
44589
|
_python_name: str
|
|
44067
44590
|
child_names: list[str]
|
|
44068
|
-
enabled:
|
|
44591
|
+
enabled: enabled_56
|
|
44069
44592
|
max_skew: max_skew
|
|
44070
44593
|
class meshing(Group):
|
|
44071
44594
|
version: str
|
|
@@ -44121,7 +44644,7 @@ class feature_detection(Group):
|
|
|
44121
44644
|
fluent_name: str
|
|
44122
44645
|
_python_name: str
|
|
44123
44646
|
child_names: list[str]
|
|
44124
|
-
enabled:
|
|
44647
|
+
enabled: enabled_56
|
|
44125
44648
|
feature_angle: feature_angle
|
|
44126
44649
|
class geometry_9(Group):
|
|
44127
44650
|
version: str
|
|
@@ -44133,11 +44656,11 @@ class geometry_9(Group):
|
|
|
44133
44656
|
cylinder_def: cylinder_def
|
|
44134
44657
|
geom_udf: geom_udf
|
|
44135
44658
|
feature_detection: feature_detection
|
|
44136
|
-
class
|
|
44659
|
+
class enabled_58(Boolean):
|
|
44137
44660
|
version: str
|
|
44138
44661
|
fluent_name: str
|
|
44139
44662
|
_python_name: str
|
|
44140
|
-
class
|
|
44663
|
+
class method_10(String, AllowedValuesMixin):
|
|
44141
44664
|
version: str
|
|
44142
44665
|
fluent_name: str
|
|
44143
44666
|
_python_name: str
|
|
@@ -44150,14 +44673,14 @@ class parameters_4(Group):
|
|
|
44150
44673
|
fluent_name: str
|
|
44151
44674
|
_python_name: str
|
|
44152
44675
|
child_names: list[str]
|
|
44153
|
-
method:
|
|
44676
|
+
method: method_10
|
|
44154
44677
|
scale: scale_2
|
|
44155
44678
|
class stabilization(Group):
|
|
44156
44679
|
version: str
|
|
44157
44680
|
fluent_name: str
|
|
44158
44681
|
_python_name: str
|
|
44159
44682
|
child_names: list[str]
|
|
44160
|
-
enabled:
|
|
44683
|
+
enabled: enabled_58
|
|
44161
44684
|
parameters: parameters_4
|
|
44162
44685
|
class solver_1(Group):
|
|
44163
44686
|
version: str
|
|
@@ -44171,7 +44694,7 @@ class dynamic_zones_child(Group):
|
|
|
44171
44694
|
_python_name: str
|
|
44172
44695
|
child_names: list[str]
|
|
44173
44696
|
name: name_4
|
|
44174
|
-
zone:
|
|
44697
|
+
zone: zone_1
|
|
44175
44698
|
type: type_10
|
|
44176
44699
|
motion: motion
|
|
44177
44700
|
meshing: meshing
|
|
@@ -44245,9 +44768,40 @@ class dynamic_mesh(Group):
|
|
|
44245
44768
|
fluent_name: str
|
|
44246
44769
|
_python_name: str
|
|
44247
44770
|
child_names: list[str]
|
|
44248
|
-
|
|
44771
|
+
command_names: list[str]
|
|
44772
|
+
enabled: enabled_52
|
|
44249
44773
|
methods: methods
|
|
44774
|
+
options: options_8
|
|
44250
44775
|
dynamic_zones: dynamic_zones
|
|
44776
|
+
def mesh_motion(self, dt: float | str, steps: int, display_grid: bool, display_frequency: int, save_picture: bool, enable_autosave: bool, update_mesh_interfaces: bool, update_overset_interfaces: bool, update_monitors: bool, pseudo_dt: float | str, update: bool):
|
|
44777
|
+
"""
|
|
44778
|
+
Perform mesh motion.
|
|
44779
|
+
|
|
44780
|
+
Parameters
|
|
44781
|
+
----------
|
|
44782
|
+
dt : real
|
|
44783
|
+
'dt' child.
|
|
44784
|
+
steps : int
|
|
44785
|
+
'steps' child.
|
|
44786
|
+
display_grid : bool
|
|
44787
|
+
'display_grid' child.
|
|
44788
|
+
display_frequency : int
|
|
44789
|
+
'display_frequency' child.
|
|
44790
|
+
save_picture : bool
|
|
44791
|
+
'save_picture' child.
|
|
44792
|
+
enable_autosave : bool
|
|
44793
|
+
'enable_autosave' child.
|
|
44794
|
+
update_mesh_interfaces : bool
|
|
44795
|
+
'update_mesh_interfaces' child.
|
|
44796
|
+
update_overset_interfaces : bool
|
|
44797
|
+
'update_overset_interfaces' child.
|
|
44798
|
+
update_monitors : bool
|
|
44799
|
+
'update_monitors' child.
|
|
44800
|
+
pseudo_dt : real
|
|
44801
|
+
'pseudo_dt' child.
|
|
44802
|
+
update : bool
|
|
44803
|
+
Update the Mesh?.
|
|
44804
|
+
"""
|
|
44251
44805
|
class area_1(Real):
|
|
44252
44806
|
version: str
|
|
44253
44807
|
fluent_name: str
|
|
@@ -44292,7 +44846,7 @@ class ratio_of_specific_heats(Real):
|
|
|
44292
44846
|
version: str
|
|
44293
44847
|
fluent_name: str
|
|
44294
44848
|
_python_name: str
|
|
44295
|
-
class
|
|
44849
|
+
class zone_2(String, AllowedValuesMixin):
|
|
44296
44850
|
version: str
|
|
44297
44851
|
fluent_name: str
|
|
44298
44852
|
_python_name: str
|
|
@@ -44313,7 +44867,7 @@ class reference_values(Group):
|
|
|
44313
44867
|
velocity: velocity_1
|
|
44314
44868
|
viscosity: viscosity_3
|
|
44315
44869
|
ratio_of_specific_heats: ratio_of_specific_heats
|
|
44316
|
-
zone:
|
|
44870
|
+
zone: zone_2
|
|
44317
44871
|
def compute(self, from_zone_type: str, from_zone_name: str, phase: str):
|
|
44318
44872
|
"""
|
|
44319
44873
|
'compute' command.
|
|
@@ -44676,7 +45230,7 @@ class named_expressions(NamedObject[named_expressions_child]):
|
|
|
44676
45230
|
'compute' command.
|
|
44677
45231
|
"""
|
|
44678
45232
|
child_object_type: named_expressions_child
|
|
44679
|
-
class
|
|
45233
|
+
class enabled_59(Boolean):
|
|
44680
45234
|
version: str
|
|
44681
45235
|
fluent_name: str
|
|
44682
45236
|
_python_name: str
|
|
@@ -44803,7 +45357,7 @@ class turbo_models(Group):
|
|
|
44803
45357
|
_python_name: str
|
|
44804
45358
|
child_names: list[str]
|
|
44805
45359
|
command_names: list[str]
|
|
44806
|
-
enabled:
|
|
45360
|
+
enabled: enabled_59
|
|
44807
45361
|
general_turbo_interface: general_turbo_interface
|
|
44808
45362
|
def export_boundary_mesh(self, filename: str, boundary_list: list[str], global_: bool):
|
|
44809
45363
|
"""
|
|
@@ -45134,7 +45688,7 @@ class user_defined_1(Group):
|
|
|
45134
45688
|
addon_udf_file : str
|
|
45135
45689
|
Enter the addon UDF file.
|
|
45136
45690
|
"""
|
|
45137
|
-
class
|
|
45691
|
+
class update_interval_2(Integer):
|
|
45138
45692
|
version: str
|
|
45139
45693
|
fluent_name: str
|
|
45140
45694
|
_python_name: str
|
|
@@ -45149,7 +45703,7 @@ class profiles(Group):
|
|
|
45149
45703
|
child_names: list[str]
|
|
45150
45704
|
command_names: list[str]
|
|
45151
45705
|
query_names: list[str]
|
|
45152
|
-
update_interval:
|
|
45706
|
+
update_interval: update_interval_2
|
|
45153
45707
|
circumferential_averaged_profile_enhanced_bands_check: circumferential_averaged_profile_enhanced_bands_check
|
|
45154
45708
|
def display_profile_point_cloud_data(self, profile_name: str, field_contour: bool, field_variable: str):
|
|
45155
45709
|
"""
|
|
@@ -45505,11 +46059,11 @@ class convergence_acceleration_for_stretched_meshes(Group):
|
|
|
45505
46059
|
child_names: list[str]
|
|
45506
46060
|
convergence_acceleration_type: convergence_acceleration_type_1
|
|
45507
46061
|
casm_cutoff_multiplier: casm_cutoff_multiplier_1
|
|
45508
|
-
class
|
|
46062
|
+
class enable_18(Boolean):
|
|
45509
46063
|
version: str
|
|
45510
46064
|
fluent_name: str
|
|
45511
46065
|
_python_name: str
|
|
45512
|
-
class
|
|
46066
|
+
class relaxation_factor_1(Real):
|
|
45513
46067
|
version: str
|
|
45514
46068
|
fluent_name: str
|
|
45515
46069
|
_python_name: str
|
|
@@ -45518,8 +46072,8 @@ class divergence_prevention(Group):
|
|
|
45518
46072
|
fluent_name: str
|
|
45519
46073
|
_python_name: str
|
|
45520
46074
|
child_names: list[str]
|
|
45521
|
-
enable:
|
|
45522
|
-
relaxation_factor:
|
|
46075
|
+
enable: enable_18
|
|
46076
|
+
relaxation_factor: relaxation_factor_1
|
|
45523
46077
|
class reactions_2(Boolean):
|
|
45524
46078
|
version: str
|
|
45525
46079
|
fluent_name: str
|
|
@@ -45587,11 +46141,11 @@ class frozen_flux(Boolean):
|
|
|
45587
46141
|
version: str
|
|
45588
46142
|
fluent_name: str
|
|
45589
46143
|
_python_name: str
|
|
45590
|
-
class
|
|
46144
|
+
class enable_19(Boolean):
|
|
45591
46145
|
version: str
|
|
45592
46146
|
fluent_name: str
|
|
45593
46147
|
_python_name: str
|
|
45594
|
-
class
|
|
46148
|
+
class relaxation_factor_2(Real):
|
|
45595
46149
|
version: str
|
|
45596
46150
|
fluent_name: str
|
|
45597
46151
|
_python_name: str
|
|
@@ -45608,8 +46162,8 @@ class high_order_term_relaxation(Group):
|
|
|
45608
46162
|
fluent_name: str
|
|
45609
46163
|
_python_name: str
|
|
45610
46164
|
child_names: list[str]
|
|
45611
|
-
enable:
|
|
45612
|
-
relaxation_factor:
|
|
46165
|
+
enable: enable_19
|
|
46166
|
+
relaxation_factor: relaxation_factor_2
|
|
45613
46167
|
select_variables: select_variables
|
|
45614
46168
|
type: type_12
|
|
45615
46169
|
_child_aliases: dict
|
|
@@ -46004,7 +46558,7 @@ class false_time_step_linearization(Boolean):
|
|
|
46004
46558
|
version: str
|
|
46005
46559
|
fluent_name: str
|
|
46006
46560
|
_python_name: str
|
|
46007
|
-
class
|
|
46561
|
+
class enable_20(Boolean):
|
|
46008
46562
|
version: str
|
|
46009
46563
|
fluent_name: str
|
|
46010
46564
|
_python_name: str
|
|
@@ -46033,7 +46587,7 @@ class auto_dt_advanced_controls(Group):
|
|
|
46033
46587
|
fluent_name: str
|
|
46034
46588
|
_python_name: str
|
|
46035
46589
|
child_names: list[str]
|
|
46036
|
-
enable:
|
|
46590
|
+
enable: enable_20
|
|
46037
46591
|
dt_init_limit: dt_init_limit
|
|
46038
46592
|
dt_max: dt_max_1
|
|
46039
46593
|
dt_factor_min: dt_factor_min
|
|
@@ -46427,7 +46981,7 @@ class set_damping_strength(Real):
|
|
|
46427
46981
|
version: str
|
|
46428
46982
|
fluent_name: str
|
|
46429
46983
|
_python_name: str
|
|
46430
|
-
class
|
|
46984
|
+
class verbosity_13(Boolean):
|
|
46431
46985
|
version: str
|
|
46432
46986
|
fluent_name: str
|
|
46433
46987
|
_python_name: str
|
|
@@ -46441,8 +46995,8 @@ class velocity_limiting_treatment(Group):
|
|
|
46441
46995
|
set_damping_strengths: set_damping_strengths
|
|
46442
46996
|
set_velocity_cutoff: set_velocity_cutoff
|
|
46443
46997
|
set_damping_strength: set_damping_strength
|
|
46444
|
-
verbosity:
|
|
46445
|
-
class
|
|
46998
|
+
verbosity: verbosity_13
|
|
46999
|
+
class solution_stabilization_1(Group):
|
|
46446
47000
|
version: str
|
|
46447
47001
|
fluent_name: str
|
|
46448
47002
|
_python_name: str
|
|
@@ -46476,7 +47030,7 @@ class multiphase_numerics(Group):
|
|
|
46476
47030
|
advanced_stability_controls: advanced_stability_controls
|
|
46477
47031
|
default_controls: default_controls
|
|
46478
47032
|
face_pressure_controls: face_pressure_controls
|
|
46479
|
-
solution_stabilization:
|
|
47033
|
+
solution_stabilization: solution_stabilization_1
|
|
46480
47034
|
energy: energy_1
|
|
46481
47035
|
class nb_gradient(String, AllowedValuesMixin):
|
|
46482
47036
|
version: str
|
|
@@ -46493,7 +47047,7 @@ class nita(Boolean):
|
|
|
46493
47047
|
version: str
|
|
46494
47048
|
fluent_name: str
|
|
46495
47049
|
_python_name: str
|
|
46496
|
-
class
|
|
47050
|
+
class verbosity_14(Integer):
|
|
46497
47051
|
version: str
|
|
46498
47052
|
fluent_name: str
|
|
46499
47053
|
_python_name: str
|
|
@@ -46501,11 +47055,11 @@ class skewness_neighbor_coupling_1(Boolean):
|
|
|
46501
47055
|
version: str
|
|
46502
47056
|
fluent_name: str
|
|
46503
47057
|
_python_name: str
|
|
46504
|
-
class
|
|
47058
|
+
class enable_21(Boolean):
|
|
46505
47059
|
version: str
|
|
46506
47060
|
fluent_name: str
|
|
46507
47061
|
_python_name: str
|
|
46508
|
-
class
|
|
47062
|
+
class options_9(String, AllowedValuesMixin):
|
|
46509
47063
|
version: str
|
|
46510
47064
|
fluent_name: str
|
|
46511
47065
|
_python_name: str
|
|
@@ -46514,8 +47068,8 @@ class multi_phase_setting(Group):
|
|
|
46514
47068
|
fluent_name: str
|
|
46515
47069
|
_python_name: str
|
|
46516
47070
|
child_names: list[str]
|
|
46517
|
-
enable:
|
|
46518
|
-
options:
|
|
47071
|
+
enable: enable_21
|
|
47072
|
+
options: options_9
|
|
46519
47073
|
class single_phase_setting(String, AllowedValuesMixin):
|
|
46520
47074
|
version: str
|
|
46521
47075
|
fluent_name: str
|
|
@@ -46532,7 +47086,7 @@ class nita_expert_controls(Group):
|
|
|
46532
47086
|
fluent_name: str
|
|
46533
47087
|
_python_name: str
|
|
46534
47088
|
child_names: list[str]
|
|
46535
|
-
verbosity:
|
|
47089
|
+
verbosity: verbosity_14
|
|
46536
47090
|
skewness_neighbor_coupling: skewness_neighbor_coupling_1
|
|
46537
47091
|
hybrid_nita_settings: hybrid_nita_settings
|
|
46538
47092
|
class high_order_pressure(Boolean):
|
|
@@ -46702,7 +47256,7 @@ class vof_numerics(Group):
|
|
|
46702
47256
|
force_treatment_of_unsteady_rc: force_treatment_of_unsteady_rc
|
|
46703
47257
|
unstructured_var_presto_scheme: unstructured_var_presto_scheme
|
|
46704
47258
|
new_framework_for_vof_specific_node_based_treatment: new_framework_for_vof_specific_node_based_treatment
|
|
46705
|
-
class
|
|
47259
|
+
class enable_22(Boolean):
|
|
46706
47260
|
version: str
|
|
46707
47261
|
fluent_name: str
|
|
46708
47262
|
_python_name: str
|
|
@@ -46719,10 +47273,10 @@ class warped_face_gradient_correction(Group):
|
|
|
46719
47273
|
fluent_name: str
|
|
46720
47274
|
_python_name: str
|
|
46721
47275
|
child_names: list[str]
|
|
46722
|
-
enable:
|
|
47276
|
+
enable: enable_22
|
|
46723
47277
|
mode: mode_1
|
|
46724
47278
|
turbulence_options: turbulence_options
|
|
46725
|
-
class
|
|
47279
|
+
class enable_23(Boolean):
|
|
46726
47280
|
version: str
|
|
46727
47281
|
fluent_name: str
|
|
46728
47282
|
_python_name: str
|
|
@@ -46739,7 +47293,7 @@ class high_speed_numerics(Group):
|
|
|
46739
47293
|
fluent_name: str
|
|
46740
47294
|
_python_name: str
|
|
46741
47295
|
child_names: list[str]
|
|
46742
|
-
enable:
|
|
47296
|
+
enable: enable_23
|
|
46743
47297
|
expert: expert_7
|
|
46744
47298
|
visualize_pressure_discontinuity_sensor: visualize_pressure_discontinuity_sensor
|
|
46745
47299
|
class species_disc_together(Boolean):
|
|
@@ -46827,11 +47381,11 @@ class p_v_controls(Group):
|
|
|
46827
47381
|
explicit_momentum_under_relaxation: explicit_momentum_under_relaxation
|
|
46828
47382
|
explicit_volume_fraction_under_relaxation: explicit_volume_fraction_under_relaxation
|
|
46829
47383
|
_child_aliases: dict
|
|
46830
|
-
class
|
|
47384
|
+
class relaxation_factor_3_child(Real):
|
|
46831
47385
|
version: str
|
|
46832
47386
|
fluent_name: str
|
|
46833
47387
|
_python_name: str
|
|
46834
|
-
class
|
|
47388
|
+
class relaxation_factor_3(NamedObject[relaxation_factor_3_child]):
|
|
46835
47389
|
version: str
|
|
46836
47390
|
fluent_name: str
|
|
46837
47391
|
_python_name: str
|
|
@@ -46889,7 +47443,7 @@ class relaxation_factor_2(NamedObject[relaxation_factor_2_child]):
|
|
|
46889
47443
|
to : str
|
|
46890
47444
|
Specify the name of the new object.
|
|
46891
47445
|
"""
|
|
46892
|
-
child_object_type:
|
|
47446
|
+
child_object_type: relaxation_factor_3_child
|
|
46893
47447
|
class under_relaxation_2_child(Real):
|
|
46894
47448
|
version: str
|
|
46895
47449
|
fluent_name: str
|
|
@@ -47386,11 +47940,11 @@ class acoustics_wave_eqn_controls(Group):
|
|
|
47386
47940
|
expert: expert_8
|
|
47387
47941
|
relative_convergence_criterion: relative_convergence_criterion
|
|
47388
47942
|
max_iter_per_timestep_count: max_iter_per_timestep_count
|
|
47389
|
-
class
|
|
47943
|
+
class solution_stabilization_2(Boolean):
|
|
47390
47944
|
version: str
|
|
47391
47945
|
fluent_name: str
|
|
47392
47946
|
_python_name: str
|
|
47393
|
-
class
|
|
47947
|
+
class verbosity_15(Integer):
|
|
47394
47948
|
version: str
|
|
47395
47949
|
fluent_name: str
|
|
47396
47950
|
_python_name: str
|
|
@@ -47541,7 +48095,7 @@ class ramp_scalars(Boolean):
|
|
|
47541
48095
|
version: str
|
|
47542
48096
|
fluent_name: str
|
|
47543
48097
|
_python_name: str
|
|
47544
|
-
class
|
|
48098
|
+
class models_1(Group):
|
|
47545
48099
|
version: str
|
|
47546
48100
|
fluent_name: str
|
|
47547
48101
|
_python_name: str
|
|
@@ -47608,13 +48162,13 @@ class contact_solution_controls(Group):
|
|
|
47608
48162
|
_python_name: str
|
|
47609
48163
|
child_names: list[str]
|
|
47610
48164
|
command_names: list[str]
|
|
47611
|
-
solution_stabilization:
|
|
47612
|
-
verbosity:
|
|
48165
|
+
solution_stabilization: solution_stabilization_2
|
|
48166
|
+
verbosity: verbosity_15
|
|
47613
48167
|
parameters: parameters_5
|
|
47614
48168
|
spatial: spatial
|
|
47615
48169
|
transient: transient
|
|
47616
48170
|
amg: amg
|
|
47617
|
-
models:
|
|
48171
|
+
models: models_1
|
|
47618
48172
|
methods: methods_3
|
|
47619
48173
|
miscellaneous: miscellaneous
|
|
47620
48174
|
def set_settings_to_default(self):
|
|
@@ -47787,7 +48341,7 @@ class residual_reduction_tolerance(Real):
|
|
|
47787
48341
|
version: str
|
|
47788
48342
|
fluent_name: str
|
|
47789
48343
|
_python_name: str
|
|
47790
|
-
class
|
|
48344
|
+
class method_11(String, AllowedValuesMixin):
|
|
47791
48345
|
version: str
|
|
47792
48346
|
fluent_name: str
|
|
47793
48347
|
_python_name: str
|
|
@@ -47803,7 +48357,7 @@ class mg_controls_1_child(Group):
|
|
|
47803
48357
|
cycle_type: cycle_type
|
|
47804
48358
|
termination_criteria: termination_criteria
|
|
47805
48359
|
residual_reduction_tolerance: residual_reduction_tolerance
|
|
47806
|
-
method:
|
|
48360
|
+
method: method_11
|
|
47807
48361
|
stabilization: stabilization_1
|
|
47808
48362
|
class mg_controls_1(NamedObject[mg_controls_1_child]):
|
|
47809
48363
|
version: str
|
|
@@ -47984,16 +48538,16 @@ class flexible_cycle_parameters(Group):
|
|
|
47984
48538
|
sweeps: sweeps
|
|
47985
48539
|
max_fine_relaxations: max_fine_relaxations
|
|
47986
48540
|
max_coarse_relaxations: max_coarse_relaxations
|
|
47987
|
-
class
|
|
48541
|
+
class verbosity_16(Integer):
|
|
47988
48542
|
version: str
|
|
47989
48543
|
fluent_name: str
|
|
47990
48544
|
_python_name: str
|
|
47991
|
-
class
|
|
48545
|
+
class options_10(Group):
|
|
47992
48546
|
version: str
|
|
47993
48547
|
fluent_name: str
|
|
47994
48548
|
_python_name: str
|
|
47995
48549
|
child_names: list[str]
|
|
47996
|
-
verbosity:
|
|
48550
|
+
verbosity: verbosity_16
|
|
47997
48551
|
class amg_controls(Group):
|
|
47998
48552
|
version: str
|
|
47999
48553
|
fluent_name: str
|
|
@@ -48002,7 +48556,7 @@ class amg_controls(Group):
|
|
|
48002
48556
|
scalar_parameters: scalar_parameters
|
|
48003
48557
|
coupled_parameters: coupled_parameters
|
|
48004
48558
|
flexible_cycle_parameters: flexible_cycle_parameters
|
|
48005
|
-
options:
|
|
48559
|
+
options: options_10
|
|
48006
48560
|
class pre_sweeps_3(Integer):
|
|
48007
48561
|
version: str
|
|
48008
48562
|
fluent_name: str
|
|
@@ -48049,7 +48603,7 @@ class species_correction_reduction(Real):
|
|
|
48049
48603
|
version: str
|
|
48050
48604
|
fluent_name: str
|
|
48051
48605
|
_python_name: str
|
|
48052
|
-
class
|
|
48606
|
+
class relaxation_factor_4(Group):
|
|
48053
48607
|
version: str
|
|
48054
48608
|
fluent_name: str
|
|
48055
48609
|
_python_name: str
|
|
@@ -48058,12 +48612,12 @@ class relaxation_factor_3(Group):
|
|
|
48058
48612
|
correction_reduction: correction_reduction
|
|
48059
48613
|
correction_smoothing: correction_smoothing
|
|
48060
48614
|
species_correction_reduction: species_correction_reduction
|
|
48061
|
-
class
|
|
48615
|
+
class options_11(Group):
|
|
48062
48616
|
version: str
|
|
48063
48617
|
fluent_name: str
|
|
48064
48618
|
_python_name: str
|
|
48065
48619
|
child_names: list[str]
|
|
48066
|
-
verbosity:
|
|
48620
|
+
verbosity: verbosity_16
|
|
48067
48621
|
class fas_mg_controls(Group):
|
|
48068
48622
|
version: str
|
|
48069
48623
|
fluent_name: str
|
|
@@ -48071,8 +48625,8 @@ class fas_mg_controls(Group):
|
|
|
48071
48625
|
child_names: list[str]
|
|
48072
48626
|
fixed_cycle_parameters: fixed_cycle_parameters_3
|
|
48073
48627
|
coarsening_parameters: coarsening_parameters_3
|
|
48074
|
-
relaxation_factor:
|
|
48075
|
-
options:
|
|
48628
|
+
relaxation_factor: relaxation_factor_4
|
|
48629
|
+
options: options_11
|
|
48076
48630
|
class enable_gpu(Boolean):
|
|
48077
48631
|
version: str
|
|
48078
48632
|
fluent_name: str
|
|
@@ -48672,7 +49226,7 @@ class controls_1(Group):
|
|
|
48672
49226
|
command_names: list[str]
|
|
48673
49227
|
courant_number: courant_number
|
|
48674
49228
|
p_v_controls: p_v_controls
|
|
48675
|
-
relaxation_factor:
|
|
49229
|
+
relaxation_factor: relaxation_factor_3
|
|
48676
49230
|
under_relaxation: under_relaxation_2
|
|
48677
49231
|
pseudo_time_method_local_time_step: pseudo_time_method_local_time_step
|
|
48678
49232
|
pseudo_time_explicit_relaxation_factor: pseudo_time_explicit_relaxation_factor
|
|
@@ -48735,10 +49289,6 @@ class cell_zones_7(StringList, AllowedValuesMixin):
|
|
|
48735
49289
|
version: str
|
|
48736
49290
|
fluent_name: str
|
|
48737
49291
|
_python_name: str
|
|
48738
|
-
class face_zones(StringList, AllowedValuesMixin):
|
|
48739
|
-
version: str
|
|
48740
|
-
fluent_name: str
|
|
48741
|
-
_python_name: str
|
|
48742
49292
|
class physics_1(StringList, AllowedValuesMixin):
|
|
48743
49293
|
version: str
|
|
48744
49294
|
fluent_name: str
|
|
@@ -49730,7 +50280,7 @@ class input_params(StringList, AllowedValuesMixin):
|
|
|
49730
50280
|
version: str
|
|
49731
50281
|
fluent_name: str
|
|
49732
50282
|
_python_name: str
|
|
49733
|
-
class
|
|
50283
|
+
class user_defined_14_child(Group):
|
|
49734
50284
|
version: str
|
|
49735
50285
|
fluent_name: str
|
|
49736
50286
|
_python_name: str
|
|
@@ -49746,7 +50296,7 @@ class user_defined_15_child(Group):
|
|
|
49746
50296
|
"""
|
|
49747
50297
|
Option to make report definition available as an output parameter.
|
|
49748
50298
|
"""
|
|
49749
|
-
class
|
|
50299
|
+
class user_defined_14(NamedObject[user_defined_14_child]):
|
|
49750
50300
|
version: str
|
|
49751
50301
|
fluent_name: str
|
|
49752
50302
|
_python_name: str
|
|
@@ -49804,7 +50354,7 @@ class user_defined_15(NamedObject[user_defined_15_child]):
|
|
|
49804
50354
|
to : str
|
|
49805
50355
|
Specify the name of the new object.
|
|
49806
50356
|
"""
|
|
49807
|
-
child_object_type:
|
|
50357
|
+
child_object_type: user_defined_14_child
|
|
49808
50358
|
class nodal_diameters(StringList, AllowedValuesMixin):
|
|
49809
50359
|
version: str
|
|
49810
50360
|
fluent_name: str
|
|
@@ -50222,7 +50772,7 @@ class report_definitions(Group):
|
|
|
50222
50772
|
flux: flux_1
|
|
50223
50773
|
vbm: vbm
|
|
50224
50774
|
injection: injection_2
|
|
50225
|
-
user_defined:
|
|
50775
|
+
user_defined: user_defined_14
|
|
50226
50776
|
aeromechanics: aeromechanics
|
|
50227
50777
|
icing: icing_3
|
|
50228
50778
|
expression: expression_7
|
|
@@ -50394,7 +50944,7 @@ class n_display(Integer):
|
|
|
50394
50944
|
version: str
|
|
50395
50945
|
fluent_name: str
|
|
50396
50946
|
_python_name: str
|
|
50397
|
-
class
|
|
50947
|
+
class options_12(Group):
|
|
50398
50948
|
version: str
|
|
50399
50949
|
fluent_name: str
|
|
50400
50950
|
_python_name: str
|
|
@@ -50473,7 +51023,7 @@ class minor_gridlines(Group):
|
|
|
50473
51023
|
child_names: list[str]
|
|
50474
51024
|
color: color
|
|
50475
51025
|
weight: weight_1
|
|
50476
|
-
class
|
|
51026
|
+
class x_3(Group):
|
|
50477
51027
|
version: str
|
|
50478
51028
|
fluent_name: str
|
|
50479
51029
|
_python_name: str
|
|
@@ -50488,7 +51038,7 @@ class x_1(Group):
|
|
|
50488
51038
|
major_gridlines: major_gridlines
|
|
50489
51039
|
show_minor_gridlines: show_minor_gridlines
|
|
50490
51040
|
minor_gridlines: minor_gridlines
|
|
50491
|
-
class
|
|
51041
|
+
class y_3(Group):
|
|
50492
51042
|
version: str
|
|
50493
51043
|
fluent_name: str
|
|
50494
51044
|
_python_name: str
|
|
@@ -50512,8 +51062,8 @@ class axes(Group):
|
|
|
50512
51062
|
fluent_name: str
|
|
50513
51063
|
_python_name: str
|
|
50514
51064
|
child_names: list[str]
|
|
50515
|
-
x:
|
|
50516
|
-
y:
|
|
51065
|
+
x: x_3
|
|
51066
|
+
y: y_3
|
|
50517
51067
|
background_color: background_color
|
|
50518
51068
|
class pattern(String, AllowedValuesMixin):
|
|
50519
51069
|
version: str
|
|
@@ -50611,7 +51161,7 @@ class residual(Group):
|
|
|
50611
51161
|
child_names: list[str]
|
|
50612
51162
|
command_names: list[str]
|
|
50613
51163
|
equations: equations_1
|
|
50614
|
-
options:
|
|
51164
|
+
options: options_12
|
|
50615
51165
|
axes: axes
|
|
50616
51166
|
curves: curves
|
|
50617
51167
|
def reset(self):
|
|
@@ -51551,7 +52101,7 @@ class defaults(NamedObject[defaults_child]):
|
|
|
51551
52101
|
Specify the name of the new object.
|
|
51552
52102
|
"""
|
|
51553
52103
|
child_object_type: defaults_child
|
|
51554
|
-
class
|
|
52104
|
+
class enabled_61(Boolean):
|
|
51555
52105
|
version: str
|
|
51556
52106
|
fluent_name: str
|
|
51557
52107
|
_python_name: str
|
|
@@ -51568,7 +52118,7 @@ class localized_turb_init(Group):
|
|
|
51568
52118
|
fluent_name: str
|
|
51569
52119
|
_python_name: str
|
|
51570
52120
|
child_names: list[str]
|
|
51571
|
-
enabled:
|
|
52121
|
+
enabled: enabled_61
|
|
51572
52122
|
turbulent_intensity: turbulent_intensity_1
|
|
51573
52123
|
turbulent_viscosity_ratio: turbulent_viscosity_ratio_1
|
|
51574
52124
|
class iter_count_1(Integer):
|
|
@@ -51985,7 +52535,7 @@ class initialization_1(Group):
|
|
|
51985
52535
|
"""
|
|
51986
52536
|
Levelset function automatic initialization.
|
|
51987
52537
|
"""
|
|
51988
|
-
class
|
|
52538
|
+
class enable_24(Boolean):
|
|
51989
52539
|
version: str
|
|
51990
52540
|
fluent_name: str
|
|
51991
52541
|
_python_name: str
|
|
@@ -52015,7 +52565,7 @@ class execute_commands_child(Group):
|
|
|
52015
52565
|
_python_name: str
|
|
52016
52566
|
child_names: list[str]
|
|
52017
52567
|
name: name_4
|
|
52018
|
-
enable:
|
|
52568
|
+
enable: enable_24
|
|
52019
52569
|
execution_type: execution_type
|
|
52020
52570
|
execution_command: execution_command
|
|
52021
52571
|
when_to_execute: when_to_execute
|
|
@@ -52116,7 +52666,7 @@ class append_filename_with(String, AllowedValuesMixin):
|
|
|
52116
52666
|
version: str
|
|
52117
52667
|
fluent_name: str
|
|
52118
52668
|
_python_name: str
|
|
52119
|
-
class storage_type(
|
|
52669
|
+
class storage_type(String, AllowedValuesMixin):
|
|
52120
52670
|
version: str
|
|
52121
52671
|
fluent_name: str
|
|
52122
52672
|
_python_name: str
|
|
@@ -52255,7 +52805,7 @@ class solution_animations(NamedObject[solution_animations_child]):
|
|
|
52255
52805
|
"""
|
|
52256
52806
|
child_object_type: solution_animations_child
|
|
52257
52807
|
_child_aliases: dict
|
|
52258
|
-
class
|
|
52808
|
+
class enabled_62(Boolean):
|
|
52259
52809
|
version: str
|
|
52260
52810
|
fluent_name: str
|
|
52261
52811
|
_python_name: str
|
|
@@ -52375,7 +52925,7 @@ class case_modification(Group):
|
|
|
52375
52925
|
_python_name: str
|
|
52376
52926
|
child_names: list[str]
|
|
52377
52927
|
command_names: list[str]
|
|
52378
|
-
enabled:
|
|
52928
|
+
enabled: enabled_62
|
|
52379
52929
|
initialization_method: initialization_method
|
|
52380
52930
|
case_modification: case_modification_1
|
|
52381
52931
|
def automatic_initialization(self, initialization_type: str, data_file_name: str, init_from_solution: str, data_file_name2: str):
|
|
@@ -52504,7 +53054,7 @@ class active_2(Boolean):
|
|
|
52504
53054
|
version: str
|
|
52505
53055
|
fluent_name: str
|
|
52506
53056
|
_python_name: str
|
|
52507
|
-
class
|
|
53057
|
+
class verbosity_17(Integer):
|
|
52508
53058
|
version: str
|
|
52509
53059
|
fluent_name: str
|
|
52510
53060
|
_python_name: str
|
|
@@ -52521,7 +53071,7 @@ class register_based_child(Group):
|
|
|
52521
53071
|
register: register_2
|
|
52522
53072
|
frequency: frequency_5
|
|
52523
53073
|
active: active_2
|
|
52524
|
-
verbosity:
|
|
53074
|
+
verbosity: verbosity_17
|
|
52525
53075
|
monitor: monitor_2
|
|
52526
53076
|
class register_based(NamedObject[register_based_child]):
|
|
52527
53077
|
version: str
|
|
@@ -52606,7 +53156,7 @@ class calculation_activity(Group):
|
|
|
52606
53156
|
solution_animations: solution_animations
|
|
52607
53157
|
case_modification: case_modification
|
|
52608
53158
|
poor_mesh_numerics: poor_mesh_numerics
|
|
52609
|
-
class
|
|
53159
|
+
class verbosity_18(Integer):
|
|
52610
53160
|
version: str
|
|
52611
53161
|
fluent_name: str
|
|
52612
53162
|
_python_name: str
|
|
@@ -52660,13 +53210,13 @@ class pseudo_time_settings(Group):
|
|
|
52660
53210
|
fluent_name: str
|
|
52661
53211
|
_python_name: str
|
|
52662
53212
|
child_names: list[str]
|
|
52663
|
-
verbosity:
|
|
53213
|
+
verbosity: verbosity_18
|
|
52664
53214
|
time_step_method: time_step_method
|
|
52665
53215
|
class iter_count_2(Integer):
|
|
52666
53216
|
version: str
|
|
52667
53217
|
fluent_name: str
|
|
52668
53218
|
_python_name: str
|
|
52669
|
-
class
|
|
53219
|
+
class enabled_63(Boolean):
|
|
52670
53220
|
version: str
|
|
52671
53221
|
fluent_name: str
|
|
52672
53222
|
_python_name: str
|
|
@@ -52707,7 +53257,7 @@ class adaptive_time_stepping(Group):
|
|
|
52707
53257
|
fluent_name: str
|
|
52708
53258
|
_python_name: str
|
|
52709
53259
|
child_names: list[str]
|
|
52710
|
-
enabled:
|
|
53260
|
+
enabled: enabled_63
|
|
52711
53261
|
user_defined_timestep: user_defined_timestep
|
|
52712
53262
|
error_tolerance: error_tolerance
|
|
52713
53263
|
time_end: time_end
|
|
@@ -52716,7 +53266,7 @@ class adaptive_time_stepping(Group):
|
|
|
52716
53266
|
min_step_change_factor: min_step_change_factor
|
|
52717
53267
|
max_step_change_factor: max_step_change_factor
|
|
52718
53268
|
fixed_time_step_count: fixed_time_step_count
|
|
52719
|
-
class
|
|
53269
|
+
class enabled_64(Boolean):
|
|
52720
53270
|
version: str
|
|
52721
53271
|
fluent_name: str
|
|
52722
53272
|
_python_name: str
|
|
@@ -52741,7 +53291,7 @@ class cfl_based_adaptive_time_stepping(Group):
|
|
|
52741
53291
|
fluent_name: str
|
|
52742
53292
|
_python_name: str
|
|
52743
53293
|
child_names: list[str]
|
|
52744
|
-
enabled:
|
|
53294
|
+
enabled: enabled_64
|
|
52745
53295
|
user_defined_timestep: user_defined_timestep
|
|
52746
53296
|
desired_cfl: desired_cfl
|
|
52747
53297
|
time_end: time_end
|
|
@@ -52760,7 +53310,7 @@ class profile_update_interval(Integer):
|
|
|
52760
53310
|
version: str
|
|
52761
53311
|
fluent_name: str
|
|
52762
53312
|
_python_name: str
|
|
52763
|
-
class
|
|
53313
|
+
class enable_25(Boolean):
|
|
52764
53314
|
version: str
|
|
52765
53315
|
fluent_name: str
|
|
52766
53316
|
_python_name: str
|
|
@@ -52782,7 +53332,7 @@ class solution_steering(Group):
|
|
|
52782
53332
|
_python_name: str
|
|
52783
53333
|
child_names: list[str]
|
|
52784
53334
|
command_names: list[str]
|
|
52785
|
-
enable:
|
|
53335
|
+
enable: enable_25
|
|
52786
53336
|
flow_type: flow_type
|
|
52787
53337
|
first_to_second_order_blending: first_to_second_order_blending_2
|
|
52788
53338
|
use_fmg: use_fmg
|
|
@@ -52817,7 +53367,7 @@ class type_14(String, AllowedValuesMixin):
|
|
|
52817
53367
|
version: str
|
|
52818
53368
|
fluent_name: str
|
|
52819
53369
|
_python_name: str
|
|
52820
|
-
class
|
|
53370
|
+
class method_12(String, AllowedValuesMixin):
|
|
52821
53371
|
version: str
|
|
52822
53372
|
fluent_name: str
|
|
52823
53373
|
_python_name: str
|
|
@@ -52885,7 +53435,7 @@ class max_time_step_size(Real):
|
|
|
52885
53435
|
version: str
|
|
52886
53436
|
fluent_name: str
|
|
52887
53437
|
_python_name: str
|
|
52888
|
-
class
|
|
53438
|
+
class update_interval_3(Integer):
|
|
52889
53439
|
version: str
|
|
52890
53440
|
fluent_name: str
|
|
52891
53441
|
_python_name: str
|
|
@@ -52901,7 +53451,7 @@ class cfl_based_time_stepping(Group):
|
|
|
52901
53451
|
max_time_step_size: max_time_step_size
|
|
52902
53452
|
min_step_change_factor: min_step_change_factor
|
|
52903
53453
|
max_step_change_factor: max_step_change_factor
|
|
52904
|
-
update_interval:
|
|
53454
|
+
update_interval: update_interval_3
|
|
52905
53455
|
class control_time_step_size_variation(Boolean):
|
|
52906
53456
|
version: str
|
|
52907
53457
|
fluent_name: str
|
|
@@ -52938,7 +53488,7 @@ class error_based_time_stepping(Group):
|
|
|
52938
53488
|
max_time_step_size: max_time_step_size
|
|
52939
53489
|
min_step_change_factor: min_step_change_factor
|
|
52940
53490
|
max_step_change_factor: max_step_change_factor
|
|
52941
|
-
update_interval:
|
|
53491
|
+
update_interval: update_interval_3
|
|
52942
53492
|
class undo_timestep(Boolean):
|
|
52943
53493
|
version: str
|
|
52944
53494
|
fluent_name: str
|
|
@@ -52951,7 +53501,7 @@ class rotating_mesh_flow_predictor(Boolean):
|
|
|
52951
53501
|
version: str
|
|
52952
53502
|
fluent_name: str
|
|
52953
53503
|
_python_name: str
|
|
52954
|
-
class
|
|
53504
|
+
class enabled_65(Boolean):
|
|
52955
53505
|
version: str
|
|
52956
53506
|
fluent_name: str
|
|
52957
53507
|
_python_name: str
|
|
@@ -52964,7 +53514,7 @@ class mp_specific_time_stepping(Group):
|
|
|
52964
53514
|
fluent_name: str
|
|
52965
53515
|
_python_name: str
|
|
52966
53516
|
child_names: list[str]
|
|
52967
|
-
enabled:
|
|
53517
|
+
enabled: enabled_65
|
|
52968
53518
|
global_courant_number: global_courant_number
|
|
52969
53519
|
initial_time_step_size: initial_time_step_size
|
|
52970
53520
|
fixed_time_step_size: fixed_time_step_size
|
|
@@ -52972,12 +53522,12 @@ class mp_specific_time_stepping(Group):
|
|
|
52972
53522
|
max_time_step_size: max_time_step_size
|
|
52973
53523
|
min_step_change_factor: min_step_change_factor
|
|
52974
53524
|
max_step_change_factor: max_step_change_factor
|
|
52975
|
-
update_interval:
|
|
53525
|
+
update_interval: update_interval_3
|
|
52976
53526
|
class udf_hook(String, AllowedValuesMixin):
|
|
52977
53527
|
version: str
|
|
52978
53528
|
fluent_name: str
|
|
52979
53529
|
_python_name: str
|
|
52980
|
-
class
|
|
53530
|
+
class enabled_66(Boolean):
|
|
52981
53531
|
version: str
|
|
52982
53532
|
fluent_name: str
|
|
52983
53533
|
_python_name: str
|
|
@@ -53014,7 +53564,7 @@ class fixed_periodic(Group):
|
|
|
53014
53564
|
fluent_name: str
|
|
53015
53565
|
_python_name: str
|
|
53016
53566
|
child_names: list[str]
|
|
53017
|
-
enabled:
|
|
53567
|
+
enabled: enabled_66
|
|
53018
53568
|
fixed_periodic_type: fixed_periodic_type
|
|
53019
53569
|
period: period
|
|
53020
53570
|
frequency: frequency_6
|
|
@@ -53067,7 +53617,7 @@ class time_scale_options(Group):
|
|
|
53067
53617
|
gravity_scale: gravity_scale
|
|
53068
53618
|
surface_tension_scale: surface_tension_scale
|
|
53069
53619
|
acoustic_scale: acoustic_scale
|
|
53070
|
-
class
|
|
53620
|
+
class verbosity_19(Boolean):
|
|
53071
53621
|
version: str
|
|
53072
53622
|
fluent_name: str
|
|
53073
53623
|
_python_name: str
|
|
@@ -53079,7 +53629,7 @@ class multiphase_specific_time_constraints(Group):
|
|
|
53079
53629
|
moving_mesh_cfl_constraint: moving_mesh_cfl_constraint
|
|
53080
53630
|
physics_based_constraint: physics_based_constraint
|
|
53081
53631
|
time_scale_options: time_scale_options
|
|
53082
|
-
verbosity:
|
|
53632
|
+
verbosity: verbosity_19
|
|
53083
53633
|
class enable_solid_time_step(Boolean):
|
|
53084
53634
|
version: str
|
|
53085
53635
|
fluent_name: str
|
|
@@ -53173,7 +53723,7 @@ class transient_controls(Group):
|
|
|
53173
53723
|
_python_name: str
|
|
53174
53724
|
child_names: list[str]
|
|
53175
53725
|
type: type_14
|
|
53176
|
-
method:
|
|
53726
|
+
method: method_12
|
|
53177
53727
|
duration_specification_method: duration_specification_method
|
|
53178
53728
|
specified_time_step: specified_time_step
|
|
53179
53729
|
incremental_time: incremental_time
|
|
@@ -53213,7 +53763,7 @@ class pollutants(Group):
|
|
|
53213
53763
|
child_names: list[str]
|
|
53214
53764
|
postprocess: postprocess
|
|
53215
53765
|
num_of_post_iter_per_timestep: num_of_post_iter_per_timestep
|
|
53216
|
-
class
|
|
53766
|
+
class enabled_67(Boolean):
|
|
53217
53767
|
version: str
|
|
53218
53768
|
fluent_name: str
|
|
53219
53769
|
_python_name: str
|
|
@@ -53270,7 +53820,7 @@ class data_sampling(Group):
|
|
|
53270
53820
|
fluent_name: str
|
|
53271
53821
|
_python_name: str
|
|
53272
53822
|
child_names: list[str]
|
|
53273
|
-
enabled:
|
|
53823
|
+
enabled: enabled_67
|
|
53274
53824
|
sampling_interval: sampling_interval
|
|
53275
53825
|
time_sampled: time_sampled
|
|
53276
53826
|
flow_shear_stresses: flow_shear_stresses
|
|
@@ -53699,7 +54249,7 @@ class theta_1(Real):
|
|
|
53699
54249
|
version: str
|
|
53700
54250
|
fluent_name: str
|
|
53701
54251
|
_python_name: str
|
|
53702
|
-
class
|
|
54252
|
+
class z_3(Real):
|
|
53703
54253
|
version: str
|
|
53704
54254
|
fluent_name: str
|
|
53705
54255
|
_python_name: str
|
|
@@ -53723,7 +54273,7 @@ class point_surface_child(Group):
|
|
|
53723
54273
|
point: point_3
|
|
53724
54274
|
r: r_1
|
|
53725
54275
|
theta: theta_1
|
|
53726
|
-
z:
|
|
54276
|
+
z: z_3
|
|
53727
54277
|
snap_method: snap_method
|
|
53728
54278
|
dynamic: dynamic
|
|
53729
54279
|
def display(self):
|
|
@@ -53946,19 +54496,19 @@ class rake_surface(NamedObject[rake_surface_child]):
|
|
|
53946
54496
|
Specify the name of the new object.
|
|
53947
54497
|
"""
|
|
53948
54498
|
child_object_type: rake_surface_child
|
|
53949
|
-
class
|
|
54499
|
+
class method_13(String, AllowedValuesMixin):
|
|
53950
54500
|
version: str
|
|
53951
54501
|
fluent_name: str
|
|
53952
54502
|
_python_name: str
|
|
53953
|
-
class
|
|
54503
|
+
class x_4(Real):
|
|
53954
54504
|
version: str
|
|
53955
54505
|
fluent_name: str
|
|
53956
54506
|
_python_name: str
|
|
53957
|
-
class
|
|
54507
|
+
class y_4(Real):
|
|
53958
54508
|
version: str
|
|
53959
54509
|
fluent_name: str
|
|
53960
54510
|
_python_name: str
|
|
53961
|
-
class
|
|
54511
|
+
class z_4(Real):
|
|
53962
54512
|
version: str
|
|
53963
54513
|
fluent_name: str
|
|
53964
54514
|
_python_name: str
|
|
@@ -54005,10 +54555,10 @@ class plane_surface_child(Group):
|
|
|
54005
54555
|
child_names: list[str]
|
|
54006
54556
|
command_names: list[str]
|
|
54007
54557
|
name: name_4
|
|
54008
|
-
method:
|
|
54009
|
-
x:
|
|
54010
|
-
y:
|
|
54011
|
-
z:
|
|
54558
|
+
method: method_13
|
|
54559
|
+
x: x_4
|
|
54560
|
+
y: y_4
|
|
54561
|
+
z: z_4
|
|
54012
54562
|
point: point_3
|
|
54013
54563
|
normal_computation_method: normal_computation_method
|
|
54014
54564
|
surface_aligned_normal: surface_aligned_normal
|
|
@@ -54484,7 +55034,7 @@ class surface_2(StringList, AllowedValuesMixin):
|
|
|
54484
55034
|
version: str
|
|
54485
55035
|
fluent_name: str
|
|
54486
55036
|
_python_name: str
|
|
54487
|
-
class
|
|
55037
|
+
class center_of_rotation_1(RealList):
|
|
54488
55038
|
version: str
|
|
54489
55039
|
fluent_name: str
|
|
54490
55040
|
_python_name: str
|
|
@@ -54508,7 +55058,7 @@ class transform_surface_child(Group):
|
|
|
54508
55058
|
command_names: list[str]
|
|
54509
55059
|
name: name_4
|
|
54510
55060
|
surface: surface_2
|
|
54511
|
-
center_of_rotation:
|
|
55061
|
+
center_of_rotation: center_of_rotation_1
|
|
54512
55062
|
angle_of_rotation: angle_of_rotation
|
|
54513
55063
|
translation_distance: translation_distance
|
|
54514
55064
|
iso_distance: iso_distance
|
|
@@ -55284,7 +55834,7 @@ class gap(Boolean):
|
|
|
55284
55834
|
version: str
|
|
55285
55835
|
fluent_name: str
|
|
55286
55836
|
_python_name: str
|
|
55287
|
-
class
|
|
55837
|
+
class options_13(Group):
|
|
55288
55838
|
version: str
|
|
55289
55839
|
fluent_name: str
|
|
55290
55840
|
_python_name: str
|
|
@@ -55406,7 +55956,7 @@ class mesh_2_child(Group):
|
|
|
55406
55956
|
name: name_25
|
|
55407
55957
|
surfaces_list: surfaces_list
|
|
55408
55958
|
locations: locations_1
|
|
55409
|
-
options:
|
|
55959
|
+
options: options_13
|
|
55410
55960
|
edge_type: edge_type
|
|
55411
55961
|
shrink_factor: shrink_factor
|
|
55412
55962
|
coloring: coloring
|
|
@@ -55592,7 +56142,7 @@ class contour_lines(Boolean):
|
|
|
55592
56142
|
version: str
|
|
55593
56143
|
fluent_name: str
|
|
55594
56144
|
_python_name: str
|
|
55595
|
-
class
|
|
56145
|
+
class options_14(Group):
|
|
55596
56146
|
version: str
|
|
55597
56147
|
fluent_name: str
|
|
55598
56148
|
_python_name: str
|
|
@@ -55745,7 +56295,7 @@ class contour_child(Group):
|
|
|
55745
56295
|
locations: locations_1
|
|
55746
56296
|
range_option: range_option
|
|
55747
56297
|
range_options: range_options
|
|
55748
|
-
options:
|
|
56298
|
+
options: options_14
|
|
55749
56299
|
filled: filled_1
|
|
55750
56300
|
node_values: node_values
|
|
55751
56301
|
boundary_values: boundary_values
|
|
@@ -55875,7 +56425,7 @@ class skip(Integer):
|
|
|
55875
56425
|
version: str
|
|
55876
56426
|
fluent_name: str
|
|
55877
56427
|
_python_name: str
|
|
55878
|
-
class
|
|
56428
|
+
class options_15(Group):
|
|
55879
56429
|
version: str
|
|
55880
56430
|
fluent_name: str
|
|
55881
56431
|
_python_name: str
|
|
@@ -55957,7 +56507,7 @@ class vector_1_child(Group):
|
|
|
55957
56507
|
locations: locations_1
|
|
55958
56508
|
range_option: range_option
|
|
55959
56509
|
range_options: range_options
|
|
55960
|
-
options:
|
|
56510
|
+
options: options_15
|
|
55961
56511
|
scale: scale_4
|
|
55962
56512
|
style: style
|
|
55963
56513
|
skip: skip
|
|
@@ -56323,7 +56873,7 @@ class relative_1(Boolean):
|
|
|
56323
56873
|
version: str
|
|
56324
56874
|
fluent_name: str
|
|
56325
56875
|
_python_name: str
|
|
56326
|
-
class
|
|
56876
|
+
class options_16(Group):
|
|
56327
56877
|
version: str
|
|
56328
56878
|
fluent_name: str
|
|
56329
56879
|
_python_name: str
|
|
@@ -56420,7 +56970,7 @@ class on_location(Group):
|
|
|
56420
56970
|
physics: physics_1
|
|
56421
56971
|
geometry: geometry_10
|
|
56422
56972
|
surfaces: surfaces_4
|
|
56423
|
-
class
|
|
56973
|
+
class enabled_68(Boolean):
|
|
56424
56974
|
version: str
|
|
56425
56975
|
fluent_name: str
|
|
56426
56976
|
_python_name: str
|
|
@@ -56441,7 +56991,7 @@ class plot_5(Group):
|
|
|
56441
56991
|
fluent_name: str
|
|
56442
56992
|
_python_name: str
|
|
56443
56993
|
child_names: list[str]
|
|
56444
|
-
enabled:
|
|
56994
|
+
enabled: enabled_68
|
|
56445
56995
|
x_axis_function: x_axis_function
|
|
56446
56996
|
to_file_enabled: to_file_enabled
|
|
56447
56997
|
file_name: file_name_12
|
|
@@ -56700,7 +57250,7 @@ class pathline_child(Group):
|
|
|
56700
57250
|
range_options: range_options_1
|
|
56701
57251
|
style_attribute: style_attribute
|
|
56702
57252
|
style_attributes: style_attributes
|
|
56703
|
-
options:
|
|
57253
|
+
options: options_16
|
|
56704
57254
|
accuracy_control: accuracy_control_1
|
|
56705
57255
|
option: option_46
|
|
56706
57256
|
step: step
|
|
@@ -56894,7 +57444,7 @@ class variable_1(Group):
|
|
|
56894
57444
|
size_by: size_by_1
|
|
56895
57445
|
range: range_3
|
|
56896
57446
|
range_options: range_options_2
|
|
56897
|
-
class
|
|
57447
|
+
class options_18(Group):
|
|
56898
57448
|
version: str
|
|
56899
57449
|
fluent_name: str
|
|
56900
57450
|
_python_name: str
|
|
@@ -56909,7 +57459,7 @@ class sphere_settings(Group):
|
|
|
56909
57459
|
child_names: list[str]
|
|
56910
57460
|
scale: scale_7
|
|
56911
57461
|
sphere_lod: sphere_lod_2
|
|
56912
|
-
options:
|
|
57462
|
+
options: options_18
|
|
56913
57463
|
class style_attribute_1(Group):
|
|
56914
57464
|
version: str
|
|
56915
57465
|
fluent_name: str
|
|
@@ -56954,7 +57504,7 @@ class constant_color(Group):
|
|
|
56954
57504
|
fluent_name: str
|
|
56955
57505
|
_python_name: str
|
|
56956
57506
|
child_names: list[str]
|
|
56957
|
-
enabled:
|
|
57507
|
+
enabled: enabled_56
|
|
56958
57508
|
color: color_3
|
|
56959
57509
|
class vector_of(String, AllowedValuesMixin):
|
|
56960
57510
|
version: str
|
|
@@ -57037,7 +57587,7 @@ class track_pdf_particles(Boolean):
|
|
|
57037
57587
|
version: str
|
|
57038
57588
|
fluent_name: str
|
|
57039
57589
|
_python_name: str
|
|
57040
|
-
class
|
|
57590
|
+
class enabled_69(Boolean):
|
|
57041
57591
|
version: str
|
|
57042
57592
|
fluent_name: str
|
|
57043
57593
|
_python_name: str
|
|
@@ -57050,7 +57600,7 @@ class track_single_particle_stream_1(Group):
|
|
|
57050
57600
|
fluent_name: str
|
|
57051
57601
|
_python_name: str
|
|
57052
57602
|
child_names: list[str]
|
|
57053
|
-
enabled:
|
|
57603
|
+
enabled: enabled_69
|
|
57054
57604
|
stream_id: stream_id
|
|
57055
57605
|
class skip_2(Integer):
|
|
57056
57606
|
version: str
|
|
@@ -57083,7 +57633,7 @@ class outside(Boolean):
|
|
|
57083
57633
|
version: str
|
|
57084
57634
|
fluent_name: str
|
|
57085
57635
|
_python_name: str
|
|
57086
|
-
class
|
|
57636
|
+
class options_19(Group):
|
|
57087
57637
|
version: str
|
|
57088
57638
|
fluent_name: str
|
|
57089
57639
|
_python_name: str
|
|
@@ -57091,7 +57641,7 @@ class options_18(Group):
|
|
|
57091
57641
|
option: option_2
|
|
57092
57642
|
inside: inside_1
|
|
57093
57643
|
outside: outside
|
|
57094
|
-
class
|
|
57644
|
+
class enabled_70(Boolean):
|
|
57095
57645
|
version: str
|
|
57096
57646
|
fluent_name: str
|
|
57097
57647
|
_python_name: str
|
|
@@ -57109,11 +57659,11 @@ class filter_settings(Group):
|
|
|
57109
57659
|
_python_name: str
|
|
57110
57660
|
child_names: list[str]
|
|
57111
57661
|
field: field_8
|
|
57112
|
-
options:
|
|
57113
|
-
enabled:
|
|
57662
|
+
options: options_19
|
|
57663
|
+
enabled: enabled_70
|
|
57114
57664
|
filter_minimum: filter_minimum
|
|
57115
57665
|
filter_maximum: filter_maximum
|
|
57116
|
-
class
|
|
57666
|
+
class enabled_71(Boolean):
|
|
57117
57667
|
version: str
|
|
57118
57668
|
fluent_name: str
|
|
57119
57669
|
_python_name: str
|
|
@@ -57150,17 +57700,17 @@ class filter_setting(Group):
|
|
|
57150
57700
|
fluent_name: str
|
|
57151
57701
|
_python_name: str
|
|
57152
57702
|
child_names: list[str]
|
|
57153
|
-
enabled:
|
|
57703
|
+
enabled: enabled_71
|
|
57154
57704
|
field: field_9
|
|
57155
57705
|
option: option_52
|
|
57156
57706
|
range: range_4
|
|
57157
|
-
class
|
|
57707
|
+
class options_17(Group):
|
|
57158
57708
|
version: str
|
|
57159
57709
|
fluent_name: str
|
|
57160
57710
|
_python_name: str
|
|
57161
57711
|
child_names: list[str]
|
|
57162
57712
|
node_values: node_values_1
|
|
57163
|
-
class
|
|
57713
|
+
class enabled_72(Boolean):
|
|
57164
57714
|
version: str
|
|
57165
57715
|
fluent_name: str
|
|
57166
57716
|
_python_name: str
|
|
@@ -57173,7 +57723,7 @@ class track_single_particle_stream(Group):
|
|
|
57173
57723
|
fluent_name: str
|
|
57174
57724
|
_python_name: str
|
|
57175
57725
|
child_names: list[str]
|
|
57176
|
-
enabled:
|
|
57726
|
+
enabled: enabled_72
|
|
57177
57727
|
stream_id: stream_id_1
|
|
57178
57728
|
class coarsen_3(Integer):
|
|
57179
57729
|
version: str
|
|
@@ -57199,7 +57749,7 @@ class particle_track_child(Group):
|
|
|
57199
57749
|
annotations_list: annotations_list
|
|
57200
57750
|
filter_settings: filter_settings
|
|
57201
57751
|
filter_setting: filter_setting
|
|
57202
|
-
options:
|
|
57752
|
+
options: options_17
|
|
57203
57753
|
track_single_particle_stream: track_single_particle_stream
|
|
57204
57754
|
skip: skip_2
|
|
57205
57755
|
coarsen: coarsen_3
|
|
@@ -60037,7 +60587,7 @@ class position_on_y_axis(Boolean):
|
|
|
60037
60587
|
version: str
|
|
60038
60588
|
fluent_name: str
|
|
60039
60589
|
_python_name: str
|
|
60040
|
-
class
|
|
60590
|
+
class options_20(Group):
|
|
60041
60591
|
version: str
|
|
60042
60592
|
fluent_name: str
|
|
60043
60593
|
_python_name: str
|
|
@@ -60172,7 +60722,7 @@ class xy_plot_child(Group):
|
|
|
60172
60722
|
child_names: list[str]
|
|
60173
60723
|
command_names: list[str]
|
|
60174
60724
|
name: name_25
|
|
60175
|
-
options:
|
|
60725
|
+
options: options_20
|
|
60176
60726
|
y_axis_function: y_axis_function
|
|
60177
60727
|
x_axis_function: x_axis_function_1
|
|
60178
60728
|
x_axis_data: x_axis_data
|
|
@@ -60635,7 +61185,7 @@ class profile_data(Group):
|
|
|
60635
61185
|
"""
|
|
60636
61186
|
Plot profile data.
|
|
60637
61187
|
"""
|
|
60638
|
-
class
|
|
61188
|
+
class zone_3(String, AllowedValuesMixin):
|
|
60639
61189
|
version: str
|
|
60640
61190
|
fluent_name: str
|
|
60641
61191
|
_python_name: str
|
|
@@ -60645,7 +61195,7 @@ class interpolated_data(Group):
|
|
|
60645
61195
|
_python_name: str
|
|
60646
61196
|
child_names: list[str]
|
|
60647
61197
|
command_names: list[str]
|
|
60648
|
-
zone:
|
|
61198
|
+
zone: zone_3
|
|
60649
61199
|
y_axis_function: y_axis_function_3
|
|
60650
61200
|
x_axis_function: x_axis_function_4
|
|
60651
61201
|
axes: axes
|
|
@@ -60715,7 +61265,56 @@ class plot_4(Group):
|
|
|
60715
61265
|
plot_direction : List
|
|
60716
61266
|
Specify the plot direction.
|
|
60717
61267
|
"""
|
|
60718
|
-
|
|
61268
|
+
def fft(self, process_options: str, receiver: str, filename: str, x_var: str, y_var: str, plot: str, write: str, output_filename: str, acoustics_analysis: bool, ref_acoustic_pressure: float | str, fft_x_func: str, fft_y_func: str, modify_input_signal: bool, window: str, subtract_mean: bool, clip_to_range: bool, x_axis_range: list[float | str], signal_stat: list[float | str], title: str, x_label: str, y_label: str):
|
|
61269
|
+
"""
|
|
61270
|
+
Plot FFT of file data.
|
|
61271
|
+
|
|
61272
|
+
Parameters
|
|
61273
|
+
----------
|
|
61274
|
+
process_options : str
|
|
61275
|
+
Select option to process from Receiver or File Data.
|
|
61276
|
+
receiver : str
|
|
61277
|
+
Select receiver for FFT.
|
|
61278
|
+
filename : str
|
|
61279
|
+
Enter filename for FFT.
|
|
61280
|
+
x_var : str
|
|
61281
|
+
Set the X Axis Field from File.
|
|
61282
|
+
y_var : str
|
|
61283
|
+
Set the Y Axis Field from File.
|
|
61284
|
+
plot : str
|
|
61285
|
+
Choose whether to Plot FFT, modified Input Signal or None.
|
|
61286
|
+
write : str
|
|
61287
|
+
Choose whether to write the FFT to a file, include it in the simulation report, or Write Input Signal.
|
|
61288
|
+
output_filename : str
|
|
61289
|
+
Type in the desired file name to save FFT or Input Signal.
|
|
61290
|
+
acoustics_analysis : bool
|
|
61291
|
+
Choose whether to do acoustics analysis or not.
|
|
61292
|
+
ref_acoustic_pressure : real
|
|
61293
|
+
Change acoustic reference pressure.
|
|
61294
|
+
fft_x_func : str
|
|
61295
|
+
Select X Axis Function for FFT Plot.
|
|
61296
|
+
fft_y_func : str
|
|
61297
|
+
Select Y Axis Function for FFT Plot.
|
|
61298
|
+
modify_input_signal : bool
|
|
61299
|
+
Prune input time signal.
|
|
61300
|
+
window : str
|
|
61301
|
+
Select window type.
|
|
61302
|
+
subtract_mean : bool
|
|
61303
|
+
Choose whether to subtract Mean from data or not.
|
|
61304
|
+
clip_to_range : bool
|
|
61305
|
+
Select whether to process the entire dataset or limit it to specific range by specifying the minimum and maximum values for the x-axis.
|
|
61306
|
+
x_axis_range : List
|
|
61307
|
+
Set the minimum and maximum values for X axis.
|
|
61308
|
+
signal_stat : List
|
|
61309
|
+
Set the minimum and maximum values for X axis.
|
|
61310
|
+
title : str
|
|
61311
|
+
Enter title for Plot.
|
|
61312
|
+
x_label : str
|
|
61313
|
+
Enter X Axis label.
|
|
61314
|
+
y_label : str
|
|
61315
|
+
Enter Y Axis label.
|
|
61316
|
+
"""
|
|
61317
|
+
class title_3(String, AllowedValuesMixin):
|
|
60719
61318
|
version: str
|
|
60720
61319
|
fluent_name: str
|
|
60721
61320
|
_python_name: str
|
|
@@ -60834,7 +61433,7 @@ class scene_child(Group):
|
|
|
60834
61433
|
child_names: list[str]
|
|
60835
61434
|
command_names: list[str]
|
|
60836
61435
|
name: name_25
|
|
60837
|
-
title:
|
|
61436
|
+
title: title_3
|
|
60838
61437
|
temporary: temporary
|
|
60839
61438
|
graphics_objects: graphics_objects
|
|
60840
61439
|
display_state_name: display_state_name
|
|
@@ -64337,7 +64936,7 @@ class strategy(String, AllowedValuesMixin):
|
|
|
64337
64936
|
version: str
|
|
64338
64937
|
fluent_name: str
|
|
64339
64938
|
_python_name: str
|
|
64340
|
-
class
|
|
64939
|
+
class method_15(String, AllowedValuesMixin):
|
|
64341
64940
|
version: str
|
|
64342
64941
|
fluent_name: str
|
|
64343
64942
|
_python_name: str
|
|
@@ -64412,10 +65011,10 @@ class current_scheme(Group):
|
|
|
64412
65011
|
fluent_name: str
|
|
64413
65012
|
_python_name: str
|
|
64414
65013
|
child_names: list[str]
|
|
64415
|
-
method:
|
|
65014
|
+
method: method_15
|
|
64416
65015
|
dissipation: dissipation
|
|
64417
65016
|
residual_minimization: residual_minimization
|
|
64418
|
-
class
|
|
65017
|
+
class method_16(String, AllowedValuesMixin):
|
|
64419
65018
|
version: str
|
|
64420
65019
|
fluent_name: str
|
|
64421
65020
|
_python_name: str
|
|
@@ -64432,11 +65031,11 @@ class first_scheme(Group):
|
|
|
64432
65031
|
fluent_name: str
|
|
64433
65032
|
_python_name: str
|
|
64434
65033
|
child_names: list[str]
|
|
64435
|
-
method:
|
|
65034
|
+
method: method_16
|
|
64436
65035
|
auto_detection: auto_detection
|
|
64437
65036
|
iterations: iterations_2
|
|
64438
65037
|
dissipation: dissipation
|
|
64439
|
-
class
|
|
65038
|
+
class method_17(String, AllowedValuesMixin):
|
|
64440
65039
|
version: str
|
|
64441
65040
|
fluent_name: str
|
|
64442
65041
|
_python_name: str
|
|
@@ -64445,7 +65044,7 @@ class second_scheme(Group):
|
|
|
64445
65044
|
fluent_name: str
|
|
64446
65045
|
_python_name: str
|
|
64447
65046
|
child_names: list[str]
|
|
64448
|
-
method:
|
|
65047
|
+
method: method_17
|
|
64449
65048
|
iterations: iterations_2
|
|
64450
65049
|
residual_minimization: residual_minimization
|
|
64451
65050
|
class stabilization_2(Group):
|
|
@@ -64554,7 +65153,7 @@ class print_7(Boolean):
|
|
|
64554
65153
|
version: str
|
|
64555
65154
|
fluent_name: str
|
|
64556
65155
|
_python_name: str
|
|
64557
|
-
class
|
|
65156
|
+
class plot_17(Boolean):
|
|
64558
65157
|
version: str
|
|
64559
65158
|
fluent_name: str
|
|
64560
65159
|
_python_name: str
|
|
@@ -64562,13 +65161,13 @@ class n_display_1(Integer):
|
|
|
64562
65161
|
version: str
|
|
64563
65162
|
fluent_name: str
|
|
64564
65163
|
_python_name: str
|
|
64565
|
-
class
|
|
65164
|
+
class options_21(Group):
|
|
64566
65165
|
version: str
|
|
64567
65166
|
fluent_name: str
|
|
64568
65167
|
_python_name: str
|
|
64569
65168
|
child_names: list[str]
|
|
64570
65169
|
print: print_7
|
|
64571
|
-
plot:
|
|
65170
|
+
plot: plot_17
|
|
64572
65171
|
n_display: n_display_1
|
|
64573
65172
|
class monitors(Group):
|
|
64574
65173
|
version: str
|
|
@@ -64577,7 +65176,7 @@ class monitors(Group):
|
|
|
64577
65176
|
child_names: list[str]
|
|
64578
65177
|
command_names: list[str]
|
|
64579
65178
|
adjoint_equations: adjoint_equations_1
|
|
64580
|
-
options:
|
|
65179
|
+
options: options_21
|
|
64581
65180
|
def plot(self):
|
|
64582
65181
|
"""
|
|
64583
65182
|
Plot residuals.
|
|
@@ -64650,7 +65249,7 @@ class sensitivity_orientation(String, AllowedValuesMixin):
|
|
|
64650
65249
|
version: str
|
|
64651
65250
|
fluent_name: str
|
|
64652
65251
|
_python_name: str
|
|
64653
|
-
class
|
|
65252
|
+
class method_18(String, AllowedValuesMixin):
|
|
64654
65253
|
version: str
|
|
64655
65254
|
fluent_name: str
|
|
64656
65255
|
_python_name: str
|
|
@@ -64663,7 +65262,7 @@ class surface_shape_sensitivity(Group):
|
|
|
64663
65262
|
fluent_name: str
|
|
64664
65263
|
_python_name: str
|
|
64665
65264
|
child_names: list[str]
|
|
64666
|
-
method:
|
|
65265
|
+
method: method_18
|
|
64667
65266
|
smoothness: smoothness
|
|
64668
65267
|
class postprocess_options(Group):
|
|
64669
65268
|
version: str
|
|
@@ -64703,7 +65302,7 @@ class reporting(Group):
|
|
|
64703
65302
|
append_data : bool
|
|
64704
65303
|
Append data to file.
|
|
64705
65304
|
"""
|
|
64706
|
-
class
|
|
65305
|
+
class method_19(String, AllowedValuesMixin):
|
|
64707
65306
|
version: str
|
|
64708
65307
|
fluent_name: str
|
|
64709
65308
|
_python_name: str
|
|
@@ -64780,7 +65379,7 @@ class freeform_motions(Group):
|
|
|
64780
65379
|
parameter_relaxation: parameter_relaxation
|
|
64781
65380
|
preconditioning_standard: preconditioning_standard
|
|
64782
65381
|
preconditioning_enhanced: preconditioning_enhanced
|
|
64783
|
-
class
|
|
65382
|
+
class second_order_1(Boolean):
|
|
64784
65383
|
version: str
|
|
64785
65384
|
fluent_name: str
|
|
64786
65385
|
_python_name: str
|
|
@@ -64801,7 +65400,7 @@ class constraint_settings(Group):
|
|
|
64801
65400
|
fluent_name: str
|
|
64802
65401
|
_python_name: str
|
|
64803
65402
|
child_names: list[str]
|
|
64804
|
-
second_order:
|
|
65403
|
+
second_order: second_order_1
|
|
64805
65404
|
increase_local_smoothness: increase_local_smoothness
|
|
64806
65405
|
increase_global_smoothness: increase_global_smoothness
|
|
64807
65406
|
tolerance: tolerance_6
|
|
@@ -64910,7 +65509,7 @@ class morpher(Group):
|
|
|
64910
65509
|
fluent_name: str
|
|
64911
65510
|
_python_name: str
|
|
64912
65511
|
child_names: list[str]
|
|
64913
|
-
method:
|
|
65512
|
+
method: method_19
|
|
64914
65513
|
constraint_method: constraint_method
|
|
64915
65514
|
numerics: numerics_1
|
|
64916
65515
|
class modifiable_zones(StringList, AllowedValuesMixin):
|
|
@@ -64929,15 +65528,15 @@ class auto_display(Boolean):
|
|
|
64929
65528
|
version: str
|
|
64930
65529
|
fluent_name: str
|
|
64931
65530
|
_python_name: str
|
|
64932
|
-
class
|
|
65531
|
+
class x_5(RealList):
|
|
64933
65532
|
version: str
|
|
64934
65533
|
fluent_name: str
|
|
64935
65534
|
_python_name: str
|
|
64936
|
-
class
|
|
65535
|
+
class y_5(RealList):
|
|
64937
65536
|
version: str
|
|
64938
65537
|
fluent_name: str
|
|
64939
65538
|
_python_name: str
|
|
64940
|
-
class
|
|
65539
|
+
class z_5(RealList):
|
|
64941
65540
|
version: str
|
|
64942
65541
|
fluent_name: str
|
|
64943
65542
|
_python_name: str
|
|
@@ -64946,9 +65545,9 @@ class extent(Group):
|
|
|
64946
65545
|
fluent_name: str
|
|
64947
65546
|
_python_name: str
|
|
64948
65547
|
child_names: list[str]
|
|
64949
|
-
x:
|
|
64950
|
-
y:
|
|
64951
|
-
z:
|
|
65548
|
+
x: x_5
|
|
65549
|
+
y: y_5
|
|
65550
|
+
z: z_5
|
|
64952
65551
|
class points(Integer):
|
|
64953
65552
|
version: str
|
|
64954
65553
|
fluent_name: str
|
|
@@ -64993,7 +65592,7 @@ class symmetric(Boolean):
|
|
|
64993
65592
|
version: str
|
|
64994
65593
|
fluent_name: str
|
|
64995
65594
|
_python_name: str
|
|
64996
|
-
class
|
|
65595
|
+
class enabled_73(Boolean):
|
|
64997
65596
|
version: str
|
|
64998
65597
|
fluent_name: str
|
|
64999
65598
|
_python_name: str
|
|
@@ -65006,13 +65605,13 @@ class custom_plane(Group):
|
|
|
65006
65605
|
fluent_name: str
|
|
65007
65606
|
_python_name: str
|
|
65008
65607
|
child_names: list[str]
|
|
65009
|
-
enabled:
|
|
65608
|
+
enabled: enabled_73
|
|
65010
65609
|
plane: plane_1
|
|
65011
65610
|
class periodicity_1(Integer):
|
|
65012
65611
|
version: str
|
|
65013
65612
|
fluent_name: str
|
|
65014
65613
|
_python_name: str
|
|
65015
|
-
class
|
|
65614
|
+
class x_6(Group):
|
|
65016
65615
|
version: str
|
|
65017
65616
|
fluent_name: str
|
|
65018
65617
|
_python_name: str
|
|
@@ -65024,7 +65623,7 @@ class x_5(Group):
|
|
|
65024
65623
|
symmetric: symmetric
|
|
65025
65624
|
custom_plane: custom_plane
|
|
65026
65625
|
periodicity: periodicity_1
|
|
65027
|
-
class
|
|
65626
|
+
class y_6(Group):
|
|
65028
65627
|
version: str
|
|
65029
65628
|
fluent_name: str
|
|
65030
65629
|
_python_name: str
|
|
@@ -65036,7 +65635,7 @@ class y_5(Group):
|
|
|
65036
65635
|
symmetric: symmetric
|
|
65037
65636
|
custom_plane: custom_plane
|
|
65038
65637
|
periodicity: periodicity_1
|
|
65039
|
-
class
|
|
65638
|
+
class z_6(Group):
|
|
65040
65639
|
version: str
|
|
65041
65640
|
fluent_name: str
|
|
65042
65641
|
_python_name: str
|
|
@@ -65084,7 +65683,7 @@ class axial(Group):
|
|
|
65084
65683
|
symmetric: symmetric
|
|
65085
65684
|
custom_plane: custom_plane
|
|
65086
65685
|
periodicity: periodicity_1
|
|
65087
|
-
class
|
|
65686
|
+
class enabled_74(Boolean):
|
|
65088
65687
|
version: str
|
|
65089
65688
|
fluent_name: str
|
|
65090
65689
|
_python_name: str
|
|
@@ -65230,7 +65829,7 @@ class boundary_continuity(Group):
|
|
|
65230
65829
|
fluent_name: str
|
|
65231
65830
|
_python_name: str
|
|
65232
65831
|
child_names: list[str]
|
|
65233
|
-
enabled:
|
|
65832
|
+
enabled: enabled_74
|
|
65234
65833
|
definition: definition_2
|
|
65235
65834
|
continuity_order: continuity_order
|
|
65236
65835
|
specify_boundary: specify_boundary
|
|
@@ -65239,9 +65838,9 @@ class conditions(Group):
|
|
|
65239
65838
|
fluent_name: str
|
|
65240
65839
|
_python_name: str
|
|
65241
65840
|
child_names: list[str]
|
|
65242
|
-
x:
|
|
65243
|
-
y:
|
|
65244
|
-
z:
|
|
65841
|
+
x: x_6
|
|
65842
|
+
y: y_6
|
|
65843
|
+
z: z_6
|
|
65245
65844
|
theta: theta_2
|
|
65246
65845
|
radial: radial
|
|
65247
65846
|
axial: axial
|
|
@@ -65362,21 +65961,21 @@ class value_20(Real):
|
|
|
65362
65961
|
version: str
|
|
65363
65962
|
fluent_name: str
|
|
65364
65963
|
_python_name: str
|
|
65365
|
-
class
|
|
65964
|
+
class x_7(Group):
|
|
65366
65965
|
version: str
|
|
65367
65966
|
fluent_name: str
|
|
65368
65967
|
_python_name: str
|
|
65369
65968
|
child_names: list[str]
|
|
65370
65969
|
prescribed: prescribed
|
|
65371
65970
|
value: value_20
|
|
65372
|
-
class
|
|
65971
|
+
class y_7(Group):
|
|
65373
65972
|
version: str
|
|
65374
65973
|
fluent_name: str
|
|
65375
65974
|
_python_name: str
|
|
65376
65975
|
child_names: list[str]
|
|
65377
65976
|
prescribed: prescribed
|
|
65378
65977
|
value: value_20
|
|
65379
|
-
class
|
|
65978
|
+
class z_7(Group):
|
|
65380
65979
|
version: str
|
|
65381
65980
|
fluent_name: str
|
|
65382
65981
|
_python_name: str
|
|
@@ -65388,9 +65987,9 @@ class displacement(Group):
|
|
|
65388
65987
|
fluent_name: str
|
|
65389
65988
|
_python_name: str
|
|
65390
65989
|
child_names: list[str]
|
|
65391
|
-
x:
|
|
65392
|
-
y:
|
|
65393
|
-
z:
|
|
65990
|
+
x: x_7
|
|
65991
|
+
y: y_7
|
|
65992
|
+
z: z_7
|
|
65394
65993
|
class scaling_type(String, AllowedValuesMixin):
|
|
65395
65994
|
version: str
|
|
65396
65995
|
fluent_name: str
|
|
@@ -65486,7 +66085,7 @@ class orientation_2(Group):
|
|
|
65486
66085
|
surfaces : List
|
|
65487
66086
|
Surfaces orientations to be reverse.
|
|
65488
66087
|
"""
|
|
65489
|
-
class
|
|
66088
|
+
class method_20(String, AllowedValuesMixin):
|
|
65490
66089
|
version: str
|
|
65491
66090
|
fluent_name: str
|
|
65492
66091
|
_python_name: str
|
|
@@ -65499,7 +66098,7 @@ class compound(Group):
|
|
|
65499
66098
|
fluent_name: str
|
|
65500
66099
|
_python_name: str
|
|
65501
66100
|
child_names: list[str]
|
|
65502
|
-
method:
|
|
66101
|
+
method: method_20
|
|
65503
66102
|
conditions: conditions_1
|
|
65504
66103
|
class definition_3_child(Group):
|
|
65505
66104
|
version: str
|
|
@@ -65628,7 +66227,7 @@ class applied_conditions(StringList, AllowedValuesMixin):
|
|
|
65628
66227
|
version: str
|
|
65629
66228
|
fluent_name: str
|
|
65630
66229
|
_python_name: str
|
|
65631
|
-
class
|
|
66230
|
+
class method_21(String, AllowedValuesMixin):
|
|
65632
66231
|
version: str
|
|
65633
66232
|
fluent_name: str
|
|
65634
66233
|
_python_name: str
|
|
@@ -65650,7 +66249,7 @@ class fix_surfaces(Group):
|
|
|
65650
66249
|
_python_name: str
|
|
65651
66250
|
child_names: list[str]
|
|
65652
66251
|
command_names: list[str]
|
|
65653
|
-
method:
|
|
66252
|
+
method: method_21
|
|
65654
66253
|
layers: layers
|
|
65655
66254
|
distance: distance_2
|
|
65656
66255
|
applied_moving_conditions: applied_moving_conditions
|
|
@@ -65707,7 +66306,7 @@ class display_settings(Group):
|
|
|
65707
66306
|
schematic: schematic
|
|
65708
66307
|
constrained_nodes: constrained_nodes
|
|
65709
66308
|
surfaces_inside_region_only: surfaces_inside_region_only
|
|
65710
|
-
class
|
|
66309
|
+
class options_22(Group):
|
|
65711
66310
|
version: str
|
|
65712
66311
|
fluent_name: str
|
|
65713
66312
|
_python_name: str
|
|
@@ -65721,7 +66320,7 @@ class design_conditions(Group):
|
|
|
65721
66320
|
child_names: list[str]
|
|
65722
66321
|
definition: definition_3
|
|
65723
66322
|
selection: selection_1
|
|
65724
|
-
options:
|
|
66323
|
+
options: options_22
|
|
65725
66324
|
class include_current_data(Boolean):
|
|
65726
66325
|
version: str
|
|
65727
66326
|
fluent_name: str
|
|
@@ -66197,7 +66796,7 @@ class selection_2(StringList, AllowedValuesMixin):
|
|
|
66197
66796
|
version: str
|
|
66198
66797
|
fluent_name: str
|
|
66199
66798
|
_python_name: str
|
|
66200
|
-
class
|
|
66799
|
+
class method_22(String, AllowedValuesMixin):
|
|
66201
66800
|
version: str
|
|
66202
66801
|
fluent_name: str
|
|
66203
66802
|
_python_name: str
|
|
@@ -66214,7 +66813,7 @@ class evaluation(Group):
|
|
|
66214
66813
|
fluent_name: str
|
|
66215
66814
|
_python_name: str
|
|
66216
66815
|
child_names: list[str]
|
|
66217
|
-
method:
|
|
66816
|
+
method: method_22
|
|
66218
66817
|
frequency: frequency_8
|
|
66219
66818
|
sampling_after: sampling_after
|
|
66220
66819
|
class observables_1(Group):
|
|
@@ -66466,7 +67065,7 @@ class objectives_2(Group):
|
|
|
66466
67065
|
observables: observables_1
|
|
66467
67066
|
operating_conditions: operating_conditions_1
|
|
66468
67067
|
objectives: objectives_3
|
|
66469
|
-
class
|
|
67068
|
+
class method_23(String, AllowedValuesMixin):
|
|
66470
67069
|
version: str
|
|
66471
67070
|
fluent_name: str
|
|
66472
67071
|
_python_name: str
|
|
@@ -66495,7 +67094,7 @@ class optimizer_settings(Group):
|
|
|
66495
67094
|
fluent_name: str
|
|
66496
67095
|
_python_name: str
|
|
66497
67096
|
child_names: list[str]
|
|
66498
|
-
method:
|
|
67097
|
+
method: method_23
|
|
66499
67098
|
current_design_iteration: current_design_iteration
|
|
66500
67099
|
design_iterations: design_iterations
|
|
66501
67100
|
convergence_criteria: convergence_criteria
|
|
@@ -66513,7 +67112,7 @@ class enable_turbulence_source_term(Boolean):
|
|
|
66513
67112
|
version: str
|
|
66514
67113
|
fluent_name: str
|
|
66515
67114
|
_python_name: str
|
|
66516
|
-
class
|
|
67115
|
+
class options_23(Group):
|
|
66517
67116
|
version: str
|
|
66518
67117
|
fluent_name: str
|
|
66519
67118
|
_python_name: str
|
|
@@ -66589,7 +67188,7 @@ class design_variables(Group):
|
|
|
66589
67188
|
child_names: list[str]
|
|
66590
67189
|
command_names: list[str]
|
|
66591
67190
|
selection: selection_3
|
|
66592
|
-
options:
|
|
67191
|
+
options: options_23
|
|
66593
67192
|
limits: limits_1
|
|
66594
67193
|
def default_limits(self):
|
|
66595
67194
|
"""
|
|
@@ -66766,7 +67365,7 @@ class management(Group):
|
|
|
66766
67365
|
file_name : str
|
|
66767
67366
|
Model data file name.
|
|
66768
67367
|
"""
|
|
66769
|
-
class
|
|
67368
|
+
class model_9(Group):
|
|
66770
67369
|
version: str
|
|
66771
67370
|
fluent_name: str
|
|
66772
67371
|
_python_name: str
|
|
@@ -66791,7 +67390,7 @@ class turbulence_model_design_tool(Group):
|
|
|
66791
67390
|
child_names: list[str]
|
|
66792
67391
|
design_region: design_region
|
|
66793
67392
|
design_variables: design_variables
|
|
66794
|
-
model:
|
|
67393
|
+
model: model_9
|
|
66795
67394
|
class min_cell_volume(Real):
|
|
66796
67395
|
version: str
|
|
66797
67396
|
fluent_name: str
|
|
@@ -67974,7 +68573,7 @@ class across_zones(Boolean):
|
|
|
67974
68573
|
version: str
|
|
67975
68574
|
fluent_name: str
|
|
67976
68575
|
_python_name: str
|
|
67977
|
-
class
|
|
68576
|
+
class method_25(String, AllowedValuesMixin):
|
|
67978
68577
|
version: str
|
|
67979
68578
|
fluent_name: str
|
|
67980
68579
|
_python_name: str
|
|
@@ -67993,7 +68592,7 @@ class auto(Group):
|
|
|
67993
68592
|
child_names: list[str]
|
|
67994
68593
|
case_file: case_file
|
|
67995
68594
|
across_zones: across_zones
|
|
67996
|
-
method:
|
|
68595
|
+
method: method_25
|
|
67997
68596
|
load_vector: load_vector
|
|
67998
68597
|
pre_test: pre_test
|
|
67999
68598
|
class across_zone_boundaries(Boolean):
|
|
@@ -68087,7 +68686,7 @@ class laplace_smoothing(Group):
|
|
|
68087
68686
|
fluent_name: str
|
|
68088
68687
|
_python_name: str
|
|
68089
68688
|
child_names: list[str]
|
|
68090
|
-
enabled:
|
|
68689
|
+
enabled: enabled_56
|
|
68091
68690
|
set: set_4
|
|
68092
68691
|
class nfaces_as_weights_1(Boolean):
|
|
68093
68692
|
version: str
|
|
@@ -68155,7 +68754,7 @@ class stretched_mesh_enhancement(Group):
|
|
|
68155
68754
|
child_names: list[str]
|
|
68156
68755
|
use_enhancement: use_enhancement
|
|
68157
68756
|
aspect_ratio: aspect_ratio_1
|
|
68158
|
-
class
|
|
68757
|
+
class user_defined_15(Boolean):
|
|
68159
68758
|
version: str
|
|
68160
68759
|
fluent_name: str
|
|
68161
68760
|
_python_name: str
|
|
@@ -68169,7 +68768,7 @@ class particle_weight(Group):
|
|
|
68169
68768
|
_python_name: str
|
|
68170
68769
|
child_names: list[str]
|
|
68171
68770
|
use: use
|
|
68172
|
-
user_defined:
|
|
68771
|
+
user_defined: user_defined_15
|
|
68173
68772
|
value: value_24
|
|
68174
68773
|
hybrid_optimization: hybrid_optimization
|
|
68175
68774
|
class vof_free_surface_weight(Group):
|
|
@@ -68178,7 +68777,7 @@ class vof_free_surface_weight(Group):
|
|
|
68178
68777
|
_python_name: str
|
|
68179
68778
|
child_names: list[str]
|
|
68180
68779
|
use: use
|
|
68181
|
-
user_defined:
|
|
68780
|
+
user_defined: user_defined_15
|
|
68182
68781
|
value: value_24
|
|
68183
68782
|
class isat_weight(Group):
|
|
68184
68783
|
version: str
|
|
@@ -68186,7 +68785,7 @@ class isat_weight(Group):
|
|
|
68186
68785
|
_python_name: str
|
|
68187
68786
|
child_names: list[str]
|
|
68188
68787
|
use: use
|
|
68189
|
-
user_defined:
|
|
68788
|
+
user_defined: user_defined_15
|
|
68190
68789
|
value: value_24
|
|
68191
68790
|
class stiff_chemistry_weight(Group):
|
|
68192
68791
|
version: str
|
|
@@ -68194,7 +68793,7 @@ class stiff_chemistry_weight(Group):
|
|
|
68194
68793
|
_python_name: str
|
|
68195
68794
|
child_names: list[str]
|
|
68196
68795
|
use: use
|
|
68197
|
-
user_defined:
|
|
68796
|
+
user_defined: user_defined_15
|
|
68198
68797
|
value: value_24
|
|
68199
68798
|
class fluid_solid_rebalance_after_read_case(Boolean):
|
|
68200
68799
|
version: str
|
|
@@ -68339,7 +68938,7 @@ class partition_mask(IntegerList):
|
|
|
68339
68938
|
version: str
|
|
68340
68939
|
fluent_name: str
|
|
68341
68940
|
_python_name: str
|
|
68342
|
-
class
|
|
68941
|
+
class verbosity_20(Integer):
|
|
68343
68942
|
version: str
|
|
68344
68943
|
fluent_name: str
|
|
68345
68944
|
_python_name: str
|
|
@@ -68357,7 +68956,7 @@ class set_2(Group):
|
|
|
68357
68956
|
_python_name: str
|
|
68358
68957
|
child_names: list[str]
|
|
68359
68958
|
partition_mask: partition_mask
|
|
68360
|
-
verbosity:
|
|
68959
|
+
verbosity: verbosity_20
|
|
68361
68960
|
time_out: time_out
|
|
68362
68961
|
fast_io: fast_io
|
|
68363
68962
|
class use_multi_physics(Boolean):
|
|
@@ -68400,7 +68999,7 @@ class load_balance(Group):
|
|
|
68400
68999
|
physical_models: physical_models_2
|
|
68401
69000
|
dynamic_mesh: dynamic_mesh_1
|
|
68402
69001
|
mesh_adaption: mesh_adaption
|
|
68403
|
-
class
|
|
69002
|
+
class enabled_75(Boolean):
|
|
68404
69003
|
version: str
|
|
68405
69004
|
fluent_name: str
|
|
68406
69005
|
_python_name: str
|
|
@@ -68408,7 +69007,7 @@ class iter_per_coupling_count(Integer):
|
|
|
68408
69007
|
version: str
|
|
68409
69008
|
fluent_name: str
|
|
68410
69009
|
_python_name: str
|
|
68411
|
-
class
|
|
69010
|
+
class method_26(String, AllowedValuesMixin):
|
|
68412
69011
|
version: str
|
|
68413
69012
|
fluent_name: str
|
|
68414
69013
|
_python_name: str
|
|
@@ -68429,7 +69028,7 @@ class single_session_coupling(Group):
|
|
|
68429
69028
|
fluent_name: str
|
|
68430
69029
|
_python_name: str
|
|
68431
69030
|
child_names: list[str]
|
|
68432
|
-
method:
|
|
69031
|
+
method: method_26
|
|
68433
69032
|
type: type_4
|
|
68434
69033
|
interval: interval_1
|
|
68435
69034
|
frequency: frequency_11
|
|
@@ -68439,7 +69038,7 @@ class two_session_coupling(Group):
|
|
|
68439
69038
|
fluent_name: str
|
|
68440
69039
|
_python_name: str
|
|
68441
69040
|
child_names: list[str]
|
|
68442
|
-
method:
|
|
69041
|
+
method: method_26
|
|
68443
69042
|
type: type_4
|
|
68444
69043
|
frequency: frequency_11
|
|
68445
69044
|
class coupling(Group):
|
|
@@ -68482,7 +69081,7 @@ class conjugate_heat_transfer(Group):
|
|
|
68482
69081
|
fluent_name: str
|
|
68483
69082
|
_python_name: str
|
|
68484
69083
|
child_names: list[str]
|
|
68485
|
-
enabled:
|
|
69084
|
+
enabled: enabled_75
|
|
68486
69085
|
set: set_5
|
|
68487
69086
|
class solve_1(Group):
|
|
68488
69087
|
version: str
|