ansys-fluent-core 0.27.dev1__py3-none-any.whl → 0.28.dev0__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 +22 -9
- ansys/fluent/core/_version.py +5 -2
- ansys/fluent/core/codegen/__init__.py +0 -3
- ansys/fluent/core/codegen/allapigen.py +1 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
- ansys/fluent/core/codegen/datamodelgen.py +53 -12
- ansys/fluent/core/codegen/settingsgen.py +21 -12
- ansys/fluent/core/codegen/settingsgen_old.py +2 -2
- ansys/fluent/core/codegen/tuigen.py +1 -1
- ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
- ansys/fluent/core/data_model_cache.py +132 -70
- ansys/fluent/core/docs/README.rst +2 -2
- ansys/fluent/core/examples/downloads.py +3 -5
- ansys/fluent/core/exceptions.py +1 -0
- ansys/fluent/core/file_session.py +59 -131
- ansys/fluent/core/filereader/case_file.py +17 -17
- ansys/fluent/core/filereader/casereader.py +2 -1
- ansys/fluent/core/filereader/data_file.py +7 -7
- ansys/fluent/core/filereader/lispy.py +6 -1
- ansys/fluent/core/fluent_connection.py +35 -7
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
- ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
- ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
- ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
- ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
- ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
- ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
- ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
- ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
- ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
- ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
- ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
- ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
- ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
- ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
- ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
- ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
- ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
- ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
- ansys/fluent/core/generated/fluent_version_251.py +4 -4
- ansys/fluent/core/generated/fluent_version_252.py +5 -0
- ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
- ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
- ansys/fluent/core/generated/solver/settings_222.py +3 -3
- ansys/fluent/core/generated/solver/settings_231.py +4 -4
- ansys/fluent/core/generated/solver/settings_232.py +5 -5
- ansys/fluent/core/generated/solver/settings_241.py +5 -5
- ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
- ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
- ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
- ansys/fluent/core/generated/solver/settings_252.py +90369 -0
- ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
- ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
- ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
- ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
- ansys/fluent/core/generated/solver/tui_252.py +37720 -0
- ansys/fluent/core/journaling.py +1 -1
- ansys/fluent/core/launcher/error_handler.py +3 -0
- ansys/fluent/core/launcher/fluent_container.py +5 -0
- ansys/fluent/core/launcher/launcher.py +1 -2
- ansys/fluent/core/launcher/launcher_utils.py +17 -6
- ansys/fluent/core/launcher/process_launch_string.py +3 -3
- ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
- ansys/fluent/core/launcher/slurm_launcher.py +2 -1
- ansys/fluent/core/launcher/standalone_launcher.py +11 -5
- ansys/fluent/core/launcher/watchdog.py +1 -1
- ansys/fluent/core/launcher/watchdog_exec +6 -3
- ansys/fluent/core/logging.py +1 -5
- ansys/fluent/core/parametric.py +6 -3
- ansys/fluent/core/post_objects/meta.py +1 -39
- ansys/fluent/core/post_objects/post_helper.py +4 -3
- ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
- ansys/fluent/core/post_objects/post_objects_container.py +39 -2
- ansys/fluent/core/rpvars.py +2 -1
- ansys/fluent/core/scheduler/machine_list.py +3 -1
- ansys/fluent/core/search.py +109 -262
- ansys/fluent/core/services/__init__.py +3 -0
- ansys/fluent/core/services/api_upgrade.py +1 -0
- ansys/fluent/core/services/batch_ops.py +3 -1
- ansys/fluent/core/services/datamodel_se.py +37 -30
- ansys/fluent/core/services/datamodel_tui.py +8 -3
- ansys/fluent/core/services/deprecated_field_data.py +691 -0
- ansys/fluent/core/services/field_data.py +67 -357
- ansys/fluent/core/services/interceptors.py +6 -4
- ansys/fluent/core/services/reduction.py +1 -2
- ansys/fluent/core/services/scheme_eval.py +2 -3
- ansys/fluent/core/services/solution_variables.py +46 -48
- ansys/fluent/core/session.py +6 -4
- ansys/fluent/core/session_meshing.pyi +5 -0
- ansys/fluent/core/session_pure_meshing.pyi +4 -1
- ansys/fluent/core/session_solver_lite.py +2 -1
- ansys/fluent/core/solver/flobject.py +179 -207
- ansys/fluent/core/solver/flunits.py +65 -56
- ansys/fluent/core/solver/function/reduction.py +9 -29
- ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
- ansys/fluent/core/solver/settings_builtin_data.py +105 -1
- ansys/fluent/core/solver/settings_external.py +0 -28
- ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
- ansys/fluent/core/systemcoupling.py +145 -14
- ansys/fluent/core/utils/__init__.py +18 -2
- ansys/fluent/core/utils/dump_session_data.py +7 -4
- ansys/fluent/core/utils/execution.py +2 -2
- ansys/fluent/core/utils/file_transfer_service.py +37 -42
- ansys/fluent/core/utils/fluent_version.py +20 -2
- ansys/fluent/core/utils/networking.py +39 -1
- ansys/fluent/core/workflow.py +3 -15
- ansys/fluent/tests/conftest.py +89 -7
- ansys/fluent/tests/fluent/test_version/test.py +2 -0
- ansys/fluent/tests/fluent_fixtures.py +195 -0
- ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
- ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
- ansys/fluent/tests/test_builtin_settings.py +28 -0
- ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
- ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
- ansys/fluent/tests/test_casereader.py +1 -1
- ansys/fluent/tests/test_codegen.py +116 -6
- ansys/fluent/tests/test_data_model_cache.py +1 -1
- ansys/fluent/tests/test_datamodel_service.py +14 -19
- ansys/fluent/tests/test_field_data.py +93 -45
- ansys/fluent/tests/test_file_session.py +32 -29
- ansys/fluent/tests/test_flobject.py +16 -58
- ansys/fluent/tests/test_fluent_fixes.py +5 -5
- ansys/fluent/tests/test_fluent_session.py +11 -8
- ansys/fluent/tests/test_fluent_version.py +1 -1
- ansys/fluent/tests/test_launcher.py +22 -5
- ansys/fluent/tests/test_launcher_remote.py +80 -4
- ansys/fluent/tests/test_meshing_utilities.py +93 -44
- ansys/fluent/tests/test_meshing_workflow.py +6 -6
- ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
- ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
- ansys/fluent/tests/test_preferences.py +6 -6
- ansys/fluent/tests/test_reduction.py +61 -30
- ansys/fluent/tests/test_rp_vars.py +1 -1
- ansys/fluent/tests/test_search.py +53 -200
- ansys/fluent/tests/test_session.py +18 -13
- ansys/fluent/tests/test_settings_api.py +93 -29
- ansys/fluent/tests/test_settings_reader.py +1 -1
- ansys/fluent/tests/test_solver_monitors.py +1 -1
- ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
- ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
- ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
- ansys/fluent/tests/test_solvermode/test_models.py +3 -3
- ansys/fluent/tests/test_systemcoupling.py +33 -5
- ansys/fluent/tests/test_topy.py +2 -2
- ansys/fluent/tests/test_tui_api.py +5 -5
- ansys/fluent/tests/test_utils.py +1 -1
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
- ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
- ansys/fluent/core/generated/api_tree_222.pickle +0 -0
- ansys/fluent/core/generated/api_tree_231.pickle +0 -0
- ansys/fluent/core/generated/api_tree_232.pickle +0 -0
- ansys/fluent/core/generated/api_tree_241.pickle +0 -0
- ansys/fluent/core/generated/api_tree_242.pickle +0 -0
- ansys/fluent/core/generated/api_tree_251.pickle +0 -0
- ansys/fluent/tests/test_tests_util.py +0 -47
- ansys/fluent/tests/util/__init__.py +0 -38
- ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,466 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
# pylint: disable=line-too-long
|
|
5
|
+
|
|
6
|
+
from ansys.fluent.core.services.datamodel_se import (
|
|
7
|
+
PyMenu,
|
|
8
|
+
PyParameter,
|
|
9
|
+
PyTextual,
|
|
10
|
+
PyNumerical,
|
|
11
|
+
PyDictionary,
|
|
12
|
+
PyNamedObjectContainer,
|
|
13
|
+
PyCommand,
|
|
14
|
+
PyQuery
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class Root(PyMenu):
|
|
19
|
+
"""
|
|
20
|
+
Singleton Root.
|
|
21
|
+
"""
|
|
22
|
+
def __init__(self, service, rules, path):
|
|
23
|
+
self.TaskObject = self.__class__.TaskObject(service, rules, path + [("TaskObject", "")])
|
|
24
|
+
self.Workflow = self.__class__.Workflow(service, rules, path + [("Workflow", "")])
|
|
25
|
+
self.CreateCompositeTask = self.__class__.CreateCompositeTask(service, rules, "CreateCompositeTask", path)
|
|
26
|
+
self.CreateNewWorkflow = self.__class__.CreateNewWorkflow(service, rules, "CreateNewWorkflow", path)
|
|
27
|
+
self.DeleteTasks = self.__class__.DeleteTasks(service, rules, "DeleteTasks", path)
|
|
28
|
+
self.InitializeWorkflow = self.__class__.InitializeWorkflow(service, rules, "InitializeWorkflow", path)
|
|
29
|
+
self.InsertNewTask = self.__class__.InsertNewTask(service, rules, "InsertNewTask", path)
|
|
30
|
+
self.LoadState = self.__class__.LoadState(service, rules, "LoadState", path)
|
|
31
|
+
self.LoadWorkflow = self.__class__.LoadWorkflow(service, rules, "LoadWorkflow", path)
|
|
32
|
+
self.ResetWorkflow = self.__class__.ResetWorkflow(service, rules, "ResetWorkflow", path)
|
|
33
|
+
self.SaveWorkflow = self.__class__.SaveWorkflow(service, rules, "SaveWorkflow", path)
|
|
34
|
+
super().__init__(service, rules, path)
|
|
35
|
+
|
|
36
|
+
class TaskObject(PyNamedObjectContainer):
|
|
37
|
+
"""
|
|
38
|
+
.
|
|
39
|
+
"""
|
|
40
|
+
class _TaskObject(PyMenu):
|
|
41
|
+
"""
|
|
42
|
+
Singleton _TaskObject.
|
|
43
|
+
"""
|
|
44
|
+
def __init__(self, service, rules, path):
|
|
45
|
+
self.Arguments = self.__class__.Arguments(service, rules, path + [("Arguments", "")])
|
|
46
|
+
self.CheckPoint = self.__class__.CheckPoint(service, rules, path + [("CheckPoint", "")])
|
|
47
|
+
self.CommandName = self.__class__.CommandName(service, rules, path + [("CommandName", "")])
|
|
48
|
+
self.Errors = self.__class__.Errors(service, rules, path + [("Errors", "")])
|
|
49
|
+
self.InactiveTaskList = self.__class__.InactiveTaskList(service, rules, path + [("InactiveTaskList", "")])
|
|
50
|
+
self.ObjectPath = self.__class__.ObjectPath(service, rules, path + [("ObjectPath", "")])
|
|
51
|
+
self.State = self.__class__.State(service, rules, path + [("State", "")])
|
|
52
|
+
self.TaskList = self.__class__.TaskList(service, rules, path + [("TaskList", "")])
|
|
53
|
+
self.TaskType = self.__class__.TaskType(service, rules, path + [("TaskType", "")])
|
|
54
|
+
self.Warnings = self.__class__.Warnings(service, rules, path + [("Warnings", "")])
|
|
55
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
56
|
+
self.AddChildAndUpdate = self.__class__.AddChildAndUpdate(service, rules, "AddChildAndUpdate", path)
|
|
57
|
+
self.AddChildToTask = self.__class__.AddChildToTask(service, rules, "AddChildToTask", path)
|
|
58
|
+
self.DisplayModel = self.__class__.DisplayModel(service, rules, "DisplayModel", path)
|
|
59
|
+
self.Execute = self.__class__.Execute(service, rules, "Execute", path)
|
|
60
|
+
self.ExecuteUpstreamNonExecutedAndThisTask = self.__class__.ExecuteUpstreamNonExecutedAndThisTask(service, rules, "ExecuteUpstreamNonExecutedAndThisTask", path)
|
|
61
|
+
self.ForceUptoDate = self.__class__.ForceUptoDate(service, rules, "ForceUptoDate", path)
|
|
62
|
+
self.GetNextPossibleTasks = self.__class__.GetNextPossibleTasks(service, rules, "GetNextPossibleTasks", path)
|
|
63
|
+
self.InsertCompositeChildTask = self.__class__.InsertCompositeChildTask(service, rules, "InsertCompositeChildTask", path)
|
|
64
|
+
self.InsertCompoundChildTask = self.__class__.InsertCompoundChildTask(service, rules, "InsertCompoundChildTask", path)
|
|
65
|
+
self.InsertNextTask = self.__class__.InsertNextTask(service, rules, "InsertNextTask", path)
|
|
66
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
67
|
+
self.Revert = self.__class__.Revert(service, rules, "Revert", path)
|
|
68
|
+
self.SetAsCurrent = self.__class__.SetAsCurrent(service, rules, "SetAsCurrent", path)
|
|
69
|
+
self.UpdateChildTasks = self.__class__.UpdateChildTasks(service, rules, "UpdateChildTasks", path)
|
|
70
|
+
super().__init__(service, rules, path)
|
|
71
|
+
|
|
72
|
+
class Arguments(PyDictionary):
|
|
73
|
+
"""
|
|
74
|
+
Parameter Arguments of value type dict[str, Any].
|
|
75
|
+
"""
|
|
76
|
+
pass
|
|
77
|
+
|
|
78
|
+
class CheckPoint(PyTextual):
|
|
79
|
+
"""
|
|
80
|
+
Parameter CheckPoint of value type str.
|
|
81
|
+
"""
|
|
82
|
+
pass
|
|
83
|
+
|
|
84
|
+
class CommandName(PyTextual):
|
|
85
|
+
"""
|
|
86
|
+
Parameter CommandName of value type str.
|
|
87
|
+
"""
|
|
88
|
+
pass
|
|
89
|
+
|
|
90
|
+
class Errors(PyTextual):
|
|
91
|
+
"""
|
|
92
|
+
Parameter Errors of value type list[str].
|
|
93
|
+
"""
|
|
94
|
+
pass
|
|
95
|
+
|
|
96
|
+
class InactiveTaskList(PyTextual):
|
|
97
|
+
"""
|
|
98
|
+
Parameter InactiveTaskList of value type list[str].
|
|
99
|
+
"""
|
|
100
|
+
pass
|
|
101
|
+
|
|
102
|
+
class ObjectPath(PyTextual):
|
|
103
|
+
"""
|
|
104
|
+
Parameter ObjectPath of value type str.
|
|
105
|
+
"""
|
|
106
|
+
pass
|
|
107
|
+
|
|
108
|
+
class State(PyTextual):
|
|
109
|
+
"""
|
|
110
|
+
Parameter State of value type str.
|
|
111
|
+
"""
|
|
112
|
+
pass
|
|
113
|
+
|
|
114
|
+
class TaskList(PyTextual):
|
|
115
|
+
"""
|
|
116
|
+
Parameter TaskList of value type list[str].
|
|
117
|
+
"""
|
|
118
|
+
pass
|
|
119
|
+
|
|
120
|
+
class TaskType(PyTextual):
|
|
121
|
+
"""
|
|
122
|
+
Parameter TaskType of value type str.
|
|
123
|
+
"""
|
|
124
|
+
pass
|
|
125
|
+
|
|
126
|
+
class Warnings(PyTextual):
|
|
127
|
+
"""
|
|
128
|
+
Parameter Warnings of value type list[str].
|
|
129
|
+
"""
|
|
130
|
+
pass
|
|
131
|
+
|
|
132
|
+
class _name_(PyTextual):
|
|
133
|
+
"""
|
|
134
|
+
Parameter _name_ of value type str.
|
|
135
|
+
"""
|
|
136
|
+
pass
|
|
137
|
+
|
|
138
|
+
class AddChildAndUpdate(PyCommand):
|
|
139
|
+
"""
|
|
140
|
+
Command AddChildAndUpdate.
|
|
141
|
+
|
|
142
|
+
Parameters
|
|
143
|
+
----------
|
|
144
|
+
DeferUpdate : bool
|
|
145
|
+
Force : bool
|
|
146
|
+
|
|
147
|
+
Returns
|
|
148
|
+
-------
|
|
149
|
+
bool
|
|
150
|
+
"""
|
|
151
|
+
pass
|
|
152
|
+
|
|
153
|
+
class AddChildToTask(PyCommand):
|
|
154
|
+
"""
|
|
155
|
+
Command AddChildToTask.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
Returns
|
|
159
|
+
-------
|
|
160
|
+
bool
|
|
161
|
+
"""
|
|
162
|
+
pass
|
|
163
|
+
|
|
164
|
+
class DisplayModel(PyCommand):
|
|
165
|
+
"""
|
|
166
|
+
Command DisplayModel.
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
Returns
|
|
170
|
+
-------
|
|
171
|
+
bool
|
|
172
|
+
"""
|
|
173
|
+
pass
|
|
174
|
+
|
|
175
|
+
class Execute(PyCommand):
|
|
176
|
+
"""
|
|
177
|
+
Command Execute.
|
|
178
|
+
|
|
179
|
+
Parameters
|
|
180
|
+
----------
|
|
181
|
+
Force : bool
|
|
182
|
+
|
|
183
|
+
Returns
|
|
184
|
+
-------
|
|
185
|
+
bool
|
|
186
|
+
"""
|
|
187
|
+
pass
|
|
188
|
+
|
|
189
|
+
class ExecuteUpstreamNonExecutedAndThisTask(PyCommand):
|
|
190
|
+
"""
|
|
191
|
+
Command ExecuteUpstreamNonExecutedAndThisTask.
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
Returns
|
|
195
|
+
-------
|
|
196
|
+
bool
|
|
197
|
+
"""
|
|
198
|
+
pass
|
|
199
|
+
|
|
200
|
+
class ForceUptoDate(PyCommand):
|
|
201
|
+
"""
|
|
202
|
+
Command ForceUptoDate.
|
|
203
|
+
|
|
204
|
+
Parameters
|
|
205
|
+
----------
|
|
206
|
+
Force : bool
|
|
207
|
+
|
|
208
|
+
Returns
|
|
209
|
+
-------
|
|
210
|
+
bool
|
|
211
|
+
"""
|
|
212
|
+
pass
|
|
213
|
+
|
|
214
|
+
class GetNextPossibleTasks(PyCommand):
|
|
215
|
+
"""
|
|
216
|
+
Command GetNextPossibleTasks.
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
Returns
|
|
220
|
+
-------
|
|
221
|
+
bool
|
|
222
|
+
"""
|
|
223
|
+
pass
|
|
224
|
+
|
|
225
|
+
class InsertCompositeChildTask(PyCommand):
|
|
226
|
+
"""
|
|
227
|
+
Command InsertCompositeChildTask.
|
|
228
|
+
|
|
229
|
+
Parameters
|
|
230
|
+
----------
|
|
231
|
+
CommandName : str
|
|
232
|
+
|
|
233
|
+
Returns
|
|
234
|
+
-------
|
|
235
|
+
bool
|
|
236
|
+
"""
|
|
237
|
+
pass
|
|
238
|
+
|
|
239
|
+
class InsertCompoundChildTask(PyCommand):
|
|
240
|
+
"""
|
|
241
|
+
Command InsertCompoundChildTask.
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
Returns
|
|
245
|
+
-------
|
|
246
|
+
bool
|
|
247
|
+
"""
|
|
248
|
+
pass
|
|
249
|
+
|
|
250
|
+
class InsertNextTask(PyCommand):
|
|
251
|
+
"""
|
|
252
|
+
Command InsertNextTask.
|
|
253
|
+
|
|
254
|
+
Parameters
|
|
255
|
+
----------
|
|
256
|
+
CommandName : str
|
|
257
|
+
Select : bool
|
|
258
|
+
|
|
259
|
+
Returns
|
|
260
|
+
-------
|
|
261
|
+
bool
|
|
262
|
+
"""
|
|
263
|
+
pass
|
|
264
|
+
|
|
265
|
+
class Rename(PyCommand):
|
|
266
|
+
"""
|
|
267
|
+
Command Rename.
|
|
268
|
+
|
|
269
|
+
Parameters
|
|
270
|
+
----------
|
|
271
|
+
NewName : str
|
|
272
|
+
|
|
273
|
+
Returns
|
|
274
|
+
-------
|
|
275
|
+
bool
|
|
276
|
+
"""
|
|
277
|
+
pass
|
|
278
|
+
|
|
279
|
+
class Revert(PyCommand):
|
|
280
|
+
"""
|
|
281
|
+
Command Revert.
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Returns
|
|
285
|
+
-------
|
|
286
|
+
bool
|
|
287
|
+
"""
|
|
288
|
+
pass
|
|
289
|
+
|
|
290
|
+
class SetAsCurrent(PyCommand):
|
|
291
|
+
"""
|
|
292
|
+
Command SetAsCurrent.
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Returns
|
|
296
|
+
-------
|
|
297
|
+
bool
|
|
298
|
+
"""
|
|
299
|
+
pass
|
|
300
|
+
|
|
301
|
+
class UpdateChildTasks(PyCommand):
|
|
302
|
+
"""
|
|
303
|
+
Command UpdateChildTasks.
|
|
304
|
+
|
|
305
|
+
Parameters
|
|
306
|
+
----------
|
|
307
|
+
SetupTypeChanged : bool
|
|
308
|
+
Arguments : dict[str, Any]
|
|
309
|
+
|
|
310
|
+
Returns
|
|
311
|
+
-------
|
|
312
|
+
bool
|
|
313
|
+
"""
|
|
314
|
+
pass
|
|
315
|
+
|
|
316
|
+
def __getitem__(self, key: str) -> _TaskObject:
|
|
317
|
+
return super().__getitem__(key)
|
|
318
|
+
|
|
319
|
+
class Workflow(PyMenu):
|
|
320
|
+
"""
|
|
321
|
+
Singleton Workflow.
|
|
322
|
+
"""
|
|
323
|
+
def __init__(self, service, rules, path):
|
|
324
|
+
self.CurrentTask = self.__class__.CurrentTask(service, rules, path + [("CurrentTask", "")])
|
|
325
|
+
self.TaskList = self.__class__.TaskList(service, rules, path + [("TaskList", "")])
|
|
326
|
+
self.WorkflowType = self.__class__.WorkflowType(service, rules, path + [("WorkflowType", "")])
|
|
327
|
+
super().__init__(service, rules, path)
|
|
328
|
+
|
|
329
|
+
class CurrentTask(PyTextual):
|
|
330
|
+
"""
|
|
331
|
+
Parameter CurrentTask of value type str.
|
|
332
|
+
"""
|
|
333
|
+
pass
|
|
334
|
+
|
|
335
|
+
class TaskList(PyTextual):
|
|
336
|
+
"""
|
|
337
|
+
Parameter TaskList of value type list[str].
|
|
338
|
+
"""
|
|
339
|
+
pass
|
|
340
|
+
|
|
341
|
+
class WorkflowType(PyTextual):
|
|
342
|
+
"""
|
|
343
|
+
Parameter WorkflowType of value type str.
|
|
344
|
+
"""
|
|
345
|
+
pass
|
|
346
|
+
|
|
347
|
+
class CreateCompositeTask(PyCommand):
|
|
348
|
+
"""
|
|
349
|
+
Command CreateCompositeTask.
|
|
350
|
+
|
|
351
|
+
Parameters
|
|
352
|
+
----------
|
|
353
|
+
ListOfTasks : list[str]
|
|
354
|
+
|
|
355
|
+
Returns
|
|
356
|
+
-------
|
|
357
|
+
bool
|
|
358
|
+
"""
|
|
359
|
+
pass
|
|
360
|
+
|
|
361
|
+
class CreateNewWorkflow(PyCommand):
|
|
362
|
+
"""
|
|
363
|
+
Command CreateNewWorkflow.
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Returns
|
|
367
|
+
-------
|
|
368
|
+
bool
|
|
369
|
+
"""
|
|
370
|
+
pass
|
|
371
|
+
|
|
372
|
+
class DeleteTasks(PyCommand):
|
|
373
|
+
"""
|
|
374
|
+
Command DeleteTasks.
|
|
375
|
+
|
|
376
|
+
Parameters
|
|
377
|
+
----------
|
|
378
|
+
ListOfTasks : list[str]
|
|
379
|
+
|
|
380
|
+
Returns
|
|
381
|
+
-------
|
|
382
|
+
bool
|
|
383
|
+
"""
|
|
384
|
+
pass
|
|
385
|
+
|
|
386
|
+
class InitializeWorkflow(PyCommand):
|
|
387
|
+
"""
|
|
388
|
+
Command InitializeWorkflow.
|
|
389
|
+
|
|
390
|
+
Parameters
|
|
391
|
+
----------
|
|
392
|
+
WorkflowType : str
|
|
393
|
+
|
|
394
|
+
Returns
|
|
395
|
+
-------
|
|
396
|
+
bool
|
|
397
|
+
"""
|
|
398
|
+
pass
|
|
399
|
+
|
|
400
|
+
class InsertNewTask(PyCommand):
|
|
401
|
+
"""
|
|
402
|
+
Command InsertNewTask.
|
|
403
|
+
|
|
404
|
+
Parameters
|
|
405
|
+
----------
|
|
406
|
+
CommandName : str
|
|
407
|
+
|
|
408
|
+
Returns
|
|
409
|
+
-------
|
|
410
|
+
bool
|
|
411
|
+
"""
|
|
412
|
+
pass
|
|
413
|
+
|
|
414
|
+
class LoadState(PyCommand):
|
|
415
|
+
"""
|
|
416
|
+
Command LoadState.
|
|
417
|
+
|
|
418
|
+
Parameters
|
|
419
|
+
----------
|
|
420
|
+
ListOfRoots : list[str]
|
|
421
|
+
|
|
422
|
+
Returns
|
|
423
|
+
-------
|
|
424
|
+
bool
|
|
425
|
+
"""
|
|
426
|
+
pass
|
|
427
|
+
|
|
428
|
+
class LoadWorkflow(PyCommand):
|
|
429
|
+
"""
|
|
430
|
+
Command LoadWorkflow.
|
|
431
|
+
|
|
432
|
+
Parameters
|
|
433
|
+
----------
|
|
434
|
+
FilePath : str
|
|
435
|
+
|
|
436
|
+
Returns
|
|
437
|
+
-------
|
|
438
|
+
bool
|
|
439
|
+
"""
|
|
440
|
+
pass
|
|
441
|
+
|
|
442
|
+
class ResetWorkflow(PyCommand):
|
|
443
|
+
"""
|
|
444
|
+
Command ResetWorkflow.
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Returns
|
|
448
|
+
-------
|
|
449
|
+
bool
|
|
450
|
+
"""
|
|
451
|
+
pass
|
|
452
|
+
|
|
453
|
+
class SaveWorkflow(PyCommand):
|
|
454
|
+
"""
|
|
455
|
+
Command SaveWorkflow.
|
|
456
|
+
|
|
457
|
+
Parameters
|
|
458
|
+
----------
|
|
459
|
+
FilePath : str
|
|
460
|
+
|
|
461
|
+
Returns
|
|
462
|
+
-------
|
|
463
|
+
bool
|
|
464
|
+
"""
|
|
465
|
+
pass
|
|
466
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
FLUENT_VERSION = "251"
|
|
2
|
-
FLUENT_BUILD_TIME = "
|
|
3
|
-
FLUENT_BUILD_ID = "
|
|
4
|
-
FLUENT_REVISION = "
|
|
5
|
-
FLUENT_BRANCH = "
|
|
2
|
+
FLUENT_BUILD_TIME = "Nov 10 2024 02:36:51 EST"
|
|
3
|
+
FLUENT_BUILD_ID = "10209"
|
|
4
|
+
FLUENT_REVISION = "7159f8faa8"
|
|
5
|
+
FLUENT_BRANCH = "releases/release-25.1"
|