├── .ci └── build_wheels.sh ├── .codespellrc ├── .flake8 ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── SECURITY.md ├── ansys └── mapdl │ └── reader │ ├── __init__.py │ ├── _mp_keys.py │ ├── _rst_keys.py │ ├── _version.py │ ├── archive.py │ ├── cell_quality.py │ ├── common.py │ ├── cyclic_reader.py │ ├── cython │ ├── _archive.pyx │ ├── _binary_reader.pyx │ ├── _cellqual.pyx │ ├── _parsefull.pyx │ ├── _reader.pyx │ ├── _relaxmidside.pyx │ ├── archive.c │ ├── archive.h │ ├── binary_reader.cpp │ ├── binary_reader.h │ ├── parsefull.c │ ├── parsefull.h │ ├── reader.c │ ├── reader.h │ ├── vtk_support.c │ └── vtk_support.h │ ├── dis_result.py │ ├── elements.py │ ├── emat.py │ ├── errors.py │ ├── examples │ ├── HexBeam.cdb │ ├── TetBeam.cdb │ ├── __init__.py │ ├── downloads.py │ ├── examples.py │ ├── file.full │ ├── file.rst │ └── sector.cdb │ ├── full.py │ ├── mesh.py │ ├── misc.py │ ├── plotting.py │ ├── rst.py │ └── rst_avail.py ├── doc ├── Makefile └── source │ ├── _static │ └── pyansys-logo-black-cropped.png │ ├── api │ ├── archive.rst │ ├── cyclic_result.rst │ ├── emat.rst │ ├── full.rst │ ├── index.rst │ ├── mesh_quality.rst │ ├── misc.rst │ └── rst.rst │ ├── conf.py │ ├── contributing.rst │ ├── getting_started.rst │ ├── images │ ├── ansys_stress.png │ ├── beam_mode_shape.gif │ ├── beam_mode_shape_small.gif │ ├── beam_stress.png │ ├── beam_stress_small.png │ ├── cellqual.png │ ├── hexbeam.png │ ├── hexbeam_disp.png │ ├── hexbeam_disp_small.png │ ├── hexbeam_small.png │ ├── paraview.jpg │ ├── rotor.jpg │ ├── sector.jpg │ ├── solved_km.png │ └── vplot_cylinder.png │ ├── index.rst │ └── user_guide │ ├── archive.rst │ ├── index.rst │ ├── loading_emat.rst │ ├── loading_km.rst │ ├── loading_results.rst │ └── quality.rst ├── examples ├── 00-read_binary │ ├── README.txt │ ├── custom_visualization.py │ ├── load_corner_result.py │ ├── load_shaft_result.py │ ├── load_thermal_result.py │ └── pontoon.py ├── 01-cyclic_results │ ├── README.txt │ ├── academic_sector_nd.py │ ├── academic_sector_stress_strain.py │ └── sector_model.py └── README.txt ├── ignore_words.txt ├── pyproject.toml ├── pytest.ini ├── requirements ├── requirements_doc.txt └── requirements_test.txt ├── setup.py └── tests ├── archive ├── test_archive.py └── test_data │ ├── ErnoRadiation.cdb │ ├── Panel_Transient.dat │ ├── all_solid_cells.cdb │ ├── hypermesh.cdb │ ├── mesh200.cdb │ ├── mixed_missing_midside.cdb │ ├── parm.cdb │ └── workbench_193.cdb ├── conftest.py ├── cyclic_reader ├── academic_rotor │ ├── SET1,1_RSYS0_EPEL.npz │ ├── SET1,1_RSYS0_S,PRIN.npz │ ├── SET1,1_RSYS0_S.npz │ ├── SET1,2_RSYS0_EPEL.npz │ ├── SET1,2_RSYS0_S,PRIN.npz │ ├── SET1,2_RSYS0_S.npz │ ├── SET13,1_RSYS0_EPEL.npz │ ├── SET13,1_RSYS0_S,PRIN.npz │ ├── SET13,1_RSYS0_S.npz │ ├── SET13,2_RSYS0_EPEL.npz │ ├── SET13,2_RSYS0_S,PRIN.npz │ ├── SET13,2_RSYS0_S.npz │ ├── SET2,1_RSYS0_EPEL.npz │ ├── SET2,1_RSYS0_S,PRIN.npz │ ├── SET2,1_RSYS0_S.npz │ ├── SET2,2_RSYS0_EPEL.npz │ ├── SET2,2_RSYS0_S,PRIN.npz │ ├── SET2,2_RSYS0_S.npz │ ├── SET5,1_RSYS0_EPEL.npz │ ├── SET5,1_RSYS0_S,PRIN.npz │ ├── SET5,1_RSYS0_S.npz │ ├── SET5,2_RSYS0_EPEL.npz │ ├── SET5,2_RSYS0_S,PRIN.npz │ ├── SET5,2_RSYS0_S.npz │ └── academic_rotor.rst ├── cyclic_v150.rst ├── cyclic_v182.rst ├── cyclic_v182_w_comp.rst ├── cyclic_x_v182.rst ├── prnsol_d_cyclic_x_full_v182.npz ├── prnsol_d_cyclic_z_full_v182.npz ├── prnsol_p_cyclic_x_full_v182.npz ├── prnsol_s_cyclic_x_full_v182.npz ├── prnsol_s_cyclic_z_full_v182.npz ├── prnsol_s_cyclic_z_full_v182_set_1_1.npz ├── prnsol_u_cyclic_z_full_v182_set_4_2.npz ├── v182_disp.npz ├── v182_presol.npz ├── v182_prnsol_prin.npz ├── v182_prnsol_s.npz └── v182_x_disp.npz ├── elements ├── plane_182_183 │ ├── archive.cdb │ ├── plane182_183.cdb │ ├── plane182_183.rst │ ├── prnsol_s.npy │ ├── prnsol_s_nnum.npy │ ├── prnsol_u.npy │ ├── prnsol_u_nnum.npy │ ├── pymapdl_182_183_42_82.rst │ ├── test_archive_182_183.py │ └── test_plane182_183.py ├── shell181 │ ├── shell181.rst │ ├── shell181_box.rst │ ├── test_shell181.py │ └── test_shell181_element_coord.py ├── shell281 │ ├── MAPDL.inp │ ├── ds.dat │ ├── file.rst │ └── test_shell281.py ├── solid186 │ ├── prnsol_s.txt │ ├── prnsol_s_prin.txt │ ├── prnsol_u.txt │ └── test_solid186.py ├── targe170 │ ├── file.rst │ └── test_targe170.py └── test_solid239_240.py ├── test_beam44.py ├── test_binary_reader.py ├── test_binary_reader_cython.py ├── test_cyclic.py ├── test_dist_rst.py ├── test_emat.py ├── test_full.py ├── test_rst.py ├── testfiles ├── beam44.rst ├── comp_hex_beam.rst ├── cyc12.rst ├── cyc12 │ ├── RSYS0_ROTOR_PRNSOL_BFE.npz │ ├── RSYS0_ROTOR_PRNSOL_EPEL.npz │ └── RSYS0_ROTOR_PRNSOL_EPTH_COMP.npz ├── cyclic_reader │ ├── cyclic_v150.rst │ └── cyclic_v182.rst ├── dist_rst │ ├── blade_stations │ │ ├── ans_xdisp.npz │ │ ├── beam3_0.rst │ │ └── beam3_1.rst │ └── static │ │ ├── build.py │ │ ├── file.rst │ │ ├── file0.rst │ │ ├── file1.rst │ │ ├── file2.rst │ │ └── file3.rst ├── file.emat ├── file.esav ├── file.rth ├── hex_201.rst ├── is16.npz ├── is16.rst ├── link1.rst ├── materials │ ├── file.rst │ └── stress_lim.rst ├── nodal_reaction.npy ├── para │ ├── para0.txt │ ├── para1.txt │ └── para2.txt ├── rst │ ├── README.md │ ├── beam_modal_cantilever.rst │ ├── beam_static_bc.rst │ ├── cyc_stress.npy │ └── cyc_stress.rst ├── shell181_2020R2.rst ├── shell181_2021R1.rst ├── shell281.rst ├── shell63_beam4.rst ├── sparse.full ├── temp_dependent_results.rth ├── temp_v13.npz ├── temp_v13.rst ├── vm1.dat ├── vm1.rst ├── vm273.dat └── vol_test.rst ├── unused_test_examples.py └── unused_test_shell281.py /.ci/build_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.ci/build_wheels.sh -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.codespellrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include ansys/mapdl/reader/cython/*.h 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ansys/mapdl/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/__init__.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/_mp_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/_mp_keys.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/_rst_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/_rst_keys.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/_version.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/archive.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/cell_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cell_quality.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/common.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/cyclic_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cyclic_reader.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_archive.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_archive.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_binary_reader.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_binary_reader.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_cellqual.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_cellqual.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_parsefull.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_parsefull.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_reader.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_reader.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/_relaxmidside.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/_relaxmidside.pyx -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/archive.c -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/archive.h -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/binary_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/binary_reader.cpp -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/binary_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/binary_reader.h -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/parsefull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/parsefull.c -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/parsefull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/parsefull.h -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/reader.c -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/reader.h -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/vtk_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/vtk_support.c -------------------------------------------------------------------------------- /ansys/mapdl/reader/cython/vtk_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/cython/vtk_support.h -------------------------------------------------------------------------------- /ansys/mapdl/reader/dis_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/dis_result.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/elements.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/emat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/emat.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/errors.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/HexBeam.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/HexBeam.cdb -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/TetBeam.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/TetBeam.cdb -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/__init__.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/downloads.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/examples.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/file.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/file.full -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/file.rst -------------------------------------------------------------------------------- /ansys/mapdl/reader/examples/sector.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/examples/sector.cdb -------------------------------------------------------------------------------- /ansys/mapdl/reader/full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/full.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/mesh.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/misc.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/plotting.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/rst.py -------------------------------------------------------------------------------- /ansys/mapdl/reader/rst_avail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/ansys/mapdl/reader/rst_avail.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/_static/pyansys-logo-black-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/_static/pyansys-logo-black-cropped.png -------------------------------------------------------------------------------- /doc/source/api/archive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/archive.rst -------------------------------------------------------------------------------- /doc/source/api/cyclic_result.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/cyclic_result.rst -------------------------------------------------------------------------------- /doc/source/api/emat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/emat.rst -------------------------------------------------------------------------------- /doc/source/api/full.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/full.rst -------------------------------------------------------------------------------- /doc/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/index.rst -------------------------------------------------------------------------------- /doc/source/api/mesh_quality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/mesh_quality.rst -------------------------------------------------------------------------------- /doc/source/api/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/misc.rst -------------------------------------------------------------------------------- /doc/source/api/rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/api/rst.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/contributing.rst -------------------------------------------------------------------------------- /doc/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/getting_started.rst -------------------------------------------------------------------------------- /doc/source/images/ansys_stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/ansys_stress.png -------------------------------------------------------------------------------- /doc/source/images/beam_mode_shape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/beam_mode_shape.gif -------------------------------------------------------------------------------- /doc/source/images/beam_mode_shape_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/beam_mode_shape_small.gif -------------------------------------------------------------------------------- /doc/source/images/beam_stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/beam_stress.png -------------------------------------------------------------------------------- /doc/source/images/beam_stress_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/beam_stress_small.png -------------------------------------------------------------------------------- /doc/source/images/cellqual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/cellqual.png -------------------------------------------------------------------------------- /doc/source/images/hexbeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/hexbeam.png -------------------------------------------------------------------------------- /doc/source/images/hexbeam_disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/hexbeam_disp.png -------------------------------------------------------------------------------- /doc/source/images/hexbeam_disp_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/hexbeam_disp_small.png -------------------------------------------------------------------------------- /doc/source/images/hexbeam_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/hexbeam_small.png -------------------------------------------------------------------------------- /doc/source/images/paraview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/paraview.jpg -------------------------------------------------------------------------------- /doc/source/images/rotor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/rotor.jpg -------------------------------------------------------------------------------- /doc/source/images/sector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/sector.jpg -------------------------------------------------------------------------------- /doc/source/images/solved_km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/solved_km.png -------------------------------------------------------------------------------- /doc/source/images/vplot_cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/images/vplot_cylinder.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/user_guide/archive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/archive.rst -------------------------------------------------------------------------------- /doc/source/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/index.rst -------------------------------------------------------------------------------- /doc/source/user_guide/loading_emat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/loading_emat.rst -------------------------------------------------------------------------------- /doc/source/user_guide/loading_km.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/loading_km.rst -------------------------------------------------------------------------------- /doc/source/user_guide/loading_results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/loading_results.rst -------------------------------------------------------------------------------- /doc/source/user_guide/quality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/doc/source/user_guide/quality.rst -------------------------------------------------------------------------------- /examples/00-read_binary/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/README.txt -------------------------------------------------------------------------------- /examples/00-read_binary/custom_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/custom_visualization.py -------------------------------------------------------------------------------- /examples/00-read_binary/load_corner_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/load_corner_result.py -------------------------------------------------------------------------------- /examples/00-read_binary/load_shaft_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/load_shaft_result.py -------------------------------------------------------------------------------- /examples/00-read_binary/load_thermal_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/load_thermal_result.py -------------------------------------------------------------------------------- /examples/00-read_binary/pontoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/00-read_binary/pontoon.py -------------------------------------------------------------------------------- /examples/01-cyclic_results/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/01-cyclic_results/README.txt -------------------------------------------------------------------------------- /examples/01-cyclic_results/academic_sector_nd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/01-cyclic_results/academic_sector_nd.py -------------------------------------------------------------------------------- /examples/01-cyclic_results/academic_sector_stress_strain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/01-cyclic_results/academic_sector_stress_strain.py -------------------------------------------------------------------------------- /examples/01-cyclic_results/sector_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/01-cyclic_results/sector_model.py -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/examples/README.txt -------------------------------------------------------------------------------- /ignore_words.txt: -------------------------------------------------------------------------------- 1 | parm 2 | pres 3 | WAN 4 | filname 5 | ans 6 | ect 7 | ist 8 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/requirements_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/requirements/requirements_doc.txt -------------------------------------------------------------------------------- /requirements/requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/requirements/requirements_test.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/setup.py -------------------------------------------------------------------------------- /tests/archive/test_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_archive.py -------------------------------------------------------------------------------- /tests/archive/test_data/ErnoRadiation.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/ErnoRadiation.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/Panel_Transient.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/Panel_Transient.dat -------------------------------------------------------------------------------- /tests/archive/test_data/all_solid_cells.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/all_solid_cells.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/hypermesh.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/hypermesh.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/mesh200.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/mesh200.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/mixed_missing_midside.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/mixed_missing_midside.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/parm.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/parm.cdb -------------------------------------------------------------------------------- /tests/archive/test_data/workbench_193.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/archive/test_data/workbench_193.cdb -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,1_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET1,2_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,1_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET13,2_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,1_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET2,2_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,1_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_EPEL.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_S,PRIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_S,PRIN.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_S.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/SET5,2_RSYS0_S.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/academic_rotor/academic_rotor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/academic_rotor/academic_rotor.rst -------------------------------------------------------------------------------- /tests/cyclic_reader/cyclic_v150.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/cyclic_v150.rst -------------------------------------------------------------------------------- /tests/cyclic_reader/cyclic_v182.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/cyclic_v182.rst -------------------------------------------------------------------------------- /tests/cyclic_reader/cyclic_v182_w_comp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/cyclic_v182_w_comp.rst -------------------------------------------------------------------------------- /tests/cyclic_reader/cyclic_x_v182.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/cyclic_x_v182.rst -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_d_cyclic_x_full_v182.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_d_cyclic_x_full_v182.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_d_cyclic_z_full_v182.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_d_cyclic_z_full_v182.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_p_cyclic_x_full_v182.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_p_cyclic_x_full_v182.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_s_cyclic_x_full_v182.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_s_cyclic_x_full_v182.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_s_cyclic_z_full_v182.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_s_cyclic_z_full_v182.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_s_cyclic_z_full_v182_set_1_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_s_cyclic_z_full_v182_set_1_1.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/prnsol_u_cyclic_z_full_v182_set_4_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/prnsol_u_cyclic_z_full_v182_set_4_2.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/v182_disp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/v182_disp.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/v182_presol.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/v182_presol.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/v182_prnsol_prin.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/v182_prnsol_prin.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/v182_prnsol_s.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/v182_prnsol_s.npz -------------------------------------------------------------------------------- /tests/cyclic_reader/v182_x_disp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/cyclic_reader/v182_x_disp.npz -------------------------------------------------------------------------------- /tests/elements/plane_182_183/archive.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/archive.cdb -------------------------------------------------------------------------------- /tests/elements/plane_182_183/plane182_183.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/plane182_183.cdb -------------------------------------------------------------------------------- /tests/elements/plane_182_183/plane182_183.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/plane182_183.rst -------------------------------------------------------------------------------- /tests/elements/plane_182_183/prnsol_s.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/prnsol_s.npy -------------------------------------------------------------------------------- /tests/elements/plane_182_183/prnsol_s_nnum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/prnsol_s_nnum.npy -------------------------------------------------------------------------------- /tests/elements/plane_182_183/prnsol_u.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/prnsol_u.npy -------------------------------------------------------------------------------- /tests/elements/plane_182_183/prnsol_u_nnum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/prnsol_u_nnum.npy -------------------------------------------------------------------------------- /tests/elements/plane_182_183/pymapdl_182_183_42_82.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/pymapdl_182_183_42_82.rst -------------------------------------------------------------------------------- /tests/elements/plane_182_183/test_archive_182_183.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/test_archive_182_183.py -------------------------------------------------------------------------------- /tests/elements/plane_182_183/test_plane182_183.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/plane_182_183/test_plane182_183.py -------------------------------------------------------------------------------- /tests/elements/shell181/shell181.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell181/shell181.rst -------------------------------------------------------------------------------- /tests/elements/shell181/shell181_box.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell181/shell181_box.rst -------------------------------------------------------------------------------- /tests/elements/shell181/test_shell181.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell181/test_shell181.py -------------------------------------------------------------------------------- /tests/elements/shell181/test_shell181_element_coord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell181/test_shell181_element_coord.py -------------------------------------------------------------------------------- /tests/elements/shell281/MAPDL.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell281/MAPDL.inp -------------------------------------------------------------------------------- /tests/elements/shell281/ds.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell281/ds.dat -------------------------------------------------------------------------------- /tests/elements/shell281/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell281/file.rst -------------------------------------------------------------------------------- /tests/elements/shell281/test_shell281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/shell281/test_shell281.py -------------------------------------------------------------------------------- /tests/elements/solid186/prnsol_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/solid186/prnsol_s.txt -------------------------------------------------------------------------------- /tests/elements/solid186/prnsol_s_prin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/solid186/prnsol_s_prin.txt -------------------------------------------------------------------------------- /tests/elements/solid186/prnsol_u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/solid186/prnsol_u.txt -------------------------------------------------------------------------------- /tests/elements/solid186/test_solid186.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/solid186/test_solid186.py -------------------------------------------------------------------------------- /tests/elements/targe170/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/targe170/file.rst -------------------------------------------------------------------------------- /tests/elements/targe170/test_targe170.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/targe170/test_targe170.py -------------------------------------------------------------------------------- /tests/elements/test_solid239_240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/elements/test_solid239_240.py -------------------------------------------------------------------------------- /tests/test_beam44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_beam44.py -------------------------------------------------------------------------------- /tests/test_binary_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_binary_reader.py -------------------------------------------------------------------------------- /tests/test_binary_reader_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_binary_reader_cython.py -------------------------------------------------------------------------------- /tests/test_cyclic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_cyclic.py -------------------------------------------------------------------------------- /tests/test_dist_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_dist_rst.py -------------------------------------------------------------------------------- /tests/test_emat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_emat.py -------------------------------------------------------------------------------- /tests/test_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_full.py -------------------------------------------------------------------------------- /tests/test_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/test_rst.py -------------------------------------------------------------------------------- /tests/testfiles/beam44.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/beam44.rst -------------------------------------------------------------------------------- /tests/testfiles/comp_hex_beam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/comp_hex_beam.rst -------------------------------------------------------------------------------- /tests/testfiles/cyc12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyc12.rst -------------------------------------------------------------------------------- /tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_BFE.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_BFE.npz -------------------------------------------------------------------------------- /tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_EPEL.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_EPEL.npz -------------------------------------------------------------------------------- /tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_EPTH_COMP.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyc12/RSYS0_ROTOR_PRNSOL_EPTH_COMP.npz -------------------------------------------------------------------------------- /tests/testfiles/cyclic_reader/cyclic_v150.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyclic_reader/cyclic_v150.rst -------------------------------------------------------------------------------- /tests/testfiles/cyclic_reader/cyclic_v182.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/cyclic_reader/cyclic_v182.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/blade_stations/ans_xdisp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/blade_stations/ans_xdisp.npz -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/blade_stations/beam3_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/blade_stations/beam3_0.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/blade_stations/beam3_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/blade_stations/beam3_1.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/build.py -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/file.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/file0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/file0.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/file1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/file1.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/file2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/file2.rst -------------------------------------------------------------------------------- /tests/testfiles/dist_rst/static/file3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/dist_rst/static/file3.rst -------------------------------------------------------------------------------- /tests/testfiles/file.emat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/file.emat -------------------------------------------------------------------------------- /tests/testfiles/file.esav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/file.esav -------------------------------------------------------------------------------- /tests/testfiles/file.rth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/file.rth -------------------------------------------------------------------------------- /tests/testfiles/hex_201.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/hex_201.rst -------------------------------------------------------------------------------- /tests/testfiles/is16.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/is16.npz -------------------------------------------------------------------------------- /tests/testfiles/is16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/is16.rst -------------------------------------------------------------------------------- /tests/testfiles/link1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/link1.rst -------------------------------------------------------------------------------- /tests/testfiles/materials/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/materials/file.rst -------------------------------------------------------------------------------- /tests/testfiles/materials/stress_lim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/materials/stress_lim.rst -------------------------------------------------------------------------------- /tests/testfiles/nodal_reaction.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/nodal_reaction.npy -------------------------------------------------------------------------------- /tests/testfiles/para/para0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/para/para0.txt -------------------------------------------------------------------------------- /tests/testfiles/para/para1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/para/para1.txt -------------------------------------------------------------------------------- /tests/testfiles/para/para2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/para/para2.txt -------------------------------------------------------------------------------- /tests/testfiles/rst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/rst/README.md -------------------------------------------------------------------------------- /tests/testfiles/rst/beam_modal_cantilever.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/rst/beam_modal_cantilever.rst -------------------------------------------------------------------------------- /tests/testfiles/rst/beam_static_bc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/rst/beam_static_bc.rst -------------------------------------------------------------------------------- /tests/testfiles/rst/cyc_stress.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/rst/cyc_stress.npy -------------------------------------------------------------------------------- /tests/testfiles/rst/cyc_stress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/rst/cyc_stress.rst -------------------------------------------------------------------------------- /tests/testfiles/shell181_2020R2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/shell181_2020R2.rst -------------------------------------------------------------------------------- /tests/testfiles/shell181_2021R1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/shell181_2021R1.rst -------------------------------------------------------------------------------- /tests/testfiles/shell281.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/shell281.rst -------------------------------------------------------------------------------- /tests/testfiles/shell63_beam4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/shell63_beam4.rst -------------------------------------------------------------------------------- /tests/testfiles/sparse.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/sparse.full -------------------------------------------------------------------------------- /tests/testfiles/temp_dependent_results.rth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/temp_dependent_results.rth -------------------------------------------------------------------------------- /tests/testfiles/temp_v13.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/temp_v13.npz -------------------------------------------------------------------------------- /tests/testfiles/temp_v13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/temp_v13.rst -------------------------------------------------------------------------------- /tests/testfiles/vm1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/vm1.dat -------------------------------------------------------------------------------- /tests/testfiles/vm1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/vm1.rst -------------------------------------------------------------------------------- /tests/testfiles/vm273.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/vm273.dat -------------------------------------------------------------------------------- /tests/testfiles/vol_test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/testfiles/vol_test.rst -------------------------------------------------------------------------------- /tests/unused_test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/unused_test_examples.py -------------------------------------------------------------------------------- /tests/unused_test_shell281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl-reader/HEAD/tests/unused_test_shell281.py --------------------------------------------------------------------------------