ansys-fluent-core 0.20.dev5__py3-none-any.whl → 0.20.dev6__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/data/api_tree_231.pickle +0 -0
- ansys/fluent/core/data/api_tree_232.pickle +0 -0
- ansys/fluent/core/data/api_tree_241.pickle +0 -0
- ansys/fluent/core/data/api_tree_242.pickle +0 -0
- ansys/fluent/core/launcher/launcher.py +3 -2
- ansys/fluent/core/meshing/faulttolerant.py +12 -21
- ansys/fluent/core/meshing/meshing_workflow.py +71 -33
- ansys/fluent/core/meshing/tui_231.py +7168 -7168
- ansys/fluent/core/meshing/tui_232.py +7588 -7588
- ansys/fluent/core/meshing/tui_241.py +7805 -7805
- ansys/fluent/core/meshing/tui_242.py +7764 -7764
- ansys/fluent/core/meshing/watertight.py +16 -30
- ansys/fluent/core/session.py +7 -27
- ansys/fluent/core/session_base_meshing.py +18 -6
- ansys/fluent/core/session_pure_meshing.py +6 -6
- ansys/fluent/core/session_pure_meshing.pyi +2 -2
- ansys/fluent/core/solver/tui_231.py +37494 -38175
- ansys/fluent/core/solver/tui_232.py +26414 -26414
- ansys/fluent/core/solver/tui_241.py +25865 -25865
- ansys/fluent/core/solver/tui_242.py +27770 -27770
- ansys/fluent/core/systemcoupling.py +12 -6
- ansys/fluent/core/utils/file_transfer_service.py +3 -9
- ansys/fluent/core/utils/search.py +2 -2
- ansys/fluent/core/workflow.py +11 -15
- ansys/fluent/tests/test_codegen.py +20 -0
- ansys/fluent/tests/test_meshing_workflow.py +1 -1
- ansys/fluent/tests/test_new_meshing_workflow.py +114 -18
- ansys/fluent/tests/test_settings_api.py +11 -8
- {ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/RECORD +35 -34
- {ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/WHEEL +0 -0
- {ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/top_level.txt +0 -0
|
@@ -44,9 +44,10 @@ class SystemCoupling:
|
|
|
44
44
|
def __init__(self, solver):
|
|
45
45
|
self._solver = solver
|
|
46
46
|
# version check - this requires Fluent 2024 R1 or newer.
|
|
47
|
-
|
|
47
|
+
current_fluent_version = FluentVersion(self._solver.get_fluent_version())
|
|
48
|
+
if current_fluent_version < FluentVersion.v241:
|
|
48
49
|
raise RuntimeError(
|
|
49
|
-
f"Fluent version is {
|
|
50
|
+
f"Fluent version is {current_fluent_version.value}. PySystemCoupling integration requires Fluent 24.1.0 or later."
|
|
50
51
|
)
|
|
51
52
|
|
|
52
53
|
@property
|
|
@@ -72,15 +73,20 @@ class SystemCoupling:
|
|
|
72
73
|
|
|
73
74
|
def __get_syc_setup(self) -> dict:
|
|
74
75
|
def get_scp_string() -> str:
|
|
75
|
-
"""Get SCP file contents in the form of
|
|
76
|
-
|
|
77
|
-
scp_file_name =
|
|
76
|
+
"""Get the SCP file contents in the form of an XML string."""
|
|
77
|
+
|
|
78
|
+
scp_file_name = "fluent.scp"
|
|
78
79
|
self._solver.setup.models.system_coupling.write_scp_file(
|
|
79
80
|
file_name=scp_file_name
|
|
80
81
|
)
|
|
82
|
+
|
|
83
|
+
# download the file locally in case Fluent is in a container
|
|
84
|
+
if self._solver.fluent_connection._remote_instance != None:
|
|
85
|
+
self._solver.download(scp_file_name)
|
|
86
|
+
|
|
81
87
|
assert os.path.exists(
|
|
82
88
|
scp_file_name
|
|
83
|
-
), "ERROR: could not create System Coupling
|
|
89
|
+
), "ERROR: could not create System Coupling SCP file"
|
|
84
90
|
|
|
85
91
|
with open(scp_file_name, "r") as f:
|
|
86
92
|
xml_string = f.read()
|
|
@@ -12,11 +12,7 @@ class PyPIMConfigurationError(ConnectionError):
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class PimFileTransferService:
|
|
15
|
-
"""
|
|
16
|
-
writing in the cloud particularly in Ansys lab . Here we are exposing upload and
|
|
17
|
-
download methods on session objects. These would be no- ops if PyPIM is not
|
|
18
|
-
configured or not authorized with the appropriate service. This will be used for
|
|
19
|
-
internal purpose only.
|
|
15
|
+
"""Provides a file transfer service based on ``PyPIM<https://pypim.docs.pyansys.com/version/stable/>`` and ``simple_upload_server()``.
|
|
20
16
|
|
|
21
17
|
Attributes
|
|
22
18
|
----------
|
|
@@ -101,8 +97,7 @@ class PimFileTransferService:
|
|
|
101
97
|
raise FileNotFoundError(f"{file_name} does not exist.")
|
|
102
98
|
|
|
103
99
|
def upload(self, file_name: Union[list[str], str]):
|
|
104
|
-
"""Upload a file
|
|
105
|
-
supported by `PyPIM<https://pypim.docs.pyansys.com/version/stable/>`.
|
|
100
|
+
"""Upload a file to the server.
|
|
106
101
|
|
|
107
102
|
Parameters
|
|
108
103
|
----------
|
|
@@ -151,8 +146,7 @@ class PimFileTransferService:
|
|
|
151
146
|
self,
|
|
152
147
|
file_name: Union[list[str], str],
|
|
153
148
|
):
|
|
154
|
-
"""Download a file
|
|
155
|
-
`PyPIM<https://pypim.docs.pyansys.com/version/stable/>`.
|
|
149
|
+
"""Download a file from the server.
|
|
156
150
|
|
|
157
151
|
Parameters
|
|
158
152
|
----------
|
|
@@ -15,8 +15,8 @@ from ansys.fluent.core.utils.fluent_version import (
|
|
|
15
15
|
from ansys.fluent.core.workflow import (
|
|
16
16
|
BaseTask,
|
|
17
17
|
ClassicWorkflow,
|
|
18
|
-
EnhancedWorkflow,
|
|
19
18
|
TaskContainer,
|
|
19
|
+
Workflow,
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
|
|
@@ -79,7 +79,7 @@ def _get_version_path_prefix_from_obj(obj: Any):
|
|
|
79
79
|
path.extend(obj._path)
|
|
80
80
|
version = module.rsplit("_", 1)[-1]
|
|
81
81
|
prefix = "<search_root>"
|
|
82
|
-
elif isinstance(obj, (ClassicWorkflow,
|
|
82
|
+
elif isinstance(obj, (ClassicWorkflow, Workflow)):
|
|
83
83
|
path = ["<meshing_session>", obj.rules]
|
|
84
84
|
module = obj._workflow.__class__.__module__
|
|
85
85
|
module = _remove_suffix(module, ".workflow")
|
ansys/fluent/core/workflow.py
CHANGED
|
@@ -146,7 +146,7 @@ class BaseTask:
|
|
|
146
146
|
|
|
147
147
|
def __init__(
|
|
148
148
|
self,
|
|
149
|
-
command_source: Union[ClassicWorkflow,
|
|
149
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
150
150
|
task: str,
|
|
151
151
|
) -> None:
|
|
152
152
|
"""Initialize BaseTask.
|
|
@@ -719,7 +719,7 @@ class CommandTask(BaseTask):
|
|
|
719
719
|
|
|
720
720
|
def __init__(
|
|
721
721
|
self,
|
|
722
|
-
command_source: Union[ClassicWorkflow,
|
|
722
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
723
723
|
task: str,
|
|
724
724
|
) -> None:
|
|
725
725
|
"""Initialize CommandTask.
|
|
@@ -788,7 +788,7 @@ class SimpleTask(CommandTask):
|
|
|
788
788
|
|
|
789
789
|
def __init__(
|
|
790
790
|
self,
|
|
791
|
-
command_source: Union[ClassicWorkflow,
|
|
791
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
792
792
|
task: str,
|
|
793
793
|
) -> None:
|
|
794
794
|
"""Initialize SimpleTask.
|
|
@@ -816,7 +816,7 @@ class CompoundChild(SimpleTask):
|
|
|
816
816
|
|
|
817
817
|
def __init__(
|
|
818
818
|
self,
|
|
819
|
-
command_source: Union[ClassicWorkflow,
|
|
819
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
820
820
|
task: str,
|
|
821
821
|
) -> None:
|
|
822
822
|
"""Initialize CompoundChild.
|
|
@@ -847,7 +847,7 @@ class CompositeTask(BaseTask):
|
|
|
847
847
|
|
|
848
848
|
def __init__(
|
|
849
849
|
self,
|
|
850
|
-
command_source: Union[ClassicWorkflow,
|
|
850
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
851
851
|
task: str,
|
|
852
852
|
) -> None:
|
|
853
853
|
"""Initialize CompositeTask.
|
|
@@ -900,7 +900,7 @@ class ConditionalTask(CommandTask):
|
|
|
900
900
|
|
|
901
901
|
def __init__(
|
|
902
902
|
self,
|
|
903
|
-
command_source: Union[ClassicWorkflow,
|
|
903
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
904
904
|
task: str,
|
|
905
905
|
) -> None:
|
|
906
906
|
"""Initialize ConditionalTask.
|
|
@@ -935,7 +935,7 @@ class CompoundTask(CommandTask):
|
|
|
935
935
|
|
|
936
936
|
def __init__(
|
|
937
937
|
self,
|
|
938
|
-
command_source: Union[ClassicWorkflow,
|
|
938
|
+
command_source: Union[ClassicWorkflow, Workflow],
|
|
939
939
|
task: str,
|
|
940
940
|
) -> None:
|
|
941
941
|
"""Initialize CompoundTask.
|
|
@@ -1029,7 +1029,7 @@ def _makeTask(command_source, name: str) -> BaseTask:
|
|
|
1029
1029
|
return kind(command_source, task)
|
|
1030
1030
|
|
|
1031
1031
|
|
|
1032
|
-
class
|
|
1032
|
+
class Workflow:
|
|
1033
1033
|
"""Wraps a workflow object, adding methods to discover more about the relationships
|
|
1034
1034
|
between task objects.
|
|
1035
1035
|
|
|
@@ -1070,13 +1070,9 @@ class EnhancedWorkflow:
|
|
|
1070
1070
|
"initialize_workflow",
|
|
1071
1071
|
"load_workflow",
|
|
1072
1072
|
"create_new_workflow",
|
|
1073
|
-
# "fault_tolerant",
|
|
1074
|
-
# "part_management",
|
|
1075
|
-
# "pm_file_management",
|
|
1076
1073
|
"rules",
|
|
1077
1074
|
"service",
|
|
1078
1075
|
"task_object",
|
|
1079
|
-
# "watertight",
|
|
1080
1076
|
"workflow",
|
|
1081
1077
|
}
|
|
1082
1078
|
|
|
@@ -1223,7 +1219,7 @@ class EnhancedWorkflow:
|
|
|
1223
1219
|
except AttributeError:
|
|
1224
1220
|
pass
|
|
1225
1221
|
|
|
1226
|
-
def _new_workflow(self, name: str, dynamic_interface: bool):
|
|
1222
|
+
def _new_workflow(self, name: str, dynamic_interface: bool = True):
|
|
1227
1223
|
self._dynamic_interface = dynamic_interface
|
|
1228
1224
|
self._workflow.InitializeWorkflow(WorkflowType=name)
|
|
1229
1225
|
self._initialize_methods(dynamic_interface=dynamic_interface)
|
|
@@ -1303,7 +1299,7 @@ class EnhancedWorkflow:
|
|
|
1303
1299
|
)
|
|
1304
1300
|
|
|
1305
1301
|
def delete_tasks(self, list_of_tasks: list[str]):
|
|
1306
|
-
"""Delete the list of tasks
|
|
1302
|
+
"""Delete the provided list of tasks.
|
|
1307
1303
|
|
|
1308
1304
|
Parameters
|
|
1309
1305
|
----------
|
|
@@ -1380,7 +1376,7 @@ class ClassicWorkflow:
|
|
|
1380
1376
|
"""
|
|
1381
1377
|
|
|
1382
1378
|
def __init__(self, workflow: PyMenuGeneric, command_source: PyMenuGeneric) -> None:
|
|
1383
|
-
"""Initialize
|
|
1379
|
+
"""Initialize ClassicWorkflow.
|
|
1384
1380
|
|
|
1385
1381
|
Parameters
|
|
1386
1382
|
----------
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import importlib
|
|
2
|
+
|
|
3
|
+
import pytest
|
|
4
|
+
from util.solver_workflow import new_solver_session # noqa: F401
|
|
5
|
+
|
|
6
|
+
from ansys.fluent.core.utils.fluent_version import get_version_for_file_name
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@pytest.mark.codegen_required
|
|
10
|
+
def test_allapigen_files(new_solver_session):
|
|
11
|
+
version = get_version_for_file_name(session=new_solver_session)
|
|
12
|
+
importlib.import_module(f"ansys.fluent.core.fluent_version_{version}")
|
|
13
|
+
importlib.import_module(f"ansys.fluent.core.meshing.tui_{version}")
|
|
14
|
+
importlib.import_module(f"ansys.fluent.core.solver.tui_{version}")
|
|
15
|
+
importlib.import_module(f"ansys.fluent.core.datamodel_{version}.meshing")
|
|
16
|
+
importlib.import_module(f"ansys.fluent.core.datamodel_{version}.workflow")
|
|
17
|
+
importlib.import_module(f"ansys.fluent.core.datamodel_{version}.preferences")
|
|
18
|
+
importlib.import_module(f"ansys.fluent.core.datamodel_{version}.PartManagement")
|
|
19
|
+
importlib.import_module(f"ansys.fluent.core.datamodel_{version}.PMFileManagement")
|
|
20
|
+
importlib.import_module(f"ansys.fluent.core.solver.settings_{version}.root")
|
|
@@ -448,5 +448,5 @@ def test_new_workflow_structure(new_mesh_session):
|
|
|
448
448
|
watertight.TaskObject["Import Geometry"]
|
|
449
449
|
assert (
|
|
450
450
|
msg.value.args[0]
|
|
451
|
-
== "'
|
|
451
|
+
== "'WatertightMeshingWorkflow' object has no attribute 'TaskObject'"
|
|
452
452
|
)
|
|
@@ -534,12 +534,8 @@ def test_workflow_and_data_model_methods_new_meshing_workflow(new_mesh_session):
|
|
|
534
534
|
assert (set(dir(watertight)) - watertight._unwanted_attrs) == set(dir(watertight))
|
|
535
535
|
|
|
536
536
|
for attr in watertight._unwanted_attrs:
|
|
537
|
-
with pytest.raises(AttributeError)
|
|
537
|
+
with pytest.raises(AttributeError):
|
|
538
538
|
getattr(watertight, attr)
|
|
539
|
-
assert (
|
|
540
|
-
msg.value.args[0]
|
|
541
|
-
== f"'EnhancedMeshingWorkflow' object has no attribute '{attr}'"
|
|
542
|
-
)
|
|
543
539
|
|
|
544
540
|
watertight.import_geometry.rename(new_name="import_geom_wtm")
|
|
545
541
|
assert len(watertight._task_list) == 11
|
|
@@ -614,7 +610,8 @@ def test_watertight_workflow_children(mixing_elbow_geometry, new_mesh_session):
|
|
|
614
610
|
]
|
|
615
611
|
|
|
616
612
|
|
|
617
|
-
@pytest.mark.
|
|
613
|
+
@pytest.mark.skip("Randomly failing in CI")
|
|
614
|
+
@pytest.mark.fluent_version(">=23.2")
|
|
618
615
|
@pytest.mark.codegen_required
|
|
619
616
|
def test_watertight_workflow_dynamic_interface(mixing_elbow_geometry, new_mesh_session):
|
|
620
617
|
watertight = watertight_workflow(
|
|
@@ -629,13 +626,9 @@ def test_watertight_workflow_dynamic_interface(mixing_elbow_geometry, new_mesh_s
|
|
|
629
626
|
# is still updating after the command has returned and the client can try to access
|
|
630
627
|
# while it is in that update phase, leading to (difficult to understand) exceptions.
|
|
631
628
|
# Temporarily sleeping in the test. I note that the core event tests use sleeps also.
|
|
632
|
-
|
|
633
|
-
with pytest.raises(AttributeError) as msg:
|
|
629
|
+
with pytest.raises(AttributeError):
|
|
634
630
|
watertight.create_volume_mesh
|
|
635
|
-
|
|
636
|
-
msg.value.args[0]
|
|
637
|
-
== "'EnhancedMeshingWorkflow' object has no attribute 'create_volume_mesh'"
|
|
638
|
-
)
|
|
631
|
+
|
|
639
632
|
watertight.insert_new_task(command_name="create_volume_mesh")
|
|
640
633
|
time.sleep(2.5)
|
|
641
634
|
create_volume_mesh = watertight.create_volume_mesh
|
|
@@ -649,13 +642,8 @@ def test_watertight_workflow_dynamic_interface(mixing_elbow_geometry, new_mesh_s
|
|
|
649
642
|
watertight_geom.enclose_fluid_regions.delete()
|
|
650
643
|
assert watertight_geom.enclose_fluid_regions is None
|
|
651
644
|
watertight.create_volume_mesh.delete()
|
|
652
|
-
|
|
653
|
-
with pytest.raises(AttributeError) as msg:
|
|
645
|
+
with pytest.raises(AttributeError):
|
|
654
646
|
watertight.create_volume_mesh
|
|
655
|
-
assert (
|
|
656
|
-
msg.value.args[0]
|
|
657
|
-
== "'EnhancedMeshingWorkflow' object has no attribute 'create_volume_mesh'"
|
|
658
|
-
)
|
|
659
647
|
|
|
660
648
|
|
|
661
649
|
@pytest.mark.fluent_version(">=23.2")
|
|
@@ -920,3 +908,111 @@ def test_meshing_workflow_structure(new_mesh_session):
|
|
|
920
908
|
"Enclose Fluid Regions (Capping)",
|
|
921
909
|
"Create Regions",
|
|
922
910
|
]
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
@pytest.mark.skip("Randomly failing in CI")
|
|
914
|
+
@pytest.mark.codegen_required
|
|
915
|
+
@pytest.mark.fluent_version(">=23.2")
|
|
916
|
+
def test_attrs_in_watertight_meshing_workflow(new_mesh_session):
|
|
917
|
+
# Import geometry
|
|
918
|
+
import_file_name = examples.download_file(
|
|
919
|
+
"mixing_elbow.pmdb", "pyfluent/mixing_elbow"
|
|
920
|
+
)
|
|
921
|
+
watertight = new_mesh_session.watertight()
|
|
922
|
+
unwanted_attrs = {"fault_tolerant", "part_management", "pm_file_management"}
|
|
923
|
+
assert set(dir(watertight)) - unwanted_attrs == set(dir(watertight))
|
|
924
|
+
|
|
925
|
+
for attr in unwanted_attrs:
|
|
926
|
+
with pytest.raises(AttributeError):
|
|
927
|
+
getattr(watertight, attr)
|
|
928
|
+
|
|
929
|
+
watertight.import_geometry.file_name.set_state(import_file_name)
|
|
930
|
+
watertight.import_geometry.length_unit = "in"
|
|
931
|
+
watertight.import_geometry()
|
|
932
|
+
|
|
933
|
+
assert watertight.import_geometry.file_name()
|
|
934
|
+
# Reinitialize the workflow:
|
|
935
|
+
watertight.reinitialize()
|
|
936
|
+
|
|
937
|
+
assert not watertight.import_geometry.file_name()
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
@pytest.mark.skip("Randomly failing in CI")
|
|
941
|
+
@pytest.mark.codegen_required
|
|
942
|
+
@pytest.mark.fluent_version(">=23.2")
|
|
943
|
+
def test_attrs_in_fault_tolerant_meshing_workflow(new_mesh_session):
|
|
944
|
+
# Import CAD
|
|
945
|
+
import_file_name = examples.download_file(
|
|
946
|
+
"exhaust_system.fmd", "pyfluent/exhaust_system"
|
|
947
|
+
)
|
|
948
|
+
|
|
949
|
+
fault_tolerant = new_mesh_session.fault_tolerant()
|
|
950
|
+
assert "watertight" not in dir(fault_tolerant)
|
|
951
|
+
|
|
952
|
+
with pytest.raises(AttributeError):
|
|
953
|
+
fault_tolerant.watertight()
|
|
954
|
+
|
|
955
|
+
fault_tolerant.import_cad_and_part_management.context.set_state(0)
|
|
956
|
+
fault_tolerant.import_cad_and_part_management.create_object_per.set_state("Custom")
|
|
957
|
+
fault_tolerant.import_cad_and_part_management.fmd_file_name.set_state(
|
|
958
|
+
import_file_name
|
|
959
|
+
)
|
|
960
|
+
|
|
961
|
+
assert fault_tolerant.import_cad_and_part_management.fmd_file_name()
|
|
962
|
+
# Reinitialize the workflow:
|
|
963
|
+
fault_tolerant.reinitialize()
|
|
964
|
+
|
|
965
|
+
assert not fault_tolerant.import_cad_and_part_management.fmd_file_name()
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
@pytest.mark.codegen_required
|
|
969
|
+
@pytest.mark.fluent_version(">=23.2")
|
|
970
|
+
def test_switch_between_workflows(new_mesh_session):
|
|
971
|
+
meshing = new_mesh_session
|
|
972
|
+
|
|
973
|
+
# Initialize to watertight and store
|
|
974
|
+
watertight = meshing.watertight()
|
|
975
|
+
|
|
976
|
+
assert watertight.import_geometry.arguments()
|
|
977
|
+
|
|
978
|
+
# Wrong Attribute
|
|
979
|
+
with pytest.raises(AttributeError):
|
|
980
|
+
watertight.import_cad_and_part_management.arguments()
|
|
981
|
+
|
|
982
|
+
# Initialize to fault-tolerant and store
|
|
983
|
+
fault_tolerant = meshing.fault_tolerant()
|
|
984
|
+
|
|
985
|
+
assert fault_tolerant.import_cad_and_part_management.arguments()
|
|
986
|
+
|
|
987
|
+
# 'import_geometry' is a watertight workflow command which is not available now
|
|
988
|
+
# since we have changed to fault-tolerant in the backend.
|
|
989
|
+
with pytest.raises(RuntimeError):
|
|
990
|
+
watertight.import_geometry.arguments()
|
|
991
|
+
|
|
992
|
+
# Re-initialize watertight
|
|
993
|
+
watertight.reinitialize()
|
|
994
|
+
|
|
995
|
+
# 'import_cad_and_part_management' is a fault-tolerant workflow command which is not
|
|
996
|
+
# available now since we have changed to watertight in the backend.
|
|
997
|
+
with pytest.raises(RuntimeError):
|
|
998
|
+
fault_tolerant.import_cad_and_part_management.arguments()
|
|
999
|
+
|
|
1000
|
+
assert watertight.import_geometry.arguments()
|
|
1001
|
+
|
|
1002
|
+
meshing.workflow.InitializeWorkflow(WorkflowType="Fault-tolerant Meshing")
|
|
1003
|
+
|
|
1004
|
+
# 'import_geometry' is a watertight workflow command which is not available now
|
|
1005
|
+
# since we have changed to fault-tolerant in the backend.
|
|
1006
|
+
with pytest.raises(RuntimeError):
|
|
1007
|
+
watertight.import_geometry.arguments()
|
|
1008
|
+
|
|
1009
|
+
meshing.workflow.InitializeWorkflow(WorkflowType="Watertight Geometry")
|
|
1010
|
+
|
|
1011
|
+
# 'import_cad_and_part_management' is a fault-tolerant workflow command which is not
|
|
1012
|
+
# available now since we have changed to watertight in the backend.
|
|
1013
|
+
with pytest.raises(RuntimeError):
|
|
1014
|
+
fault_tolerant.import_cad_and_part_management.arguments()
|
|
1015
|
+
|
|
1016
|
+
# Re-initialize fault-tolerant
|
|
1017
|
+
fault_tolerant.reinitialize()
|
|
1018
|
+
assert fault_tolerant.import_cad_and_part_management.arguments()
|
|
@@ -25,7 +25,6 @@ def test_setup_models_viscous_model_settings(new_solver_session) -> None:
|
|
|
25
25
|
assert viscous_model.model() == "inviscid"
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
@pytest.mark.skip
|
|
29
28
|
@pytest.mark.fluent_version(">=24.1")
|
|
30
29
|
def test_wildcard(new_solver_session):
|
|
31
30
|
solver = new_solver_session
|
|
@@ -53,10 +52,16 @@ def test_wildcard(new_solver_session):
|
|
|
53
52
|
"inlet1": {"momentum": {"velocity": {"option": "value", "value": 10}}},
|
|
54
53
|
}
|
|
55
54
|
cell_zone_conditions = solver.setup.cell_zone_conditions
|
|
56
|
-
|
|
55
|
+
if solver.get_fluent_version() >= "24.2.0":
|
|
56
|
+
sources = cell_zone_conditions.fluid["*"].source_terms.sources
|
|
57
|
+
key = "sources"
|
|
58
|
+
else:
|
|
59
|
+
sources = cell_zone_conditions.fluid["*"].source_terms.source_terms
|
|
60
|
+
key = "source_terms"
|
|
61
|
+
assert sources["*mom*"]() == {
|
|
57
62
|
"fluid": {
|
|
58
63
|
"source_terms": {
|
|
59
|
-
|
|
64
|
+
key: {
|
|
60
65
|
"x-momentum": [{"option": "value", "value": 1}],
|
|
61
66
|
"y-momentum": [{"option": "value", "value": 2}],
|
|
62
67
|
"z-momentum": [{"option": "value", "value": 3}],
|
|
@@ -64,13 +69,11 @@ def test_wildcard(new_solver_session):
|
|
|
64
69
|
}
|
|
65
70
|
}
|
|
66
71
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
]
|
|
70
|
-
assert cell_zone_conditions.fluid["*"].source_terms.source_terms["*mom*"]() == {
|
|
72
|
+
sources["*mom*"] = [{"option": "value", "value": 2}]
|
|
73
|
+
assert sources["*mom*"]() == {
|
|
71
74
|
"fluid": {
|
|
72
75
|
"source_terms": {
|
|
73
|
-
|
|
76
|
+
key: {
|
|
74
77
|
"x-momentum": [{"option": "value", "value": 2}],
|
|
75
78
|
"y-momentum": [{"option": "value", "value": 2}],
|
|
76
79
|
"z-momentum": [{"option": "value", "value": 2}],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
ansys/fluent/core/__init__.py,sha256=
|
|
2
|
-
ansys/fluent/core/_version.py,sha256=
|
|
1
|
+
ansys/fluent/core/__init__.py,sha256=KLmwKmA6OXJDTsYYfPFivp2DwwoyfC8BKwoUXcso6XY,2638
|
|
2
|
+
ansys/fluent/core/_version.py,sha256=l5ldk0RQELdMy5ay-kviIprDUe8goF6KE5frRkfSodw,344
|
|
3
3
|
ansys/fluent/core/data_model_cache.py,sha256=01WTW5FFgwdgf2PoMQBaFpLGJrznGjgOqFc5HlyaGLM,11903
|
|
4
4
|
ansys/fluent/core/exceptions.py,sha256=riIkDkV0g2JIpvxijgYRBqJ6bg-uV2SB5WKc8Jdxltk,935
|
|
5
5
|
ansys/fluent/core/file_session.py,sha256=oXeKmHtz4s9_3duz1IuJl4ZsPCZ6aF5VkXHtJv0czmw,25996
|
|
@@ -15,25 +15,25 @@ ansys/fluent/core/logging.py,sha256=QfozMmvDxpdCgisOwEl9gJmqXrxRoEq7uVnNp2CiVy8,
|
|
|
15
15
|
ansys/fluent/core/logging_config.yaml,sha256=ajmRCwit05i84dDz6AlcSpukJlslUFGWd_qy_xIbAxA,1338
|
|
16
16
|
ansys/fluent/core/meta.py,sha256=DIjLzqRFa_aKuqLZcXg9klVGU2VDshOd-GLLuLLE8bg,32145
|
|
17
17
|
ansys/fluent/core/rpvars.py,sha256=lcgTKwX0o3-wHsdneUFIoaRm34jri_JYImXKhOY51o4,3445
|
|
18
|
-
ansys/fluent/core/session.py,sha256
|
|
19
|
-
ansys/fluent/core/session_base_meshing.py,sha256=
|
|
18
|
+
ansys/fluent/core/session.py,sha256=--UewuI8m9cq7QNV-so4wCwd_V7cf9_Bd7A3IJX4qlk,10466
|
|
19
|
+
ansys/fluent/core/session_base_meshing.py,sha256=vH3KeUEd7IpyCBW-axgHGqc7kPhJecFXke1kB9padVg,7799
|
|
20
20
|
ansys/fluent/core/session_meshing.py,sha256=gBfG0dUQSB6Nb8DPz0h-L8hhsz17QC7H2FDv_FvBA14,2773
|
|
21
21
|
ansys/fluent/core/session_meshing.pyi,sha256=dpxcLbVbEkDsX-UtHq0aIv-dXGRnDVOo4hG0OLc2-i4,1043
|
|
22
|
-
ansys/fluent/core/session_pure_meshing.py,sha256=
|
|
23
|
-
ansys/fluent/core/session_pure_meshing.pyi,sha256=
|
|
22
|
+
ansys/fluent/core/session_pure_meshing.py,sha256=2A1CZ8gdVxu_Hl4rzZTUqLEFMgkjTot77bJH-hxaq6A,5659
|
|
23
|
+
ansys/fluent/core/session_pure_meshing.pyi,sha256=EnBJFUVyPUVNR1ZY0nA09OblXTH1YKX6dLcMxL-dCic,1369
|
|
24
24
|
ansys/fluent/core/session_shared.py,sha256=oQ61ZfXxdUrxS3VKUdyyulk85Jgahv1vds4SHpWyG-4,453
|
|
25
25
|
ansys/fluent/core/session_solver.py,sha256=E7mhnmgTuwMYaXlzgx0li1-vwxvknw-hTtpScUSGXHs,9549
|
|
26
26
|
ansys/fluent/core/session_solver.pyi,sha256=hKC3tw-ZVbhv9vDUW_ge1-P8Cdb3nS6L8HcpybuHQu8,2197
|
|
27
27
|
ansys/fluent/core/session_solver_icing.py,sha256=qXAUqgoYabmiHlQSMUHq_uXT9WB1ZVHCQapkn1GYu-U,1712
|
|
28
28
|
ansys/fluent/core/session_solver_lite.py,sha256=HWSh2MN8nMYswqTaXoWWwAzb7vTtWMKp-1Ze3d6UlOc,1186
|
|
29
|
-
ansys/fluent/core/systemcoupling.py,sha256=
|
|
30
|
-
ansys/fluent/core/workflow.py,sha256=
|
|
29
|
+
ansys/fluent/core/systemcoupling.py,sha256=PchOZAyn3knX7Nlm2H8kHtTmwdzr6AfosioSLYa-24U,6106
|
|
30
|
+
ansys/fluent/core/workflow.py,sha256=xgFhhjpYBK7v8-UKUTgTPo7bz2Sy-IWD8phv58uYsbU,45684
|
|
31
31
|
ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py,sha256=Lt-AP3hayrioZIrt6xCALHhhogyj6o8_PCrt_qGm1h8,931
|
|
32
32
|
ansys/fluent/core/data/api_tree_222.pickle,sha256=Fbnx_V7QcHveK4unkdeSGCim3BkoOxqE05JTizGUL5Q,1656405
|
|
33
|
-
ansys/fluent/core/data/api_tree_231.pickle,sha256=
|
|
34
|
-
ansys/fluent/core/data/api_tree_232.pickle,sha256=
|
|
35
|
-
ansys/fluent/core/data/api_tree_241.pickle,sha256=
|
|
36
|
-
ansys/fluent/core/data/api_tree_242.pickle,sha256=
|
|
33
|
+
ansys/fluent/core/data/api_tree_231.pickle,sha256=shNYimFuSKYK_sV15s1tEzgzM_y7_xx7URDF6okTYSM,596221
|
|
34
|
+
ansys/fluent/core/data/api_tree_232.pickle,sha256=R6MVnfC33si0g8pm9sLoMMybYf1E_CIy5MtOcA0287E,598424
|
|
35
|
+
ansys/fluent/core/data/api_tree_241.pickle,sha256=BRYHSSGAIdAiJ07yngabYRJEGqNBPBEgfZ8BIQTnw9Y,640956
|
|
36
|
+
ansys/fluent/core/data/api_tree_242.pickle,sha256=jjVZd_ZGU6lL3dLkd8k6om5xOLTN6JE6_Ex015tF8DM,1017240
|
|
37
37
|
ansys/fluent/core/datamodel_222/PMFileManagement.py,sha256=Q9U51V03vpLbZGLeWuIO4Sbk_NwQ-8LGM20DR59AtLI,7270
|
|
38
38
|
ansys/fluent/core/datamodel_222/PartManagement.py,sha256=Clbk7XYk9wbjm2qHh1keYu8IEbTKkzxZnvt6Ibo4ccs,40605
|
|
39
39
|
ansys/fluent/core/datamodel_222/meshing.py,sha256=H7RtMoa4SliSc4c9fHT-jKJQAIEYTwP4_Jum6YeamwQ,49964
|
|
@@ -79,21 +79,21 @@ ansys/fluent/core/filereader/lispy.py,sha256=LY-qjwj_ZSpHzM08prkc93w6iagdMjRYYyi
|
|
|
79
79
|
ansys/fluent/core/launcher/container_launcher.py,sha256=HIIFyBsgpBCLNvaPz5M30RPONFCKaLuppyrLV25mVnk,10945
|
|
80
80
|
ansys/fluent/core/launcher/fluent_container.py,sha256=WGB-9D5uWrbe-IjoKdOBS_A-ySF89H-2I9U7Ltl-8DE,14872
|
|
81
81
|
ansys/fluent/core/launcher/fluent_launcher_options.json,sha256=0nUTisjYBdSLRTpU1up4cCb5QqKvVsWWT2HWxZw0tKM,1501
|
|
82
|
-
ansys/fluent/core/launcher/launcher.py,sha256=
|
|
82
|
+
ansys/fluent/core/launcher/launcher.py,sha256=PIRnN0H-eV1dL3IJiMCfpd6SiUrGk2dbFtFRkrDUkn8,15062
|
|
83
83
|
ansys/fluent/core/launcher/launcher_utils.py,sha256=ljxl7sI2GwljWLzF5fNU-7dNXgLj49AaPEBSlswWykk,21138
|
|
84
84
|
ansys/fluent/core/launcher/pim_launcher.py,sha256=P9V8WRRF7HfnG34hCOnbj-pds-tajlzR-R1TJTcBVoE,10124
|
|
85
85
|
ansys/fluent/core/launcher/slurm_launcher.py,sha256=J2sFbokZwzFzqRzJnquFIuNcMEJ69v7rn1sgr8iwhFk,9012
|
|
86
86
|
ansys/fluent/core/launcher/standalone_launcher.py,sha256=BpAPXFnfbXNAjgCvCE3U3YCvfl4jvs03uVKyv84cCzA,13416
|
|
87
87
|
ansys/fluent/core/launcher/watchdog.py,sha256=qp5g5AdtisSD7zAD7r59f8NTNE7Yq0kXV4k9d1zczbw,5959
|
|
88
88
|
ansys/fluent/core/launcher/watchdog_exec,sha256=Fh16Als-9J0NefZNss3Q5GHbPFoKqqR2GZ9VAarD3xw,6118
|
|
89
|
-
ansys/fluent/core/meshing/faulttolerant.py,sha256=
|
|
90
|
-
ansys/fluent/core/meshing/meshing_workflow.py,sha256=
|
|
89
|
+
ansys/fluent/core/meshing/faulttolerant.py,sha256=pnPbNienkfA-7gcaqt2EjR5Fdwq1yS3J9AS3Klol-9Y,635
|
|
90
|
+
ansys/fluent/core/meshing/meshing_workflow.py,sha256=pEEU2zD0pycDh1m7iGA0bdfNof6wi6PSidr25IMCH0I,4541
|
|
91
91
|
ansys/fluent/core/meshing/tui_222.py,sha256=-N3_qz1sEzDFIXwYEwZu3IQStw2AbUYdVO5EhlnYRBs,596960
|
|
92
|
-
ansys/fluent/core/meshing/tui_231.py,sha256=
|
|
93
|
-
ansys/fluent/core/meshing/tui_232.py,sha256=
|
|
94
|
-
ansys/fluent/core/meshing/tui_241.py,sha256=
|
|
95
|
-
ansys/fluent/core/meshing/tui_242.py,sha256=
|
|
96
|
-
ansys/fluent/core/meshing/watertight.py,sha256=
|
|
92
|
+
ansys/fluent/core/meshing/tui_231.py,sha256=a9un3vUOzv0JMkdRBekGh39cfHs64js2FrzmpxpZzdA,564248
|
|
93
|
+
ansys/fluent/core/meshing/tui_232.py,sha256=hoDEdunkYrr9St4mmMAL4HCJ-juuuw15eooqx7paLyM,593820
|
|
94
|
+
ansys/fluent/core/meshing/tui_241.py,sha256=_5doU5T1dE6BPT5-SyHZun1xE4BABb9v9f0u5sHqcwo,609442
|
|
95
|
+
ansys/fluent/core/meshing/tui_242.py,sha256=iE_Ls6EafAQn86bcHpjuOCeV2XfnoTIei9Xy8OGvjaY,614079
|
|
96
|
+
ansys/fluent/core/meshing/watertight.py,sha256=eIfeSHRYMXDiTG9uFL5-yjuJYMXvNtFOzPQeWt48_MA,953
|
|
97
97
|
ansys/fluent/core/post_objects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
98
|
ansys/fluent/core/post_objects/post_helper.py,sha256=EWuL0Uc4ylWRTg-chotlSzM_YA9QyFGTeAUfNa6o7uU,7476
|
|
99
99
|
ansys/fluent/core/post_objects/post_object_definitions.py,sha256=bCvUnaH0DEfEIdkPTIXxswRxi2SdoQaiLbq2aQ1MDq8,20171
|
|
@@ -123,10 +123,10 @@ ansys/fluent/core/solver/error_message.py,sha256=fFjp8dRnEvpXiwxGzjhVQKaGZFRmnwv
|
|
|
123
123
|
ansys/fluent/core/solver/flobject.py,sha256=xDCXX6yj9WMQMf193iSJZ-8yKVT2UYT8e7qNTxbd7wQ,62471
|
|
124
124
|
ansys/fluent/core/solver/flunits.py,sha256=_vNwoqEHPFNT6t13GP7uU177P7KyZOm0Sou3yf-sHSQ,8841
|
|
125
125
|
ansys/fluent/core/solver/tui_222.py,sha256=YrWs6To25qtAGTjLIxK2yg9um9rOsiJKmCPcZrHxI0o,2785708
|
|
126
|
-
ansys/fluent/core/solver/tui_231.py,sha256=
|
|
127
|
-
ansys/fluent/core/solver/tui_232.py,sha256=
|
|
128
|
-
ansys/fluent/core/solver/tui_241.py,sha256=
|
|
129
|
-
ansys/fluent/core/solver/tui_242.py,sha256=
|
|
126
|
+
ansys/fluent/core/solver/tui_231.py,sha256=a2JhoTcAvjDq68WDDupOZrjEBg6toaCJHO-bIfGX8Pw,2770957
|
|
127
|
+
ansys/fluent/core/solver/tui_232.py,sha256=fVEPMF3tYiOq2OIjDb1CHrKYn1oJpZvOaSsThcOxnzo,1816651
|
|
128
|
+
ansys/fluent/core/solver/tui_241.py,sha256=xo-QNUY0sQvHvhQPDiV5Id4Y4fjBAOUhrKNUSWy-c3U,2009332
|
|
129
|
+
ansys/fluent/core/solver/tui_242.py,sha256=IF-eCFumkzMUoeT_dTZvPrwOvec4NYIXvs7qLXMqReA,2075085
|
|
130
130
|
ansys/fluent/core/solver/function/__init__.py,sha256=TS0jGvOjXA-rQnch7KNEj3piRVJUIlL8K5s_oJgbIE4,45
|
|
131
131
|
ansys/fluent/core/solver/function/reduction.py,sha256=duuALnKHBWCGfCnz9sEVWrcxCxz1VFoYDCFMsEp1C3c,15562
|
|
132
132
|
ansys/fluent/core/solver/settings_222/__init__.py,sha256=aMAqapvSW1uk3Z8PjTAiil6hGdD4WJEJ32t97soPHQk,262
|
|
@@ -22530,19 +22530,20 @@ ansys/fluent/core/streaming_services/transcript_streaming.py,sha256=TcJ-JXf_Wd4A
|
|
|
22530
22530
|
ansys/fluent/core/utils/data_transfer.py,sha256=tRunMt6JgrwYtyNZzFoejTXPrtEjvF_ugrnzN7Twmks,6621
|
|
22531
22531
|
ansys/fluent/core/utils/dump_session_data.py,sha256=L7gNsdhbCM90AdTBrU0zQw7ySlFkLLSGHaFGWXki7H4,5723
|
|
22532
22532
|
ansys/fluent/core/utils/execution.py,sha256=tzlrw97VPrUTYAw5XhGXI_0j8kHJ4rPFXOLCe0UJeYg,5570
|
|
22533
|
-
ansys/fluent/core/utils/file_transfer_service.py,sha256=
|
|
22533
|
+
ansys/fluent/core/utils/file_transfer_service.py,sha256=MeasxT8rqgVt1yC5PZdFyUx8a1V5bVGs185_FRqjQvI,5549
|
|
22534
22534
|
ansys/fluent/core/utils/fix_doc.py,sha256=wOAtIi3piCW5w6WYz9ojo9CbWEstvvR1X7AfNtDlPss,1397
|
|
22535
22535
|
ansys/fluent/core/utils/fldoc.py,sha256=49Xcdi6yPKLAphTtI9otdtoKaDNZkD-v_fBaMpIgkJE,1042
|
|
22536
22536
|
ansys/fluent/core/utils/fluent_version.py,sha256=1_gHoDqE1cgpuUIKYAM01IaipOsbgNuERuxw5hFd9lM,3429
|
|
22537
22537
|
ansys/fluent/core/utils/generic.py,sha256=pJ9nRt2k5UcCGKTMVSG_STlz9tG-MVMkPIqbbm88s8o,1579
|
|
22538
22538
|
ansys/fluent/core/utils/networking.py,sha256=qOLkmC3fdd3HaBuCXWTA5y2fqvhWQ9gFN1rTUiinRHA,2486
|
|
22539
|
-
ansys/fluent/core/utils/search.py,sha256=
|
|
22539
|
+
ansys/fluent/core/utils/search.py,sha256=j7dqlfK52_8ORQw8QcKkqnd-uDvOyuYrH9phzKu4Jbo,8993
|
|
22540
22540
|
ansys/fluent/core/utils/setup_for_fluent.py,sha256=eJQDfcLtejHq7l5HZxi6ie9WgT0frIF3iF7bKeD1M1g,709
|
|
22541
22541
|
ansys/fluent/tests/conftest.py,sha256=bIUJ_RK4PwqXFy8RrpKJV6_7e_2C2IuqDh5WRGgBKf0,3727
|
|
22542
22542
|
ansys/fluent/tests/test_batch_ops.py,sha256=DqlER-8hxgh5qJ-QwPdYq6Fi6wLBXYbF-8zLHiJU4gI,1475
|
|
22543
22543
|
ansys/fluent/tests/test_cad_to_post_ftm.py,sha256=wd96_alVN4AQ_JeI7kyXQjo9efdUNQdPVsFL0qKkMsg,19259
|
|
22544
22544
|
ansys/fluent/tests/test_cad_to_post_wtm.py,sha256=MBRDIqbtYeM4T46ieOJkuHPdFw43eceEL-OVMdCJXwk,10258
|
|
22545
22545
|
ansys/fluent/tests/test_casereader.py,sha256=8bz1IYS-PGnruaEGi0-Mp3Bj8Ycd1jVEgvl0pz0CEZM,9278
|
|
22546
|
+
ansys/fluent/tests/test_codegen.py,sha256=5HxZUL2qGKovM4sD3NOtJFj2cvUAT0dZaP82TR9kgeQ,1032
|
|
22546
22547
|
ansys/fluent/tests/test_creatable.py,sha256=hUJl_UFp5VKRzuEVhsQz5KuBN9w9_gKmcoapMTvhFeI,698
|
|
22547
22548
|
ansys/fluent/tests/test_data_model_cache.py,sha256=W5lUQbHO6DDDgGiMeX-_GkHfps46RF_s58IXhZ-hdrI,14255
|
|
22548
22549
|
ansys/fluent/tests/test_datamodel_service.py,sha256=DjizDOHq_lNWihUDpVUJuWY97TfBQ6SMVvO0eJvGwsE,15931
|
|
@@ -22562,8 +22563,8 @@ ansys/fluent/tests/test_launcher_remote.py,sha256=j6qAF2EeFMAUdgMMO2F29iQJmJj3fB
|
|
|
22562
22563
|
ansys/fluent/tests/test_lispy.py,sha256=Up5BhY5rnePXlj6udp02_haSEHg2zPY6PhCLbXjpGsk,1109
|
|
22563
22564
|
ansys/fluent/tests/test_meshing_queries.py,sha256=V8lGEzEbIFXptkiBm0j2bzvwOh5FaD5NoVk0CfubP3E,8004
|
|
22564
22565
|
ansys/fluent/tests/test_meshing_queries_fdl.py,sha256=ne6hjJSaTWj8Tk_G1RhSRutzeNV-raggmJQnX4nP-b8,61185
|
|
22565
|
-
ansys/fluent/tests/test_meshing_workflow.py,sha256=
|
|
22566
|
-
ansys/fluent/tests/test_new_meshing_workflow.py,sha256=
|
|
22566
|
+
ansys/fluent/tests/test_meshing_workflow.py,sha256=pzKefN0D76wCz8NfY8EGund-AiMs4vOhUBsIjixsIb8,16170
|
|
22567
|
+
ansys/fluent/tests/test_new_meshing_workflow.py,sha256=gorCalFYTobuSqmUcz1pI3L66JuF8FfQZNw2eYE-wlo,38659
|
|
22567
22568
|
ansys/fluent/tests/test_preferences.py,sha256=JXYa_Fl2y_kguIxh4SEfPtLoxyFm8xXMbaAJ8qWI1Nw,2359
|
|
22568
22569
|
ansys/fluent/tests/test_pure_mesh_vs_mesh_workflow.py,sha256=tpzxnY_YGb2j-etF0FjFAr02J9ssUlORlweQglg_liw,4303
|
|
22569
22570
|
ansys/fluent/tests/test_reduction.py,sha256=-CQEwCIALIS5v8rp1I7x_bN0iEYG9tm5ORkt_DM6XSA,13345
|
|
@@ -22573,7 +22574,7 @@ ansys/fluent/tests/test_scheme_eval_222.py,sha256=61yaPUZhFlRbIkCTpgovzxVczgN4Ew
|
|
|
22573
22574
|
ansys/fluent/tests/test_scheme_eval_231.py,sha256=wLzYmYvYqbWntiPTp8aaAzCd-yyAP89FLsKLsMI7maY,7153
|
|
22574
22575
|
ansys/fluent/tests/test_search.py,sha256=obHBxKX9p_vEUA3U7jRFFc9JPOfbnqzL6DjWJky2sH8,7729
|
|
22575
22576
|
ansys/fluent/tests/test_session.py,sha256=wMpwX-cJCV8hpumEtt8G4L6tKwSa7U54LAcQ8jserHM,15379
|
|
22576
|
-
ansys/fluent/tests/test_settings_api.py,sha256=
|
|
22577
|
+
ansys/fluent/tests/test_settings_api.py,sha256=X_Ane61tDmgH5OB1AI9rtNTB93DSQ8j7F4RfIFYFkJs,10147
|
|
22577
22578
|
ansys/fluent/tests/test_settings_reader.py,sha256=WiA2uCfVXd34VTs8jLpa-z-gOXUeNweQ3MeQDpKciFA,2801
|
|
22578
22579
|
ansys/fluent/tests/test_slurm_future.py,sha256=-JomP9FayHL4Ca0sWyPRR6XJNYI_xTo1szT0MOsmUEk,1875
|
|
22579
22580
|
ansys/fluent/tests/test_solution_variables.py,sha256=OuepHsD4eeyVaBZyrpifBCfrZ4QAxpNCIUJAVMA6HWo,10738
|
|
@@ -22601,8 +22602,8 @@ ansys/fluent/tests/util/fixture_fluent.py,sha256=UU0L22XcSqmrADJxsBfKrcvxQ4wXFa-
|
|
|
22601
22602
|
ansys/fluent/tests/util/meshing_workflow.py,sha256=Jt3RQjSE1QpDoDDJnenIa_blvI522WN7n5TlE08lYH0,4115
|
|
22602
22603
|
ansys/fluent/tests/util/solver.py,sha256=qZ1WtkpmEwR4adsjrwvdRwLTszc8jbGqHQGEkQSV03s,1623
|
|
22603
22604
|
ansys/fluent/tests/util/solver_workflow.py,sha256=qoI3VG5-Vs-iCHbJKQ1oNG8A9J-t2fByZZYDCwaHQlY,979
|
|
22604
|
-
ansys_fluent_core-0.20.
|
|
22605
|
-
ansys_fluent_core-0.20.
|
|
22606
|
-
ansys_fluent_core-0.20.
|
|
22607
|
-
ansys_fluent_core-0.20.
|
|
22608
|
-
ansys_fluent_core-0.20.
|
|
22605
|
+
ansys_fluent_core-0.20.dev6.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
|
|
22606
|
+
ansys_fluent_core-0.20.dev6.dist-info/METADATA,sha256=iwrZhZN4M6CNyaslYE4DhqhivylKxu1AE1kYOPTFx7U,8253
|
|
22607
|
+
ansys_fluent_core-0.20.dev6.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
22608
|
+
ansys_fluent_core-0.20.dev6.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
|
|
22609
|
+
ansys_fluent_core-0.20.dev6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{ansys_fluent_core-0.20.dev5.dist-info → ansys_fluent_core-0.20.dev6.dist-info}/top_level.txt
RENAMED
|
File without changes
|