ansys-fluent-core 0.28.1__py3-none-any.whl → 0.28.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +1 -1
- ansys/fluent/core/_version.py +1 -1
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/preferences.py +7 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +395 -390
- ansys/fluent/core/generated/solver/settings_252.py +347 -44
- ansys/fluent/core/generated/solver/settings_252.pyi +228 -31
- ansys/fluent/core/generated/solver/tui_252.py +3996 -3721
- ansys/fluent/core/services/datamodel_se.py +137 -60
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +12 -12
- ansys/fluent/tests/test_datamodel_api.py +36 -56
- ansys/fluent/tests/test_datamodel_service.py +1 -1
- ansys/fluent/tests/test_mapped_api.py +17 -25
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/RECORD +19 -19
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.28.2.dist-info}/WHEEL +0 -0
|
@@ -5230,6 +5230,86 @@ class specify_species_in(String, AllowedValuesMixin):
|
|
|
5230
5230
|
version: str
|
|
5231
5231
|
fluent_name: str
|
|
5232
5232
|
_python_name: str
|
|
5233
|
+
class default_progress_variable(Boolean):
|
|
5234
|
+
version: str
|
|
5235
|
+
fluent_name: str
|
|
5236
|
+
_python_name: str
|
|
5237
|
+
class weight(Real):
|
|
5238
|
+
version: str
|
|
5239
|
+
fluent_name: str
|
|
5240
|
+
_python_name: str
|
|
5241
|
+
class definition_of_progress_variable_child(Group):
|
|
5242
|
+
version: str
|
|
5243
|
+
fluent_name: str
|
|
5244
|
+
_python_name: str
|
|
5245
|
+
child_names: list[str]
|
|
5246
|
+
weight: weight
|
|
5247
|
+
class definition_of_progress_variable(NamedObject[definition_of_progress_variable_child]):
|
|
5248
|
+
version: str
|
|
5249
|
+
fluent_name: str
|
|
5250
|
+
_python_name: str
|
|
5251
|
+
command_names: list[str]
|
|
5252
|
+
def create(self, name: str):
|
|
5253
|
+
"""
|
|
5254
|
+
Create an instance of this.
|
|
5255
|
+
|
|
5256
|
+
Parameters
|
|
5257
|
+
----------
|
|
5258
|
+
name : str
|
|
5259
|
+
Set name for an object.
|
|
5260
|
+
"""
|
|
5261
|
+
def delete(self, name_list: list[str]):
|
|
5262
|
+
"""
|
|
5263
|
+
Delete selected objects.
|
|
5264
|
+
|
|
5265
|
+
Parameters
|
|
5266
|
+
----------
|
|
5267
|
+
name_list : List
|
|
5268
|
+
Select objects to be deleted.
|
|
5269
|
+
"""
|
|
5270
|
+
def rename(self, new: str, old: str):
|
|
5271
|
+
"""
|
|
5272
|
+
Rename the object.
|
|
5273
|
+
|
|
5274
|
+
Parameters
|
|
5275
|
+
----------
|
|
5276
|
+
new : str
|
|
5277
|
+
New name for the object.
|
|
5278
|
+
old : str
|
|
5279
|
+
Select object to rename.
|
|
5280
|
+
"""
|
|
5281
|
+
def list(self):
|
|
5282
|
+
"""
|
|
5283
|
+
List the names of the objects.
|
|
5284
|
+
"""
|
|
5285
|
+
def list_properties(self, object_name: str):
|
|
5286
|
+
"""
|
|
5287
|
+
List active properties of the object.
|
|
5288
|
+
|
|
5289
|
+
Parameters
|
|
5290
|
+
----------
|
|
5291
|
+
object_name : str
|
|
5292
|
+
Select object for which properties are to be listed.
|
|
5293
|
+
"""
|
|
5294
|
+
def make_a_copy(self, from_: str, to: str):
|
|
5295
|
+
"""
|
|
5296
|
+
Create a copy of the object.
|
|
5297
|
+
|
|
5298
|
+
Parameters
|
|
5299
|
+
----------
|
|
5300
|
+
from_ : str
|
|
5301
|
+
Select the object to duplicate.
|
|
5302
|
+
to : str
|
|
5303
|
+
Specify the name of the new object.
|
|
5304
|
+
"""
|
|
5305
|
+
child_object_type: definition_of_progress_variable_child
|
|
5306
|
+
class progress_variable_definition(Group):
|
|
5307
|
+
version: str
|
|
5308
|
+
fluent_name: str
|
|
5309
|
+
_python_name: str
|
|
5310
|
+
child_names: list[str]
|
|
5311
|
+
default_progress_variable: default_progress_variable
|
|
5312
|
+
definition_of_progress_variable: definition_of_progress_variable
|
|
5233
5313
|
class boundary(Group):
|
|
5234
5314
|
version: str
|
|
5235
5315
|
fluent_name: str
|
|
@@ -5239,6 +5319,7 @@ class boundary(Group):
|
|
|
5239
5319
|
oxidizer_temperature: oxidizer_temperature
|
|
5240
5320
|
species_boundary: species_boundary
|
|
5241
5321
|
specify_species_in: specify_species_in
|
|
5322
|
+
progress_variable_definition: progress_variable_definition
|
|
5242
5323
|
class initial_fourier_number(Real):
|
|
5243
5324
|
version: str
|
|
5244
5325
|
fluent_name: str
|
|
@@ -6605,6 +6686,36 @@ class times(Group):
|
|
|
6605
6686
|
child_names: list[str]
|
|
6606
6687
|
start_time: start_time
|
|
6607
6688
|
stop_time: stop_time
|
|
6689
|
+
class unsteady_ca_start(Real, AllowedValuesMixin):
|
|
6690
|
+
version: str
|
|
6691
|
+
fluent_name: str
|
|
6692
|
+
_python_name: str
|
|
6693
|
+
class unsteady_ca_stop(Real, AllowedValuesMixin):
|
|
6694
|
+
version: str
|
|
6695
|
+
fluent_name: str
|
|
6696
|
+
_python_name: str
|
|
6697
|
+
class crank_angles(Group):
|
|
6698
|
+
version: str
|
|
6699
|
+
fluent_name: str
|
|
6700
|
+
_python_name: str
|
|
6701
|
+
child_names: list[str]
|
|
6702
|
+
unsteady_ca_start: unsteady_ca_start
|
|
6703
|
+
unsteady_ca_stop: unsteady_ca_stop
|
|
6704
|
+
class start_at_flow_time_in_unsteady_inj_file(Real, AllowedValuesMixin):
|
|
6705
|
+
version: str
|
|
6706
|
+
fluent_name: str
|
|
6707
|
+
_python_name: str
|
|
6708
|
+
class interval_to_repeat_in_unsteady_inj_file(Real, AllowedValuesMixin):
|
|
6709
|
+
version: str
|
|
6710
|
+
fluent_name: str
|
|
6711
|
+
_python_name: str
|
|
6712
|
+
class unsteady_inj_file(Group):
|
|
6713
|
+
version: str
|
|
6714
|
+
fluent_name: str
|
|
6715
|
+
_python_name: str
|
|
6716
|
+
child_names: list[str]
|
|
6717
|
+
start_at_flow_time_in_unsteady_inj_file: start_at_flow_time_in_unsteady_inj_file
|
|
6718
|
+
interval_to_repeat_in_unsteady_inj_file: interval_to_repeat_in_unsteady_inj_file
|
|
6608
6719
|
class injection_surfaces(StringList, AllowedValuesMixin):
|
|
6609
6720
|
version: str
|
|
6610
6721
|
fluent_name: str
|
|
@@ -6940,6 +7051,8 @@ class initial_values(Group):
|
|
|
6940
7051
|
child_names: list[str]
|
|
6941
7052
|
reference_frame: reference_frame_1
|
|
6942
7053
|
times: times
|
|
7054
|
+
crank_angles: crank_angles
|
|
7055
|
+
unsteady_inj_file: unsteady_inj_file
|
|
6943
7056
|
location: location_1
|
|
6944
7057
|
cone_settings: cone_settings
|
|
6945
7058
|
mass_flow_rate: mass_flow_rate
|
|
@@ -39394,6 +39507,46 @@ class advanced_2(Group):
|
|
|
39394
39507
|
child_names: list[str]
|
|
39395
39508
|
delay_model_change_update: delay_model_change_update
|
|
39396
39509
|
batch_thread_update: batch_thread_update
|
|
39510
|
+
class type_7(String, AllowedValuesMixin):
|
|
39511
|
+
version: str
|
|
39512
|
+
fluent_name: str
|
|
39513
|
+
_python_name: str
|
|
39514
|
+
class mass_flow_1(Real):
|
|
39515
|
+
version: str
|
|
39516
|
+
fluent_name: str
|
|
39517
|
+
_python_name: str
|
|
39518
|
+
class pressure_gradient(Real):
|
|
39519
|
+
version: str
|
|
39520
|
+
fluent_name: str
|
|
39521
|
+
_python_name: str
|
|
39522
|
+
class bulk_temperature(Real):
|
|
39523
|
+
version: str
|
|
39524
|
+
fluent_name: str
|
|
39525
|
+
_python_name: str
|
|
39526
|
+
class relax_1(Real):
|
|
39527
|
+
version: str
|
|
39528
|
+
fluent_name: str
|
|
39529
|
+
_python_name: str
|
|
39530
|
+
class niter(Integer):
|
|
39531
|
+
version: str
|
|
39532
|
+
fluent_name: str
|
|
39533
|
+
_python_name: str
|
|
39534
|
+
class flow_direction_2(RealList):
|
|
39535
|
+
version: str
|
|
39536
|
+
fluent_name: str
|
|
39537
|
+
_python_name: str
|
|
39538
|
+
class periodic_conditions(Group):
|
|
39539
|
+
version: str
|
|
39540
|
+
fluent_name: str
|
|
39541
|
+
_python_name: str
|
|
39542
|
+
child_names: list[str]
|
|
39543
|
+
type: type_7
|
|
39544
|
+
mass_flow: mass_flow_1
|
|
39545
|
+
pressure_gradient: pressure_gradient
|
|
39546
|
+
bulk_temperature: bulk_temperature
|
|
39547
|
+
relax: relax_1
|
|
39548
|
+
niter: niter
|
|
39549
|
+
flow_direction: flow_direction_2
|
|
39397
39550
|
class settings_27(Group):
|
|
39398
39551
|
version: str
|
|
39399
39552
|
fluent_name: str
|
|
@@ -39407,6 +39560,7 @@ class settings_27(Group):
|
|
|
39407
39560
|
physical_velocity_porous_formulation: physical_velocity_porous_formulation
|
|
39408
39561
|
target_mass_flow_rate_settings: target_mass_flow_rate_settings
|
|
39409
39562
|
advanced: advanced_2
|
|
39563
|
+
periodic_conditions: periodic_conditions
|
|
39410
39564
|
def detect_boundary_advection(self):
|
|
39411
39565
|
"""
|
|
39412
39566
|
Detect and set boundary advection at solid walls.
|
|
@@ -41913,7 +42067,7 @@ class select_variables(String, AllowedValuesMixin):
|
|
|
41913
42067
|
version: str
|
|
41914
42068
|
fluent_name: str
|
|
41915
42069
|
_python_name: str
|
|
41916
|
-
class
|
|
42070
|
+
class type_8(String, AllowedValuesMixin):
|
|
41917
42071
|
version: str
|
|
41918
42072
|
fluent_name: str
|
|
41919
42073
|
_python_name: str
|
|
@@ -41924,7 +42078,7 @@ class options_8(Group):
|
|
|
41924
42078
|
child_names: list[str]
|
|
41925
42079
|
relaxation_factor: relaxation_factor
|
|
41926
42080
|
select_variables: select_variables
|
|
41927
|
-
type:
|
|
42081
|
+
type: type_8
|
|
41928
42082
|
class high_order_term_relaxation(Group):
|
|
41929
42083
|
version: str
|
|
41930
42084
|
fluent_name: str
|
|
@@ -46756,7 +46910,7 @@ class color(String, AllowedValuesMixin):
|
|
|
46756
46910
|
version: str
|
|
46757
46911
|
fluent_name: str
|
|
46758
46912
|
_python_name: str
|
|
46759
|
-
class
|
|
46913
|
+
class weight_1(Integer):
|
|
46760
46914
|
version: str
|
|
46761
46915
|
fluent_name: str
|
|
46762
46916
|
_python_name: str
|
|
@@ -46766,7 +46920,7 @@ class major_gridlines(Group):
|
|
|
46766
46920
|
_python_name: str
|
|
46767
46921
|
child_names: list[str]
|
|
46768
46922
|
color: color
|
|
46769
|
-
weight:
|
|
46923
|
+
weight: weight_1
|
|
46770
46924
|
class show_minor_gridlines(Boolean):
|
|
46771
46925
|
version: str
|
|
46772
46926
|
fluent_name: str
|
|
@@ -46777,7 +46931,7 @@ class minor_gridlines(Group):
|
|
|
46777
46931
|
_python_name: str
|
|
46778
46932
|
child_names: list[str]
|
|
46779
46933
|
color: color
|
|
46780
|
-
weight:
|
|
46934
|
+
weight: weight_1
|
|
46781
46935
|
class x_1(Group):
|
|
46782
46936
|
version: str
|
|
46783
46937
|
fluent_name: str
|
|
@@ -46824,7 +46978,7 @@ class pattern(String, AllowedValuesMixin):
|
|
|
46824
46978
|
version: str
|
|
46825
46979
|
fluent_name: str
|
|
46826
46980
|
_python_name: str
|
|
46827
|
-
class
|
|
46981
|
+
class weight_2(Real):
|
|
46828
46982
|
version: str
|
|
46829
46983
|
fluent_name: str
|
|
46830
46984
|
_python_name: str
|
|
@@ -46838,7 +46992,7 @@ class line(Group):
|
|
|
46838
46992
|
_python_name: str
|
|
46839
46993
|
child_names: list[str]
|
|
46840
46994
|
pattern: pattern
|
|
46841
|
-
weight:
|
|
46995
|
+
weight: weight_2
|
|
46842
46996
|
color: color_1
|
|
46843
46997
|
class line_in_file(Group):
|
|
46844
46998
|
version: str
|
|
@@ -46846,7 +47000,7 @@ class line_in_file(Group):
|
|
|
46846
47000
|
_python_name: str
|
|
46847
47001
|
child_names: list[str]
|
|
46848
47002
|
pattern: pattern
|
|
46849
|
-
weight:
|
|
47003
|
+
weight: weight_2
|
|
46850
47004
|
color: color_1
|
|
46851
47005
|
class symbol(String, AllowedValuesMixin):
|
|
46852
47006
|
version: str
|
|
@@ -47648,7 +47802,7 @@ class yplus_ystar(Group):
|
|
|
47648
47802
|
max_allowed: max_allowed
|
|
47649
47803
|
wall_zones: wall_zones
|
|
47650
47804
|
phase: phase_53
|
|
47651
|
-
class
|
|
47805
|
+
class type_9(Group):
|
|
47652
47806
|
version: str
|
|
47653
47807
|
fluent_name: str
|
|
47654
47808
|
_python_name: str
|
|
@@ -47712,7 +47866,7 @@ class cell_registers_child(Group):
|
|
|
47712
47866
|
command_names: list[str]
|
|
47713
47867
|
name: name_21
|
|
47714
47868
|
python_name_1: python_name_1
|
|
47715
|
-
type:
|
|
47869
|
+
type: type_9
|
|
47716
47870
|
display_options: display_options
|
|
47717
47871
|
def create_volume_surface(self):
|
|
47718
47872
|
"""
|
|
@@ -49047,7 +49201,7 @@ class time_step_count_1(Real):
|
|
|
49047
49201
|
version: str
|
|
49048
49202
|
fluent_name: str
|
|
49049
49203
|
_python_name: str
|
|
49050
|
-
class
|
|
49204
|
+
class type_10(String, AllowedValuesMixin):
|
|
49051
49205
|
version: str
|
|
49052
49206
|
fluent_name: str
|
|
49053
49207
|
_python_name: str
|
|
@@ -49406,7 +49560,7 @@ class transient_controls(Group):
|
|
|
49406
49560
|
fluent_name: str
|
|
49407
49561
|
_python_name: str
|
|
49408
49562
|
child_names: list[str]
|
|
49409
|
-
type:
|
|
49563
|
+
type: type_10
|
|
49410
49564
|
method: method_10
|
|
49411
49565
|
duration_specification_method: duration_specification_method
|
|
49412
49566
|
specified_time_step: specified_time_step
|
|
@@ -51571,7 +51725,7 @@ class option_41(String, AllowedValuesMixin):
|
|
|
51571
51725
|
version: str
|
|
51572
51726
|
fluent_name: str
|
|
51573
51727
|
_python_name: str
|
|
51574
|
-
class
|
|
51728
|
+
class type_11(Group):
|
|
51575
51729
|
version: str
|
|
51576
51730
|
fluent_name: str
|
|
51577
51731
|
_python_name: str
|
|
@@ -51593,7 +51747,7 @@ class automatic(Group):
|
|
|
51593
51747
|
_python_name: str
|
|
51594
51748
|
child_names: list[str]
|
|
51595
51749
|
option: option_1
|
|
51596
|
-
type:
|
|
51750
|
+
type: type_11
|
|
51597
51751
|
id: id
|
|
51598
51752
|
normal: normal_2
|
|
51599
51753
|
partition: partition
|
|
@@ -52833,7 +52987,7 @@ class pattern_1(String, AllowedValuesMixin):
|
|
|
52833
52987
|
version: str
|
|
52834
52988
|
fluent_name: str
|
|
52835
52989
|
_python_name: str
|
|
52836
|
-
class
|
|
52990
|
+
class weight_3(Real):
|
|
52837
52991
|
version: str
|
|
52838
52992
|
fluent_name: str
|
|
52839
52993
|
_python_name: str
|
|
@@ -52843,7 +52997,7 @@ class lines_child(Group):
|
|
|
52843
52997
|
_python_name: str
|
|
52844
52998
|
child_names: list[str]
|
|
52845
52999
|
pattern: pattern_1
|
|
52846
|
-
weight:
|
|
53000
|
+
weight: weight_3
|
|
52847
53001
|
color: color_3
|
|
52848
53002
|
class lines(ListObject[lines_child]):
|
|
52849
53003
|
version: str
|
|
@@ -53856,7 +54010,7 @@ class data_source(String, AllowedValuesMixin):
|
|
|
53856
54010
|
version: str
|
|
53857
54011
|
fluent_name: str
|
|
53858
54012
|
_python_name: str
|
|
53859
|
-
class
|
|
54013
|
+
class type_12(String, AllowedValuesMixin):
|
|
53860
54014
|
version: str
|
|
53861
54015
|
fluent_name: str
|
|
53862
54016
|
_python_name: str
|
|
@@ -53865,7 +54019,7 @@ class range_options_3(Group):
|
|
|
53865
54019
|
fluent_name: str
|
|
53866
54020
|
_python_name: str
|
|
53867
54021
|
child_names: list[str]
|
|
53868
|
-
type:
|
|
54022
|
+
type: type_12
|
|
53869
54023
|
minimum: minimum_3
|
|
53870
54024
|
maximum: maximum_3
|
|
53871
54025
|
class color_density(Real):
|
|
@@ -55115,6 +55269,18 @@ class show_colormap(Boolean):
|
|
|
55115
55269
|
version: str
|
|
55116
55270
|
fluent_name: str
|
|
55117
55271
|
_python_name: str
|
|
55272
|
+
class line_weight(Real):
|
|
55273
|
+
version: str
|
|
55274
|
+
fluent_name: str
|
|
55275
|
+
_python_name: str
|
|
55276
|
+
class marker_size_4(Real):
|
|
55277
|
+
version: str
|
|
55278
|
+
fluent_name: str
|
|
55279
|
+
_python_name: str
|
|
55280
|
+
class marker_symbol_1(String, AllowedValuesMixin):
|
|
55281
|
+
version: str
|
|
55282
|
+
fluent_name: str
|
|
55283
|
+
_python_name: str
|
|
55118
55284
|
class rendering_options(Group):
|
|
55119
55285
|
version: str
|
|
55120
55286
|
fluent_name: str
|
|
@@ -55130,6 +55296,9 @@ class rendering_options(Group):
|
|
|
55130
55296
|
hidden_surfaces: hidden_surfaces
|
|
55131
55297
|
front_faces_transparent: front_faces_transparent_1
|
|
55132
55298
|
show_colormap: show_colormap
|
|
55299
|
+
line_weight: line_weight
|
|
55300
|
+
marker_size: marker_size_4
|
|
55301
|
+
marker_symbol: marker_symbol_1
|
|
55133
55302
|
def device_info(self):
|
|
55134
55303
|
"""
|
|
55135
55304
|
List information for the graphics device.
|
|
@@ -55141,7 +55310,7 @@ class rendering_options(Group):
|
|
|
55141
55310
|
Parameters
|
|
55142
55311
|
----------
|
|
55143
55312
|
driver_name : str
|
|
55144
|
-
|
|
55313
|
+
Select new graphics driver.
|
|
55145
55314
|
"""
|
|
55146
55315
|
def set_rendering_options(self):
|
|
55147
55316
|
"""
|
|
@@ -55981,6 +56150,32 @@ class display_6(Group):
|
|
|
55981
56150
|
zone_names : List
|
|
55982
56151
|
Enter zone name list.
|
|
55983
56152
|
"""
|
|
56153
|
+
def hsf_file(self, filename: str):
|
|
56154
|
+
"""
|
|
56155
|
+
Display hoops stream file data to active graphics window.
|
|
56156
|
+
|
|
56157
|
+
Parameters
|
|
56158
|
+
----------
|
|
56159
|
+
filename : str
|
|
56160
|
+
Enter HSF file name.
|
|
56161
|
+
"""
|
|
56162
|
+
def re_render(self):
|
|
56163
|
+
"""
|
|
56164
|
+
Re-render the last contour, profile, or velocity vector plot with updated surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the contour data.
|
|
56165
|
+
"""
|
|
56166
|
+
def re_scale(self):
|
|
56167
|
+
"""
|
|
56168
|
+
Re-render the last contour, profile, or velocity vector plot with updated scale, surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the field data.
|
|
56169
|
+
"""
|
|
56170
|
+
def surface_cells(self, surface_cell_names_ids: list[str]):
|
|
56171
|
+
"""
|
|
56172
|
+
Draw the cells on the specified surfaces.
|
|
56173
|
+
|
|
56174
|
+
Parameters
|
|
56175
|
+
----------
|
|
56176
|
+
surface_cell_names_ids : List
|
|
56177
|
+
Enter the list of surface names/ids.
|
|
56178
|
+
"""
|
|
55984
56179
|
class texture_name(String, AllowedValuesMixin):
|
|
55985
56180
|
version: str
|
|
55986
56181
|
fluent_name: str
|
|
@@ -57703,16 +57898,18 @@ class histogram_1(Group):
|
|
|
57703
57898
|
sample_file : str
|
|
57704
57899
|
Enter the name of a sample file to be loaded.
|
|
57705
57900
|
"""
|
|
57706
|
-
def dpm_sample_contour_plots(self, sample_name: str, interval_size: float | str):
|
|
57901
|
+
def dpm_sample_contour_plots(self, sample_name: str, interval_size: float | str, writing_radial_profile_files_enabled: bool):
|
|
57707
57902
|
"""
|
|
57708
57903
|
Prepare named expressions from data in a DPM sample file (collected at a cut plane surface) for contour plotting.
|
|
57709
57904
|
|
|
57710
57905
|
Parameters
|
|
57711
57906
|
----------
|
|
57712
57907
|
sample_name : str
|
|
57713
|
-
|
|
57908
|
+
Pick a sample, for which a .dpm sample file of the same name is available, for creating DPM Sample Contour Plots.
|
|
57714
57909
|
interval_size : real
|
|
57715
|
-
|
|
57910
|
+
Define the spatial resolution of the DPM Sample Contour Plots. Higher resolution (i.e. a smaller interval size) may cause noisy plots and data points representing too few statistical events in the sample file.
|
|
57911
|
+
writing_radial_profile_files_enabled : bool
|
|
57912
|
+
If the plane is (parallel to) a cartesian coordinate plane, instead of producing the Expressions for DPM Sample Contour Plots, calculate radial profiles and write them into .csv data files.
|
|
57716
57913
|
"""
|
|
57717
57914
|
class output_udf(String, AllowedValuesMixin):
|
|
57718
57915
|
version: str
|
|
@@ -59732,7 +59929,7 @@ class results(Group):
|
|
|
59732
59929
|
scene: scene
|
|
59733
59930
|
animations: animations
|
|
59734
59931
|
report: report_2
|
|
59735
|
-
class
|
|
59932
|
+
class type_13(String, AllowedValuesMixin):
|
|
59736
59933
|
version: str
|
|
59737
59934
|
fluent_name: str
|
|
59738
59935
|
_python_name: str
|
|
@@ -59906,7 +60103,7 @@ class definition_1_child(Group):
|
|
|
59906
60103
|
_python_name: str
|
|
59907
60104
|
child_names: list[str]
|
|
59908
60105
|
name: name_2
|
|
59909
|
-
type:
|
|
60106
|
+
type: type_13
|
|
59910
60107
|
walls: walls
|
|
59911
60108
|
vector: vector_2
|
|
59912
60109
|
center: center_2
|
|
@@ -61531,7 +61728,7 @@ class definition_3_child(Group):
|
|
|
61531
61728
|
child_names: list[str]
|
|
61532
61729
|
command_names: list[str]
|
|
61533
61730
|
name: name_2
|
|
61534
|
-
type:
|
|
61731
|
+
type: type_13
|
|
61535
61732
|
surfaces: surfaces_17
|
|
61536
61733
|
imported_surfaces: imported_surfaces
|
|
61537
61734
|
fit_imported_surfaces: fit_imported_surfaces
|
|
@@ -61769,7 +61966,7 @@ class change_as_percentage(Boolean):
|
|
|
61769
61966
|
version: str
|
|
61770
61967
|
fluent_name: str
|
|
61771
61968
|
_python_name: str
|
|
61772
|
-
class
|
|
61969
|
+
class weight_4(Real):
|
|
61773
61970
|
version: str
|
|
61774
61971
|
fluent_name: str
|
|
61775
61972
|
_python_name: str
|
|
@@ -61783,7 +61980,7 @@ class objectives_1_child(Group):
|
|
|
61783
61980
|
step_direction: step_direction
|
|
61784
61981
|
target_change: target_change
|
|
61785
61982
|
change_as_percentage: change_as_percentage
|
|
61786
|
-
weight:
|
|
61983
|
+
weight: weight_4
|
|
61787
61984
|
class objectives_1(NamedObject[objectives_1_child]):
|
|
61788
61985
|
version: str
|
|
61789
61986
|
fluent_name: str
|
|
@@ -61983,7 +62180,7 @@ class file_name_20(String):
|
|
|
61983
62180
|
version: str
|
|
61984
62181
|
fluent_name: str
|
|
61985
62182
|
_python_name: str
|
|
61986
|
-
class
|
|
62183
|
+
class weight_5(Real):
|
|
61987
62184
|
version: str
|
|
61988
62185
|
fluent_name: str
|
|
61989
62186
|
_python_name: str
|
|
@@ -61999,7 +62196,7 @@ class results_1_child(Group):
|
|
|
61999
62196
|
file_name: file_name_20
|
|
62000
62197
|
observable: observable_2
|
|
62001
62198
|
value: value_22
|
|
62002
|
-
weight:
|
|
62199
|
+
weight: weight_5
|
|
62003
62200
|
expected_change: expected_change
|
|
62004
62201
|
class results_1(NamedObject[results_1_child]):
|
|
62005
62202
|
version: str
|
|
@@ -62622,7 +62819,7 @@ class design_variables(Group):
|
|
|
62622
62819
|
"""
|
|
62623
62820
|
Initialize the design variables with the current values.
|
|
62624
62821
|
"""
|
|
62625
|
-
class
|
|
62822
|
+
class type_14(String, AllowedValuesMixin):
|
|
62626
62823
|
version: str
|
|
62627
62824
|
fluent_name: str
|
|
62628
62825
|
_python_name: str
|
|
@@ -62795,7 +62992,7 @@ class model_6(Group):
|
|
|
62795
62992
|
_python_name: str
|
|
62796
62993
|
child_names: list[str]
|
|
62797
62994
|
command_names: list[str]
|
|
62798
|
-
type:
|
|
62995
|
+
type: type_14
|
|
62799
62996
|
settings: settings_34
|
|
62800
62997
|
offline_training: offline_training
|
|
62801
62998
|
management: management
|