ansys-pyensight-core 0.7.6__py3-none-any.whl → 0.7.8__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-pyensight-core might be problematic. Click here for more details.

@@ -0,0 +1,54 @@
1
+ mdl 1.4;
2
+
3
+ import ::OmniPBR::OmniPBR;
4
+ import ::anno::author;
5
+ import ::anno::description;
6
+ import ::anno::display_name;
7
+ import ::anno::key_words;
8
+ import ::anno::version;
9
+ import ::tex::gamma_mode;
10
+ import ::state::normal;
11
+
12
+ export material Fieldstone(*)
13
+ [[
14
+ ::anno::display_name("Omni PBR "),
15
+ ::anno::description("Omni PBR, supports ORM textures"),
16
+ ::anno::version(1, 0, 0, ""),
17
+ ::anno::author("NVIDIA CORPORATION"),
18
+ ::anno::key_words(string[]("omni", "PBR", "omniverse", "generic"))
19
+ ]]
20
+ = ::OmniPBR::OmniPBR(
21
+ diffuse_color_constant: color(0.200000003f, 0.200000003f, 0.200000003f),
22
+ diffuse_texture: texture_2d("./Fieldstone/Fieldstone_BaseColor.png" /* tag 2828, version 6332211 */, ::tex::gamma_srgb),
23
+ albedo_desaturation: 0.f,
24
+ albedo_add: 0.f,
25
+ albedo_brightness: 1.f,
26
+ diffuse_tint: color(1.f, 1.f, 1.f),
27
+ reflection_roughness_constant: 0.5f,
28
+ reflection_roughness_texture_influence: 1.f,
29
+ reflectionroughness_texture: texture_2d(),
30
+ metallic_constant: 0.f,
31
+ metallic_texture_influence: 1.f,
32
+ metallic_texture: texture_2d(),
33
+ specular_level: 0.5f,
34
+ enable_ORM_texture: true,
35
+ ORM_texture: texture_2d("./Fieldstone/Fieldstone_ORM.png" /* tag 2830, version 596885211 */, ::tex::gamma_linear),
36
+ ao_to_diffuse: 0.f,
37
+ ao_texture: texture_2d(),
38
+ enable_emission: false,
39
+ emissive_color: color(1.f, 0.100000001f, 0.100000001f),
40
+ emissive_mask_texture: texture_2d(),
41
+ emissive_intensity: 40.f,
42
+ bump_factor: 1.f,
43
+ normalmap_texture: texture_2d("./Fieldstone/Fieldstone_N.png" /* tag 2832, version 3494456508 */, ::tex::gamma_linear),
44
+ detail_bump_factor: 0.300000012f,
45
+ detail_normalmap_texture: texture_2d(),
46
+ project_uvw: false,
47
+ world_or_object: false,
48
+ uv_space_index: 0,
49
+ texture_translate: float2(0.f),
50
+ texture_rotate: 0.f,
51
+ texture_scale: float2(1.f),
52
+ detail_texture_translate: float2(0.f),
53
+ detail_texture_rotate: 0.f,
54
+ detail_texture_scale: float2(1.f));
@@ -1266,6 +1266,7 @@ class Variables:
1266
1266
  """
1267
1267
  frames = (
1268
1268
  self.ensight.objs.core.FRAMES is not None
1269
+ and len(self.ensight.objs.core.FRAMES) > 0
1269
1270
  and "frame_index" in params
1270
1271
  and int(params["frame_index"]) > 0
1271
1272
  )
@@ -1460,34 +1461,38 @@ class Variables:
1460
1461
  # Coefficient shear force components then magnitude
1461
1462
  #
1462
1463
  if shear_coeff_list is not None and press_coeff_list is not None:
1463
- fp.write(" , ")
1464
- for jj in range(3):
1465
- fp.write(str(shear_coeff_list[ii][jj]))
1464
+ if len(shear_coeff_list) > 0 and len(press_coeff_list) > 0:
1466
1465
  fp.write(" , ")
1467
- fp.write(str(vec_mag(shear_coeff_list[ii][:3])))
1468
- fp.write(" , ")
1469
- if frames:
1470
1466
  for jj in range(3):
1471
- fp.write(str(shear_coeff_list[ii][jj + 3]))
1467
+ fp.write(str(shear_coeff_list[ii][jj]))
1472
1468
  fp.write(" , ")
1473
- fp.write(str(vec_mag(shear_coeff_list[ii][3:])))
1474
- fp.write(" , ")
1475
- # sum of pressure and shear Coefficient components then magnitude
1476
- for jj in range(3):
1477
- temp_list[jj] = press_coeff_list[ii][jj] + shear_coeff_list[ii][jj]
1478
- fp.write(str(temp_list[jj]))
1479
- fp.write(" , ")
1480
- fp.write(str(vec_mag(temp_list)))
1481
- if frames:
1469
+ fp.write(str(vec_mag(shear_coeff_list[ii][:3])))
1482
1470
  fp.write(" , ")
1471
+ if frames:
1472
+ for jj in range(3):
1473
+ fp.write(str(shear_coeff_list[ii][jj + 3]))
1474
+ fp.write(" , ")
1475
+ fp.write(str(vec_mag(shear_coeff_list[ii][3:])))
1476
+ fp.write(" , ")
1477
+ # sum of pressure and shear Coefficient components then magnitude
1483
1478
  for jj in range(3):
1484
1479
  temp_list[jj] = (
1485
- press_coeff_list[ii][jj + 3] + shear_coeff_list[ii][jj + 3]
1480
+ press_coeff_list[ii][jj] + shear_coeff_list[ii][jj]
1486
1481
  )
1487
1482
  fp.write(str(temp_list[jj]))
1488
1483
  fp.write(" , ")
1489
1484
  fp.write(str(vec_mag(temp_list)))
1490
- fp.write(" , ")
1485
+ if frames:
1486
+ fp.write(" , ")
1487
+ for jj in range(3):
1488
+ temp_list[jj] = (
1489
+ press_coeff_list[ii][jj + 3]
1490
+ + shear_coeff_list[ii][jj + 3]
1491
+ )
1492
+ fp.write(str(temp_list[jj]))
1493
+ fp.write(" , ")
1494
+ fp.write(str(vec_mag(temp_list)))
1495
+ fp.write(" , ")
1491
1496
  #
1492
1497
  # Lift, Drag and Side Force
1493
1498
  # No cylindrical stuff here
@@ -1501,43 +1506,49 @@ class Variables:
1501
1506
  fp.write(" , ")
1502
1507
  # LDS shear force components then magnitude
1503
1508
  if shear_LDS_force_list is not None and press_LDS_force_list is not None:
1504
- for jj in range(3):
1505
- fp.write(str(shear_LDS_force_list[ii][jj]))
1506
- fp.write(" , ")
1507
- fp.write(str(vec_mag(shear_LDS_force_list[ii][:3])))
1508
- fp.write(" , ")
1509
- # LDS sum of pressure and shear forces components then magnitude
1510
- for jj in range(3):
1511
- temp_list[jj] = (
1512
- press_LDS_force_list[ii][jj] + shear_LDS_force_list[ii][jj]
1513
- )
1514
- fp.write(str(temp_list[jj]))
1515
- fp.write(" , ")
1516
- fp.write(str(vec_mag(temp_list)))
1517
- fp.write(" , ")
1518
- # LDS Coefficient of pressure force components then magnitude
1519
- if press_LDS_coeff_list:
1520
- for jj in range(3):
1521
- fp.write(str(press_LDS_coeff_list[ii][jj]))
1509
+ if len(shear_LDS_force_list) > 0 and len(press_LDS_force_list) > 0:
1510
+ for jj in range(3):
1511
+ fp.write(str(shear_LDS_force_list[ii][jj]))
1512
+ fp.write(" , ")
1513
+ fp.write(str(vec_mag(shear_LDS_force_list[ii][:3])))
1522
1514
  fp.write(" , ")
1523
- fp.write(str(vec_mag(press_LDS_coeff_list[ii][:3])))
1524
- fp.write(" , ")
1525
- # LDS Coefficient shear force components then magnitude
1526
- if shear_LDS_coeff_list is not None and press_LDS_coeff_list is not None:
1527
- for jj in range(3):
1528
- fp.write(str(shear_LDS_coeff_list[ii][jj]))
1515
+ # LDS sum of pressure and shear forces components then magnitude
1516
+ for jj in range(3):
1517
+ temp_list[jj] = (
1518
+ press_LDS_force_list[ii][jj] + shear_LDS_force_list[ii][jj]
1519
+ )
1520
+ fp.write(str(temp_list[jj]))
1521
+ fp.write(" , ")
1522
+ fp.write(str(vec_mag(temp_list)))
1529
1523
  fp.write(" , ")
1530
- fp.write(str(vec_mag(shear_LDS_coeff_list[ii][:3])))
1531
- fp.write(" , ")
1532
- # LDS sum of pressure and shear Coefficient components then magnitude
1533
- for jj in range(3):
1534
- temp_list[jj] = (
1535
- press_LDS_coeff_list[ii][jj] + shear_LDS_coeff_list[ii][jj]
1536
- )
1537
- fp.write(str(temp_list[jj]))
1524
+ # LDS Coefficient of pressure force components then magnitude
1525
+ if press_LDS_coeff_list:
1526
+ for jj in range(3):
1527
+ fp.write(str(press_LDS_coeff_list[ii][jj]))
1528
+ fp.write(" , ")
1529
+ fp.write(str(vec_mag(press_LDS_coeff_list[ii][:3])))
1538
1530
  fp.write(" , ")
1539
- fp.write(str(vec_mag(temp_list)))
1540
- fp.write("\n")
1531
+ # LDS Coefficient shear force components then magnitude
1532
+ if (
1533
+ shear_LDS_coeff_list is not None
1534
+ and press_LDS_coeff_list is not None
1535
+ ):
1536
+ if len(shear_LDS_coeff_list) > 0 and len(press_LDS_coeff_list) > 0:
1537
+ for jj in range(3):
1538
+ fp.write(str(shear_LDS_coeff_list[ii][jj]))
1539
+ fp.write(" , ")
1540
+ fp.write(str(vec_mag(shear_LDS_coeff_list[ii][:3])))
1541
+ fp.write(" , ")
1542
+ # LDS sum of pressure and shear Coefficient components then magnitude
1543
+ for jj in range(3):
1544
+ temp_list[jj] = (
1545
+ press_LDS_coeff_list[ii][jj]
1546
+ + shear_LDS_coeff_list[ii][jj]
1547
+ )
1548
+ fp.write(str(temp_list[jj]))
1549
+ fp.write(" , ")
1550
+ fp.write(str(vec_mag(temp_list)))
1551
+ fp.write("\n")
1541
1552
  # FIX ME keep track of and write out totals here when loop is done on last line?
1542
1553
  fp.close()
1543
1554
  return True
@@ -1843,61 +1854,62 @@ class Variables:
1843
1854
  self._lds_forces(np.array(part_force), lift_vec, drag_vec, side_vec)
1844
1855
  )
1845
1856
  if export_filename is not None and pobj_list is not None:
1846
- press_varname = None
1847
- shear_varname = None
1848
- if press_var_obj:
1849
- _press_var_id = convert_variable(self.ensight, press_var_obj)
1850
- if _press_var_id:
1851
- press_varnames = [
1852
- v for v in self.ensight.objs.core.VARIABLES if v.ID == _press_var_id
1853
- ]
1854
- if press_varnames:
1855
- press_varname = str(press_varnames[0].DESCRIPTION)
1856
- if shear_var_obj:
1857
- _shear_var_id = convert_variable(self.ensight, shear_var_obj)
1858
- if _shear_var_id:
1859
- shear_varnames = [
1860
- v for v in self.ensight.objs.core.VARIABLES if v.ID == _press_var_id
1861
- ]
1862
- if shear_varnames:
1863
- shear_varname = str(shear_varnames[0].DESCRIPTION)
1864
- params = {}
1865
- if press_varname:
1866
- params["press_varname"] = press_varname
1867
- if shear_varname:
1868
- params["shear_varname"] = shear_varname
1869
- if shear_var_type is not None:
1870
- value = shear_map.get(shear_var_type)
1871
- if value:
1872
- params["shear_vartype"] = value
1873
- if area_ref:
1874
- params["Area_ref"] = str(area_ref)
1875
- if density_ref:
1876
- params["Dens_ref"] = str(density_ref)
1877
- if velocity_x_ref:
1878
- params["Vx_ref"] = str(velocity_x_ref)
1879
- if velocity_y_ref:
1880
- params["Vy_ref"] = str(velocity_y_ref)
1881
- if velocity_z_ref:
1882
- params["Vz_ref"] = str(velocity_z_ref)
1883
- if up_vector:
1884
- params["up_vector"] = up_vector
1885
- if frame_index > 0:
1886
- params["frame_index"] = str(frame_index)
1887
-
1888
- self._write_out_force_data(
1889
- export_filename,
1890
- _pobj_list,
1891
- params=params,
1892
- press_force_list=computed_press_forces,
1893
- shear_force_list=computed_shear_forces,
1894
- press_coeff_list=computed_press_force_coeffs,
1895
- shear_coeff_list=computed_shear_force_coeffs,
1896
- press_LDS_force_list=computed_press_forces_lds,
1897
- shear_LDS_force_list=computed_shear_forces_lds,
1898
- press_LDS_coeff_list=computed_press_forces_lds_coeffs,
1899
- shear_LDS_coeff_list=computed_shear_forces_lds_coeffs,
1900
- )
1857
+ if len(pobj_list) > 0:
1858
+ press_varname = None
1859
+ shear_varname = None
1860
+ if press_var_obj:
1861
+ _press_var_id = convert_variable(self.ensight, press_var_obj)
1862
+ if _press_var_id:
1863
+ press_varnames = [
1864
+ v for v in self.ensight.objs.core.VARIABLES if v.ID == _press_var_id
1865
+ ]
1866
+ if press_varnames:
1867
+ press_varname = str(press_varnames[0].DESCRIPTION)
1868
+ if shear_var_obj:
1869
+ _shear_var_id = convert_variable(self.ensight, shear_var_obj)
1870
+ if _shear_var_id:
1871
+ shear_varnames = [
1872
+ v for v in self.ensight.objs.core.VARIABLES if v.ID == _press_var_id
1873
+ ]
1874
+ if shear_varnames:
1875
+ shear_varname = str(shear_varnames[0].DESCRIPTION)
1876
+ params = {}
1877
+ if press_varname:
1878
+ params["press_varname"] = press_varname
1879
+ if shear_varname:
1880
+ params["shear_varname"] = shear_varname
1881
+ if shear_var_type is not None:
1882
+ value = shear_map.get(shear_var_type)
1883
+ if value:
1884
+ params["shear_vartype"] = value
1885
+ if area_ref:
1886
+ params["Area_ref"] = str(area_ref)
1887
+ if density_ref:
1888
+ params["Dens_ref"] = str(density_ref)
1889
+ if velocity_x_ref:
1890
+ params["Vx_ref"] = str(velocity_x_ref)
1891
+ if velocity_y_ref:
1892
+ params["Vy_ref"] = str(velocity_y_ref)
1893
+ if velocity_z_ref:
1894
+ params["Vz_ref"] = str(velocity_z_ref)
1895
+ if up_vector:
1896
+ params["up_vector"] = up_vector
1897
+ if frame_index > 0:
1898
+ params["frame_index"] = str(frame_index)
1899
+
1900
+ self._write_out_force_data(
1901
+ export_filename,
1902
+ _pobj_list,
1903
+ params=params,
1904
+ press_force_list=computed_press_forces,
1905
+ shear_force_list=computed_shear_forces,
1906
+ press_coeff_list=computed_press_force_coeffs,
1907
+ shear_coeff_list=computed_shear_force_coeffs,
1908
+ press_LDS_force_list=computed_press_forces_lds,
1909
+ shear_LDS_force_list=computed_shear_forces_lds,
1910
+ press_LDS_coeff_list=computed_press_forces_lds_coeffs,
1911
+ shear_LDS_coeff_list=computed_shear_forces_lds_coeffs,
1912
+ )
1901
1913
  return {
1902
1914
  "pressure_forces": {
1903
1915
  p.DESCRIPTION: computed_press_forces[idx]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-pyensight-core
3
- Version: 0.7.6
3
+ Version: 0.7.8
4
4
  Summary: A python wrapper for Ansys EnSight
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
@@ -16,12 +16,14 @@ Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
18
  Requires-Dist: importlib-metadata>=4.0; python_version<='3.8'
19
- Requires-Dist: ansys-api-pyensight==0.3.6
19
+ Requires-Dist: ansys-api-pyensight==0.3.7
20
20
  Requires-Dist: requests>=2.28.2
21
21
  Requires-Dist: docker>=6.1.0
22
22
  Requires-Dist: urllib3<2
23
23
  Requires-Dist: numpy>=1.21.0,<2
24
24
  Requires-Dist: Pillow>=9.3.0
25
+ Requires-Dist: pypng>=0.0.20
26
+ Requires-Dist: psutil>=5.9.2
25
27
  Requires-Dist: build>=0.10.0 ; extra == "dev"
26
28
  Requires-Dist: bump2version>=1.0.1 ; extra == "dev"
27
29
  Requires-Dist: ipdb>=0.9.4 ; extra == "dev"
@@ -3,25 +3,32 @@ ansys/pyensight/core/deep_pixel_view.html,sha256=oZmcCIS3Dqqsoj8oheYubLAH2ZVKXao
3
3
  ansys/pyensight/core/dockerlauncher.py,sha256=ynRAgd55EhIXIpZhFla-coR-WnI7ouBwmiFejHGlqhs,27195
4
4
  ansys/pyensight/core/enscontext.py,sha256=UfeFvY4ZyOcIkgKcIyhs3GohZhWl515QFhJtBxvIfpE,11803
5
5
  ansys/pyensight/core/enshell_grpc.py,sha256=jVgOTBWjDCYZyubDEW1ht6TGpmNd4qIrgJX4ih91aVo,15744
6
- ansys/pyensight/core/ensight_grpc.py,sha256=XprQyy8IXNuhrY1tGubaLWB_xMBCtIui76t6jSpVjIw,14935
6
+ ansys/pyensight/core/ensight_grpc.py,sha256=xq9OCeeDHQEJViTgnH3W05rDQf-py5EqAiZAuI7844Q,16091
7
7
  ansys/pyensight/core/ensobj.py,sha256=t1lIDMSDf_u-kJMrpl6plcQKVgtypUE1CupOVtzOg20,18478
8
8
  ansys/pyensight/core/launch_ensight.py,sha256=Smkg58jSygQEL3ZX6QKkRH3vRXNZqiUu5RNYWjFzkfw,6135
9
9
  ansys/pyensight/core/launcher.py,sha256=sGz4h9QYPNda1RVLNJExBY6udeynWgvkyDqo6N9ZkfE,10785
10
10
  ansys/pyensight/core/listobj.py,sha256=Nbw1S86CEiACcfaSutLQpzCTMRfexiBmvkMFoBlcakI,8958
11
11
  ansys/pyensight/core/locallauncher.py,sha256=sgaPrG-7ctXZ_ytGuHeriiVmgvI0kUeX6nKVJ4OiDUs,13984
12
12
  ansys/pyensight/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- ansys/pyensight/core/renderable.py,sha256=YQk2DbhV84S4EUdCVTBsfCVBEa2QKXBc6BGyVqbpP9w,32477
14
- ansys/pyensight/core/session.py,sha256=r5svCCq42gu-uLgT1xwu9XXifdqJhNK9S_ttLemJmj8,70454
13
+ ansys/pyensight/core/renderable.py,sha256=WO8_eJ6RRw0ZwpQNwAkD4HI9XC9yFT9MfK-CKvMusJQ,33290
14
+ ansys/pyensight/core/session.py,sha256=aZdZ2NuWgydN9s_68FAqjuH7jWAhn_lHE60cc2HvcN8,70586
15
15
  ansys/pyensight/core/sgeo_poll.html,sha256=1M4BIc5CZpYA3b40qzk22NcPCLhjFnWdoS2PrS6Rhn4,752
16
16
  ansys/pyensight/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  ansys/pyensight/core/utils/adr.py,sha256=XslZhlwcrSGzOlnhzprOv3ju_ppxxsWBjCnQL5KiNms,3570
18
18
  ansys/pyensight/core/utils/export.py,sha256=L9On_zsuZL5hr3jI7ULeh3IZG_sSNiNToERfn43P-KU,22425
19
+ ansys/pyensight/core/utils/omniverse.py,sha256=vKAl3rsUiL2pfaNk86bGH_PuZ6kB2DtXNqrsDJqjcqw,9456
20
+ ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=I-zLMMZCi_n93R8-s1SrEtyi42zsBSQNC_Q03DkUAg4,53241
19
21
  ansys/pyensight/core/utils/parts.py,sha256=U1WqcO5C2IaMOVlGamDp4Mrk2bt-nX932mFqQLtAuqA,51319
20
22
  ansys/pyensight/core/utils/query.py,sha256=cQXt_07ZuNAwueAIXinI3_f7G9lXass6j7G0aRJltZE,19035
21
23
  ansys/pyensight/core/utils/support.py,sha256=QI3z9ex7zJxjFbkCPba9DWqWgPFIThORqr0nvRfVjuc,4089
22
- ansys/pyensight/core/utils/variables.py,sha256=gfAs25Ti6mrmITQJ0fMcnXkj3XZdVGmv_UzagCnrd6o,86581
24
+ ansys/pyensight/core/utils/variables.py,sha256=WzOGQmAdtoA3tS0-J6NeEkulYYKHAcEuwaRlDIhBu3Q,87751
23
25
  ansys/pyensight/core/utils/views.py,sha256=vf4gSBRl6uC_LPwZdzrdMcR0dyi_PwYmRo20CPmjEBE,12209
24
- ansys_pyensight_core-0.7.6.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
25
- ansys_pyensight_core-0.7.6.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
26
- ansys_pyensight_core-0.7.6.dist-info/METADATA,sha256=dTNgGHw5SYSGCj4oGUu5q4EI6Ydi4IhNQnAeFzABryw,11772
27
- ansys_pyensight_core-0.7.6.dist-info/RECORD,,
26
+ ansys/pyensight/core/utils/resources/Materials/000_sky.exr,sha256=xAR1gFd2uxPZDnvgfegdhEhRaqKtZldQDiR_-1rHKO0,8819933
27
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone.mdl,sha256=_7z4BzzrRGUH_x3urV4sc7t7WJBjJn4jWLOw1AQObgY,2035
28
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_BaseColor.png,sha256=CyxY5YrvbJxFzUUI-8Q90zOd6xwd85JPzjnUB-vPJ0s,501090
29
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_N.png,sha256=Az1m4bK-PWecsErsuZh4-kkUnui9w4TrCxrGwwI091I,795424
30
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_ORM.png,sha256=x0tUgUxjk53nsnleEy95tI1tUvFFQHGrB3pZVkd7b00,549202
31
+ ansys_pyensight_core-0.7.8.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
32
+ ansys_pyensight_core-0.7.8.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
33
+ ansys_pyensight_core-0.7.8.dist-info/METADATA,sha256=rNHQ65a-5skSaT-_PQ5mevN80cXEyzPtmyFAwtn4aBw,11830
34
+ ansys_pyensight_core-0.7.8.dist-info/RECORD,,