├── .github └── workflows │ ├── python-package.yml │ └── release-and-publish-to-pypi.yml ├── .gitignore ├── LICENSE ├── README.rst ├── data ├── 2411 and 2414.uff ├── Artemis export - Geometry RPBC_setup_05_14102016_105117.uff ├── Artemis export - data and dof 05_14102016_105117.uff ├── BK_4_channels.uff ├── DS2414_disp_file.uff ├── MPSTD#Set001_2024_10_08_10_27_07.uff ├── MPSTD#Set001_2024_10_08_10_27_07_fixed_test.uff ├── NX simulation output.uff ├── Sample_UFF58_ascii.uff ├── Sample_UFF58b_bin.uff ├── Simcenter_nxopen_thickness.uff ├── TestLab 161 164 18 15 82.uff ├── beam.uff ├── binary8byte.uff ├── dataset58b_with_wrong_CRLF_before-1.uff ├── dataset_milestone_in_header.uff ├── groups_test.uff ├── heat_engine_housing.uff ├── meas_point_1.txt ├── meas_point_2.txt ├── meas_point_3.txt ├── mesh_Oros-modal_uff15_uff2412.uff ├── mesh_set2412_to_convert.uff ├── mesh_test_uff2412_mixed.uff ├── no_spacing2_UFF58_ascii.uff ├── non_ascii_header.uff ├── sample_dataset58_psd.uff ├── simcenter_exported_result.uff ├── time-history-not-all-columns-filled.uff ├── uff55 sample_test record10.uff ├── uff55_translation.uff └── uff55_translation_rotation.uff ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── Supported_datasets.rst │ ├── conf.py │ ├── index.rst │ ├── showcase.rst │ └── the_uff_class.rst ├── pyproject.toml ├── pyuff ├── __init__.py ├── datasets │ ├── __init__.py │ ├── dataset_15.py │ ├── dataset_151.py │ ├── dataset_164.py │ ├── dataset_18.py │ ├── dataset_2411.py │ ├── dataset_2412.py │ ├── dataset_2414.py │ ├── dataset_2420.py │ ├── dataset_2429.py │ ├── dataset_2467.py │ ├── dataset_55.py │ ├── dataset_58.py │ └── dataset_82.py ├── pyuff.py └── tools.py ├── pyuff_Showcase.ipynb ├── readthedocs.yaml ├── requirements.dev.txt ├── requirements.txt ├── setup.py └── tests ├── test_15.py ├── test_151.py ├── test_164.py ├── test_2411.py ├── test_2412.py ├── test_2414.py ├── test_2420.py ├── test_2429.py ├── test_2467.py ├── test_55.py ├── test_58.py ├── test_82.py ├── test_all.py └── test_convert_2412_to_82.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/release-and-publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/.github/workflows/release-and-publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/README.rst -------------------------------------------------------------------------------- /data/2411 and 2414.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/2411 and 2414.uff -------------------------------------------------------------------------------- /data/Artemis export - Geometry RPBC_setup_05_14102016_105117.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/Artemis export - Geometry RPBC_setup_05_14102016_105117.uff -------------------------------------------------------------------------------- /data/Artemis export - data and dof 05_14102016_105117.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/Artemis export - data and dof 05_14102016_105117.uff -------------------------------------------------------------------------------- /data/BK_4_channels.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/BK_4_channels.uff -------------------------------------------------------------------------------- /data/DS2414_disp_file.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/DS2414_disp_file.uff -------------------------------------------------------------------------------- /data/MPSTD#Set001_2024_10_08_10_27_07.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/MPSTD#Set001_2024_10_08_10_27_07.uff -------------------------------------------------------------------------------- /data/MPSTD#Set001_2024_10_08_10_27_07_fixed_test.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/MPSTD#Set001_2024_10_08_10_27_07_fixed_test.uff -------------------------------------------------------------------------------- /data/NX simulation output.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/NX simulation output.uff -------------------------------------------------------------------------------- /data/Sample_UFF58_ascii.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/Sample_UFF58_ascii.uff -------------------------------------------------------------------------------- /data/Sample_UFF58b_bin.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/Sample_UFF58b_bin.uff -------------------------------------------------------------------------------- /data/Simcenter_nxopen_thickness.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/Simcenter_nxopen_thickness.uff -------------------------------------------------------------------------------- /data/TestLab 161 164 18 15 82.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/TestLab 161 164 18 15 82.uff -------------------------------------------------------------------------------- /data/beam.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/beam.uff -------------------------------------------------------------------------------- /data/binary8byte.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/binary8byte.uff -------------------------------------------------------------------------------- /data/dataset58b_with_wrong_CRLF_before-1.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/dataset58b_with_wrong_CRLF_before-1.uff -------------------------------------------------------------------------------- /data/dataset_milestone_in_header.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/dataset_milestone_in_header.uff -------------------------------------------------------------------------------- /data/groups_test.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/groups_test.uff -------------------------------------------------------------------------------- /data/heat_engine_housing.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/heat_engine_housing.uff -------------------------------------------------------------------------------- /data/meas_point_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/meas_point_1.txt -------------------------------------------------------------------------------- /data/meas_point_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/meas_point_2.txt -------------------------------------------------------------------------------- /data/meas_point_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/meas_point_3.txt -------------------------------------------------------------------------------- /data/mesh_Oros-modal_uff15_uff2412.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/mesh_Oros-modal_uff15_uff2412.uff -------------------------------------------------------------------------------- /data/mesh_set2412_to_convert.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/mesh_set2412_to_convert.uff -------------------------------------------------------------------------------- /data/mesh_test_uff2412_mixed.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/mesh_test_uff2412_mixed.uff -------------------------------------------------------------------------------- /data/no_spacing2_UFF58_ascii.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/no_spacing2_UFF58_ascii.uff -------------------------------------------------------------------------------- /data/non_ascii_header.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/non_ascii_header.uff -------------------------------------------------------------------------------- /data/sample_dataset58_psd.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/sample_dataset58_psd.uff -------------------------------------------------------------------------------- /data/simcenter_exported_result.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/simcenter_exported_result.uff -------------------------------------------------------------------------------- /data/time-history-not-all-columns-filled.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/time-history-not-all-columns-filled.uff -------------------------------------------------------------------------------- /data/uff55 sample_test record10.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/uff55 sample_test record10.uff -------------------------------------------------------------------------------- /data/uff55_translation.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/uff55_translation.uff -------------------------------------------------------------------------------- /data/uff55_translation_rotation.uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/data/uff55_translation_rotation.uff -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/Supported_datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/source/Supported_datasets.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/showcase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/source/showcase.rst -------------------------------------------------------------------------------- /docs/source/the_uff_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/docs/source/the_uff_class.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyuff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/__init__.py -------------------------------------------------------------------------------- /pyuff/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/__init__.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_15.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_151.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_164.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_18.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2411.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2411.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2412.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2414.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2414.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2420.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2429.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_2467.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_2467.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_55.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_58.py -------------------------------------------------------------------------------- /pyuff/datasets/dataset_82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/datasets/dataset_82.py -------------------------------------------------------------------------------- /pyuff/pyuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/pyuff.py -------------------------------------------------------------------------------- /pyuff/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff/tools.py -------------------------------------------------------------------------------- /pyuff_Showcase.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/pyuff_Showcase.ipynb -------------------------------------------------------------------------------- /readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/readthedocs.yaml -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_15.py -------------------------------------------------------------------------------- /tests/test_151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_151.py -------------------------------------------------------------------------------- /tests/test_164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_164.py -------------------------------------------------------------------------------- /tests/test_2411.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2411.py -------------------------------------------------------------------------------- /tests/test_2412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2412.py -------------------------------------------------------------------------------- /tests/test_2414.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2414.py -------------------------------------------------------------------------------- /tests/test_2420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2420.py -------------------------------------------------------------------------------- /tests/test_2429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2429.py -------------------------------------------------------------------------------- /tests/test_2467.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_2467.py -------------------------------------------------------------------------------- /tests/test_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_55.py -------------------------------------------------------------------------------- /tests/test_58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_58.py -------------------------------------------------------------------------------- /tests/test_82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_82.py -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_convert_2412_to_82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladisk/pyuff/HEAD/tests/test_convert_2412_to_82.py --------------------------------------------------------------------------------