ansys-fluent-core 0.34.0__py3-none-any.whl → 0.34.1__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 +2 -2
- ansys/fluent/core/file_session.py +28 -2
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
- ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_232/meshing.py +201 -201
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +298 -298
- ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_242/meshing.py +334 -334
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +340 -340
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_252/meshing.py +402 -402
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_261/meshing.py +377 -377
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/solver/settings_261.py +3023 -2378
- ansys/fluent/core/generated/solver/settings_261.pyi +1456 -1537
- ansys/fluent/core/generated/solver/tui_261.py +1436 -599
- ansys/fluent/core/services/field_data.py +27 -8
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/RECORD +31 -31
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/WHEEL +0 -0
|
@@ -577,7 +577,20 @@ class BaseFieldData:
|
|
|
577
577
|
| PathlinesFieldDataRequest
|
|
578
578
|
),
|
|
579
579
|
) -> Dict[int | str, Dict | np.array]:
|
|
580
|
-
"""Get the surface, scalar, vector or path-lines field data on a surface.
|
|
580
|
+
"""Get the surface, scalar, vector or path-lines field data on a surface.
|
|
581
|
+
|
|
582
|
+
Returns
|
|
583
|
+
-------
|
|
584
|
+
Dict[int | str, Dict | np.array]
|
|
585
|
+
Field data for the requested surface. If field data is unavailable for the surface,
|
|
586
|
+
an empty array is returned and a warning is issued. Users should always check
|
|
587
|
+
the array size before using the data.
|
|
588
|
+
|
|
589
|
+
Example:
|
|
590
|
+
data = get_field_data(field_data_request)[surface_id]
|
|
591
|
+
if data.size == 0:
|
|
592
|
+
# Handle missing data
|
|
593
|
+
"""
|
|
581
594
|
if isinstance(obj, SurfaceFieldDataRequest):
|
|
582
595
|
return self._get_surface_data(**obj._asdict())
|
|
583
596
|
elif isinstance(obj, ScalarFieldDataRequest):
|
|
@@ -1185,13 +1198,19 @@ class ChunkParser:
|
|
|
1185
1198
|
payload_tag_id = None
|
|
1186
1199
|
field = None
|
|
1187
1200
|
if payload_tag_id is not None:
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1201
|
+
if payload_info.fieldSize > 0:
|
|
1202
|
+
field = _extract_field(
|
|
1203
|
+
_FieldDataConstants.proto_field_type_to_np_data_type[
|
|
1204
|
+
payload_info.fieldType
|
|
1205
|
+
],
|
|
1206
|
+
payload_info.fieldSize,
|
|
1207
|
+
chunk_iterator,
|
|
1208
|
+
)
|
|
1209
|
+
else:
|
|
1210
|
+
warnings.warn(
|
|
1211
|
+
f"Field data is not available for surface: {surface_id}"
|
|
1212
|
+
)
|
|
1213
|
+
field = np.array([])
|
|
1195
1214
|
|
|
1196
1215
|
if self._callbacks_provider is not None:
|
|
1197
1216
|
for callback_data in self._callbacks_provider.callbacks():
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
ansys/fluent/core/__init__.py,sha256=
|
|
1
|
+
ansys/fluent/core/__init__.py,sha256=rGdRT1OdV4YdwlFFhQQiu5eHjl8kMMwwwWSYpqSBlz8,6350
|
|
2
2
|
ansys/fluent/core/data_model_cache.py,sha256=MVnBuH7s5Yr_AI8f0F9kPw-gMExDopUKvW9a99MX2RE,16963
|
|
3
3
|
ansys/fluent/core/exceptions.py,sha256=3v7kUG9uHAZ-c8ldnCnADDVJ9T2jfBKMoTXbnn6zPSs,2504
|
|
4
4
|
ansys/fluent/core/field_data_interfaces.py,sha256=VIbHkTQEcuSuo3ZDOBG2kuee4j1ihJyLQkCosmpBHYQ,26721
|
|
5
|
-
ansys/fluent/core/file_session.py,sha256=
|
|
5
|
+
ansys/fluent/core/file_session.py,sha256=4nq5B9_CGYS21cslqeTvO60gcjb5FUO7y-GvJ4VOBgw,44463
|
|
6
6
|
ansys/fluent/core/fluent_connection.py,sha256=K3zYG88Z15kuDtXccWilxEoRbFYP_MCv1lguAevdyYY,30698
|
|
7
7
|
ansys/fluent/core/get_build_details.py,sha256=FaXqFh4xJ_gUuB9VrEQxruVdr-pJLhkKo-kIMNQEiv4,2441
|
|
8
8
|
ansys/fluent/core/journaling.py,sha256=HnskC_eUwjslXsUZTJYkrLtBQAeMSiW4ZpUuXrgmtow,2299
|
|
@@ -60,61 +60,61 @@ ansys/fluent/core/generated/fluent_version_241.py,sha256=R60bDiS2y_VYuI49NMPWTYg
|
|
|
60
60
|
ansys/fluent/core/generated/fluent_version_242.py,sha256=098i_ge1V5f_MZxu9hIjNAF_nYL5RTEzsGNkrgVIn0A,167
|
|
61
61
|
ansys/fluent/core/generated/fluent_version_251.py,sha256=HB2VZqVDg8DbP2kDE1v2rCxCgUrXwnWdiLGaTOdNnF0,167
|
|
62
62
|
ansys/fluent/core/generated/fluent_version_252.py,sha256=6m6hyy-eDRVThRQ_GRdv_Db3smeyWy02pOgK15_HUHc,173
|
|
63
|
-
ansys/fluent/core/generated/fluent_version_261.py,sha256=
|
|
64
|
-
ansys/fluent/core/generated/api_tree/api_objects.json,sha256=
|
|
65
|
-
ansys/fluent/core/generated/datamodel_231/flicing.py,sha256=
|
|
66
|
-
ansys/fluent/core/generated/datamodel_231/meshing.py,sha256=
|
|
63
|
+
ansys/fluent/core/generated/fluent_version_261.py,sha256=Tnw0OjECTmn9rB_qMIAvPBB-fo7c9rIN5X-soYmhdLQ,150
|
|
64
|
+
ansys/fluent/core/generated/api_tree/api_objects.json,sha256=6VKxERKwVWQumO6_WDLwYvJcKWYdd5bveEc5aWUgTgs,8119712
|
|
65
|
+
ansys/fluent/core/generated/datamodel_231/flicing.py,sha256=Z91h7ePr37QzLCLj5TjGosNutkuwLT__JaRod6s-xTs,468431
|
|
66
|
+
ansys/fluent/core/generated/datamodel_231/meshing.py,sha256=27driqjJJAgIGYC4EJii2H7vyq4z7jyU7vxh5onpz-o,446627
|
|
67
67
|
ansys/fluent/core/generated/datamodel_231/part_management.py,sha256=YxMOgaBReFWTs-5MSxdhXyhtGGt186sg1rSlBH0zfdg,140437
|
|
68
68
|
ansys/fluent/core/generated/datamodel_231/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
69
69
|
ansys/fluent/core/generated/datamodel_231/preferences.py,sha256=plsjq7rJqmEhrYz9SdXA0O0lS-UAkZ_c-haTy7tiaOw,102519
|
|
70
70
|
ansys/fluent/core/generated/datamodel_231/solver_workflow.py,sha256=JAaaZvdBsXe6F8uTedJ-PIVfngG9cLndm3zi6QUrCoI,37317
|
|
71
71
|
ansys/fluent/core/generated/datamodel_231/workflow.py,sha256=Cja8z2YF9dOxhlEKu5cCiDclnqmjPN9cYUqZ2oJ0G_A,25151
|
|
72
|
-
ansys/fluent/core/generated/datamodel_232/flicing.py,sha256=
|
|
73
|
-
ansys/fluent/core/generated/datamodel_232/meshing.py,sha256=
|
|
72
|
+
ansys/fluent/core/generated/datamodel_232/flicing.py,sha256=CbQIfsN0BhHi61XBzl84EC9KAXwoYUOxYjXdkgfmOwY,468737
|
|
73
|
+
ansys/fluent/core/generated/datamodel_232/meshing.py,sha256=S7_2cQtEE_XBw6XrsU7vycGcvltpAJZSG6scnBQ5Nu4,467203
|
|
74
74
|
ansys/fluent/core/generated/datamodel_232/part_management.py,sha256=YxMOgaBReFWTs-5MSxdhXyhtGGt186sg1rSlBH0zfdg,140437
|
|
75
75
|
ansys/fluent/core/generated/datamodel_232/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
76
76
|
ansys/fluent/core/generated/datamodel_232/preferences.py,sha256=kArGDPyFzidmnTczouYjA9WZmnJX_8s-vIelN6IESIM,106005
|
|
77
77
|
ansys/fluent/core/generated/datamodel_232/solver_workflow.py,sha256=Ts_c6mj65W5i15aMBN5puYn66N2j5lTzSgt_TYCdBMc,44298
|
|
78
78
|
ansys/fluent/core/generated/datamodel_232/workflow.py,sha256=Cja8z2YF9dOxhlEKu5cCiDclnqmjPN9cYUqZ2oJ0G_A,25151
|
|
79
|
-
ansys/fluent/core/generated/datamodel_241/flicing.py,sha256=
|
|
80
|
-
ansys/fluent/core/generated/datamodel_241/meshing.py,sha256=
|
|
79
|
+
ansys/fluent/core/generated/datamodel_241/flicing.py,sha256=PlLy6vwR3idaJVfuWObviZwLRK8a04mH_3-ZRihicOk,468737
|
|
80
|
+
ansys/fluent/core/generated/datamodel_241/meshing.py,sha256=oHSHwM3iPdRcXLgHip9p-DuxCc5VuC_JZaDpNZwo3po,506723
|
|
81
81
|
ansys/fluent/core/generated/datamodel_241/part_management.py,sha256=W1oJO-y4hIIMq9g7R3gzZ6pjK34F7xyAveOF7ZWXLhA,142916
|
|
82
82
|
ansys/fluent/core/generated/datamodel_241/pm_file_management.py,sha256=6JZlJ-gjcZgBcDBsW6RSCHp0jAROPVOd7DeotW5P1ng,10477
|
|
83
83
|
ansys/fluent/core/generated/datamodel_241/preferences.py,sha256=5lOaO5d_7rNI6g_P0KXtdEF-IUUYneZe_x2bA3G3jP8,107946
|
|
84
84
|
ansys/fluent/core/generated/datamodel_241/solver_workflow.py,sha256=Ts_c6mj65W5i15aMBN5puYn66N2j5lTzSgt_TYCdBMc,44298
|
|
85
85
|
ansys/fluent/core/generated/datamodel_241/workflow.py,sha256=w_zv2NxCAZvLSDbwLJHA_FTwZoVndDO_V7gL_TEQ46o,25523
|
|
86
|
-
ansys/fluent/core/generated/datamodel_242/flicing.py,sha256=
|
|
87
|
-
ansys/fluent/core/generated/datamodel_242/meshing.py,sha256=
|
|
86
|
+
ansys/fluent/core/generated/datamodel_242/flicing.py,sha256=TDXZnzxZKW2iEnOWqZHVc00w4Ru_6dfKsapx6BVXw1k,519701
|
|
87
|
+
ansys/fluent/core/generated/datamodel_242/meshing.py,sha256=BNl0xSOoOREa8KWv21VrPwmLwxDjQ50WiI4Lbeync7c,705038
|
|
88
88
|
ansys/fluent/core/generated/datamodel_242/meshing_utilities.py,sha256=FIZ4pdO9ZS52hrBT8XrU0XWOgWkJroFy891tphDw8tQ,145933
|
|
89
89
|
ansys/fluent/core/generated/datamodel_242/meshing_utilities.pyi,sha256=NW-Du7YaM603iZaCe5zk6BaV2w7_zVKCSVS3eO8rEWM,30119
|
|
90
|
-
ansys/fluent/core/generated/datamodel_242/part_management.py,sha256=
|
|
90
|
+
ansys/fluent/core/generated/datamodel_242/part_management.py,sha256=5467rE9iQiU9LPjKVbxn7dDGeyh-ovuLyjnlvdV4e2E,198878
|
|
91
91
|
ansys/fluent/core/generated/datamodel_242/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
92
92
|
ansys/fluent/core/generated/datamodel_242/preferences.py,sha256=-HT1_FcL_-kz28cBjJAHNxfDKasyH22t_VK0hS2TF-0,112187
|
|
93
93
|
ansys/fluent/core/generated/datamodel_242/solver_workflow.py,sha256=eGZQTFTB1QVkEIvj-WhsYGH5MmXXCWcn9_rPKOljFew,48235
|
|
94
94
|
ansys/fluent/core/generated/datamodel_242/workflow.py,sha256=LBiYdvXAEO3zgiqSRjsrRLiFDOjdOWFfD5yFjI97qAU,27425
|
|
95
|
-
ansys/fluent/core/generated/datamodel_251/flicing.py,sha256=
|
|
96
|
-
ansys/fluent/core/generated/datamodel_251/meshing.py,sha256=
|
|
95
|
+
ansys/fluent/core/generated/datamodel_251/flicing.py,sha256=v7pBDv91Gp-rpA7hkZYYGT16oQ8xNIyM2RY5cFcTveM,519701
|
|
96
|
+
ansys/fluent/core/generated/datamodel_251/meshing.py,sha256=KVJt4w5RL1LSUna9cgl_fLyG2LD4sA-foVH7yRGi5MU,749229
|
|
97
97
|
ansys/fluent/core/generated/datamodel_251/meshing_utilities.py,sha256=3bh58FJz19swsfJrC9uKHqytC0fLFI4E4_-eWBRFvYk,177566
|
|
98
98
|
ansys/fluent/core/generated/datamodel_251/meshing_utilities.pyi,sha256=tRXOj4HqsmsfY_5_uqcWdT9mlVwWDsrrDBGkkgE9Qk8,30506
|
|
99
|
-
ansys/fluent/core/generated/datamodel_251/part_management.py,sha256=
|
|
99
|
+
ansys/fluent/core/generated/datamodel_251/part_management.py,sha256=AU3EU2BHLIyg1qXQmjJtPGArNL7tWP1E5VJgkYpcCOg,200176
|
|
100
100
|
ansys/fluent/core/generated/datamodel_251/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
101
101
|
ansys/fluent/core/generated/datamodel_251/preferences.py,sha256=jwNacZDoZaEmpRjsJqr5lDh_vwVUJ-enLXmYH7DYx2E,115630
|
|
102
102
|
ansys/fluent/core/generated/datamodel_251/solver_workflow.py,sha256=eGZQTFTB1QVkEIvj-WhsYGH5MmXXCWcn9_rPKOljFew,48235
|
|
103
103
|
ansys/fluent/core/generated/datamodel_251/workflow.py,sha256=UKwbtOadCV8C3LoXhAwsOLxnsKFQaYxxv_Z1M3gUDZw,27742
|
|
104
|
-
ansys/fluent/core/generated/datamodel_252/flicing.py,sha256=
|
|
105
|
-
ansys/fluent/core/generated/datamodel_252/meshing.py,sha256=
|
|
104
|
+
ansys/fluent/core/generated/datamodel_252/flicing.py,sha256=8VwVRl7f13XQl7EMAYzsWqM5ysn9KITjXjKwiRgBeG4,521561
|
|
105
|
+
ansys/fluent/core/generated/datamodel_252/meshing.py,sha256=q2x3t6xjp2FMkIA4n1fDvKYNvAOf6OWWUtj3t8bsXd4,877607
|
|
106
106
|
ansys/fluent/core/generated/datamodel_252/meshing_utilities.py,sha256=49pEckN_MlwhN7rlp3ojBuAwEKEJYl7PDUmgBqwJwPw,178034
|
|
107
107
|
ansys/fluent/core/generated/datamodel_252/meshing_utilities.pyi,sha256=J53pQomR2sQozP66bnsGuaOG0Y422lUnYT8sk2p8PH0,30634
|
|
108
|
-
ansys/fluent/core/generated/datamodel_252/part_management.py,sha256=
|
|
108
|
+
ansys/fluent/core/generated/datamodel_252/part_management.py,sha256=qsKvsmt901gojuo4oMfsqu23ylIS3Z2ZUyNLWuYhxY0,166591
|
|
109
109
|
ansys/fluent/core/generated/datamodel_252/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
110
110
|
ansys/fluent/core/generated/datamodel_252/preferences.py,sha256=mTH6hN1i1sTPJfLpCwVtvd-5XSiKXwn3GbuFLRECjFs,123632
|
|
111
111
|
ansys/fluent/core/generated/datamodel_252/solver_workflow.py,sha256=Y0SR_7bc-qPCqabBbrBDatctD9U_U0f1LtS8UjUuu90,51272
|
|
112
112
|
ansys/fluent/core/generated/datamodel_252/workflow.py,sha256=J0vlBf1tLOe5kUHKEDJRLV033BhZVK0Y5OwMqjRoEW8,28018
|
|
113
|
-
ansys/fluent/core/generated/datamodel_261/flicing.py,sha256=
|
|
114
|
-
ansys/fluent/core/generated/datamodel_261/meshing.py,sha256=
|
|
115
|
-
ansys/fluent/core/generated/datamodel_261/meshing_utilities.py,sha256=
|
|
113
|
+
ansys/fluent/core/generated/datamodel_261/flicing.py,sha256=5NjUeUhcz0GmoFxcMV76gh0xStrcCXulvQ42NQ0pqso,521561
|
|
114
|
+
ansys/fluent/core/generated/datamodel_261/meshing.py,sha256=sPcrXGtKPUhRJNKr_QAdEsffo7_pF5SjAaH8x-_z2ss,878904
|
|
115
|
+
ansys/fluent/core/generated/datamodel_261/meshing_utilities.py,sha256=11d7l-CyUVW5zFm1YNOsSu96ZsSvxgh0n0P65jyeQVw,148603
|
|
116
116
|
ansys/fluent/core/generated/datamodel_261/meshing_utilities.pyi,sha256=J53pQomR2sQozP66bnsGuaOG0Y422lUnYT8sk2p8PH0,30634
|
|
117
|
-
ansys/fluent/core/generated/datamodel_261/part_management.py,sha256=
|
|
117
|
+
ansys/fluent/core/generated/datamodel_261/part_management.py,sha256=hxYZkgJDCSZMwLRhuWKydZnQXr7neM07vqvQ7StW3U8,166591
|
|
118
118
|
ansys/fluent/core/generated/datamodel_261/pm_file_management.py,sha256=LtXmO9-v86N9-RspThPSENexAmr8afIKzz_j2x107r4,12023
|
|
119
119
|
ansys/fluent/core/generated/datamodel_261/preferences.py,sha256=bYbL9AI0IKTtY0uSW-Fu14Zn1El7Ov56Gqx0uCv_EGA,123920
|
|
120
120
|
ansys/fluent/core/generated/datamodel_261/solver_workflow.py,sha256=Gf_i1k-xYjekEpGoyyVzTsbRNytl8eoH9hoOiNd8798,51517
|
|
@@ -138,8 +138,8 @@ ansys/fluent/core/generated/solver/settings_251.py,sha256=ixXpvlzXgQab08x_lmy8Ww
|
|
|
138
138
|
ansys/fluent/core/generated/solver/settings_251.pyi,sha256=eOurlhhA3YtZBG903ytbaE_XMOSHcfNjhJ6wd9razT0,1719476
|
|
139
139
|
ansys/fluent/core/generated/solver/settings_252.py,sha256=571ypiJnkCyK6JelGt6n3qVrR-w_GRbRnXoof8kVaJA,2951479
|
|
140
140
|
ansys/fluent/core/generated/solver/settings_252.pyi,sha256=ZKqa20gmRmMqk49D8LMkaw3zn3GuY9ok7WGw15y6ayU,1992062
|
|
141
|
-
ansys/fluent/core/generated/solver/settings_261.py,sha256=
|
|
142
|
-
ansys/fluent/core/generated/solver/settings_261.pyi,sha256=
|
|
141
|
+
ansys/fluent/core/generated/solver/settings_261.py,sha256=Bb35FgdVKWVtttTfh9yuEmamHNq8-ErtiSmzCv3dCi8,3042623
|
|
142
|
+
ansys/fluent/core/generated/solver/settings_261.pyi,sha256=KNg0LFJt1EKIEedxvQLIKpjpAwfodFJgl8p-y2fDISI,1979238
|
|
143
143
|
ansys/fluent/core/generated/solver/settings_builtin.py,sha256=XIpfVAd3JyX5sloEJnWj0qopePM48FwGcZXt_wuTle4,57502
|
|
144
144
|
ansys/fluent/core/generated/solver/settings_builtin.pyi,sha256=5_t03o8PIZHhwzm5EMbNcT3I6OUz7PRZ-CPy-29XCfk,100718
|
|
145
145
|
ansys/fluent/core/generated/solver/tui_231.py,sha256=adUuOnyCSUxePpzK-PdUQe3w77MTrLZpipI8IPBwqWs,2770957
|
|
@@ -148,7 +148,7 @@ ansys/fluent/core/generated/solver/tui_241.py,sha256=2c2NW4k2dP3dY5d--MJNJ082jp0
|
|
|
148
148
|
ansys/fluent/core/generated/solver/tui_242.py,sha256=e3DOfh-Tl6DFaotqBlrJLebOA9Uz5prxAqMKICPU76g,2085786
|
|
149
149
|
ansys/fluent/core/generated/solver/tui_251.py,sha256=vZsxD1mMqdFZDGLF6epEOJgNPO7XsUT1J_jyRIu3Gds,2159906
|
|
150
150
|
ansys/fluent/core/generated/solver/tui_252.py,sha256=N94Hl4vL5gcJfv2tsD6MOq0irqZdw96Bju1KG_iF4Y8,2365374
|
|
151
|
-
ansys/fluent/core/generated/solver/tui_261.py,sha256=
|
|
151
|
+
ansys/fluent/core/generated/solver/tui_261.py,sha256=ZvP5H5v7E1e1YOv35CrSCArDOHpdvN939a5WgJX5Pao,2412514
|
|
152
152
|
ansys/fluent/core/launcher/__init__.py,sha256=n5Jd6RxE1DMVSiVR_BSsMHeQLzRqqshu5xZ27z31fgE,1610
|
|
153
153
|
ansys/fluent/core/launcher/container_launcher.py,sha256=nVCq-9ho7sGw4SDeMWZx8Uml9LtwR-gTyTVaKr8IbEQ,11398
|
|
154
154
|
ansys/fluent/core/launcher/error_handler.py,sha256=bncr1jewrqKEHI-g-rDiLu6GgCsCom_dFJHmloM76Ss,3978
|
|
@@ -176,7 +176,7 @@ ansys/fluent/core/services/datamodel_se.py,sha256=orbsrkImznzw5XR46LShSPhedNlw6k
|
|
|
176
176
|
ansys/fluent/core/services/datamodel_tui.py,sha256=IZTtfdS-bJlX863yu0kb7D3kB82xNjOn4BY-uMpiKOI,15275
|
|
177
177
|
ansys/fluent/core/services/deprecated_field_data.py,sha256=O-V81Erw8VjZNKZSn8_gbyuGaaRb7IhoyzqJuIJbJgQ,27218
|
|
178
178
|
ansys/fluent/core/services/events.py,sha256=mWDilZ3LCNYJw4bhCNTHikgmtfd3x_ZQq-mOX9mYOnw,1746
|
|
179
|
-
ansys/fluent/core/services/field_data.py,sha256=
|
|
179
|
+
ansys/fluent/core/services/field_data.py,sha256=vAOvkvxNqmj1DlhQmNUip8typ02NcCsT3eZwiCZ6tq8,64698
|
|
180
180
|
ansys/fluent/core/services/health_check.py,sha256=2G2Ob17VAOSxyWnV1uESHC4VejJ34WviL5FtFMTGdwg,4791
|
|
181
181
|
ansys/fluent/core/services/interceptors.py,sha256=FKIpCGEYv7kZGL6fq3XFs2S2YFkAM9zweu0xpQD5-iM,9291
|
|
182
182
|
ansys/fluent/core/services/monitor.py,sha256=ZlriWk61CtLi1Br7CABqYf27ueg9czI5P7NzITh21Vk,2846
|
|
@@ -223,7 +223,7 @@ ansys/fluent/core/variable_strategies/__init__.py,sha256=hlwG6jACtNTBIMKM8V5e7ls
|
|
|
223
223
|
ansys/fluent/core/variable_strategies/expr.py,sha256=1OLXL4solil9Zx_jfIFSrMradFrqgquH4rXYmRRhAWA,8676
|
|
224
224
|
ansys/fluent/core/variable_strategies/field.py,sha256=xsg7NaCABeOSMrrq8t50nOyw231wIUB3BLgB-yXJqw4,8590
|
|
225
225
|
ansys/fluent/core/variable_strategies/svar.py,sha256=tcqpA0B6WQ6XJyLqiLWBuJDHsvlwLGat3iTb315Hres,1969
|
|
226
|
-
ansys_fluent_core-0.34.
|
|
227
|
-
ansys_fluent_core-0.34.
|
|
228
|
-
ansys_fluent_core-0.34.
|
|
229
|
-
ansys_fluent_core-0.34.
|
|
226
|
+
ansys_fluent_core-0.34.1.dist-info/LICENSE,sha256=5w5etzTlBx3bnQfaa3IXMnV4n9cHCJn4bD5XbiUfCbY,1097
|
|
227
|
+
ansys_fluent_core-0.34.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
228
|
+
ansys_fluent_core-0.34.1.dist-info/METADATA,sha256=nXHlDTWpw7XTU_PqX-8QGx8eGfFKK2ayaoptwI6m7q0,9524
|
|
229
|
+
ansys_fluent_core-0.34.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|