├── .buildinfo ├── .gitattributes ├── .gitignore ├── .nojekyll ├── .travis.yml ├── CONTRIBUTING.rst ├── LICENSE.txt ├── Makefile ├── create_distro.rst ├── dist └── vibration_toolbox-0.6.10-py35-none-any.whl ├── docs ├── Installing_Python.rst ├── Makefile ├── conf.py ├── contributors.rst ├── downloads.rst ├── examples │ ├── Beats.ipynb │ ├── Power spectrum density of data.ipynb │ ├── index.rst │ ├── requirements.txt │ ├── system_damp.png │ ├── vibesystem_notebook-damper.ipynb │ ├── vtb1_1.ipynb │ ├── vtoolbox Demos.ipynb │ └── working_notebook.ipynb ├── index.rst ├── installation.rst ├── readme.rst ├── reference │ ├── continuous.rst │ ├── ema.rst │ ├── index.rst │ ├── mdof.rst │ ├── sdof.rst │ └── vibe_system.rst └── tutorial │ ├── Playground.ipynb │ ├── continuous_systems_notebook.ipynb │ ├── index.rst │ ├── mdof_notebook.ipynb │ ├── requirements.txt │ ├── sdof_characteristic_responses.ipynb │ ├── sdof_notebook.ipynb │ ├── system.png │ └── vibesystem_notebook.ipynb ├── pytest.ini ├── readme.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── vibration_toolbox ├── __init__.py ├── conftest.py ├── continuous_systems.py ├── data ├── case1.mat ├── case2.mat └── frf_data1.mat ├── ema.py ├── mdof.py ├── readme.rst ├── sdof.py ├── tests ├── test_continuous.py ├── test_ema.py ├── test_mdof.py ├── test_sdof.py └── test_vibesystem.py └── vibesystem.py /.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/.buildinfo -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/Makefile -------------------------------------------------------------------------------- /create_distro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/create_distro.rst -------------------------------------------------------------------------------- /dist/vibration_toolbox-0.6.10-py35-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/dist/vibration_toolbox-0.6.10-py35-none-any.whl -------------------------------------------------------------------------------- /docs/Installing_Python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/Installing_Python.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/contributors.rst -------------------------------------------------------------------------------- /docs/downloads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/downloads.rst -------------------------------------------------------------------------------- /docs/examples/Beats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/Beats.ipynb -------------------------------------------------------------------------------- /docs/examples/Power spectrum density of data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/Power spectrum density of data.ipynb -------------------------------------------------------------------------------- /docs/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/index.rst -------------------------------------------------------------------------------- /docs/examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/requirements.txt -------------------------------------------------------------------------------- /docs/examples/system_damp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/system_damp.png -------------------------------------------------------------------------------- /docs/examples/vibesystem_notebook-damper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/vibesystem_notebook-damper.ipynb -------------------------------------------------------------------------------- /docs/examples/vtb1_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/vtb1_1.ipynb -------------------------------------------------------------------------------- /docs/examples/vtoolbox Demos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/vtoolbox Demos.ipynb -------------------------------------------------------------------------------- /docs/examples/working_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/examples/working_notebook.ipynb -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/readme.rst -------------------------------------------------------------------------------- /docs/reference/continuous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/continuous.rst -------------------------------------------------------------------------------- /docs/reference/ema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/ema.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/mdof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/mdof.rst -------------------------------------------------------------------------------- /docs/reference/sdof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/sdof.rst -------------------------------------------------------------------------------- /docs/reference/vibe_system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/reference/vibe_system.rst -------------------------------------------------------------------------------- /docs/tutorial/Playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/Playground.ipynb -------------------------------------------------------------------------------- /docs/tutorial/continuous_systems_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/continuous_systems_notebook.ipynb -------------------------------------------------------------------------------- /docs/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/index.rst -------------------------------------------------------------------------------- /docs/tutorial/mdof_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/mdof_notebook.ipynb -------------------------------------------------------------------------------- /docs/tutorial/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/requirements.txt -------------------------------------------------------------------------------- /docs/tutorial/sdof_characteristic_responses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/sdof_characteristic_responses.ipynb -------------------------------------------------------------------------------- /docs/tutorial/sdof_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/sdof_notebook.ipynb -------------------------------------------------------------------------------- /docs/tutorial/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/system.png -------------------------------------------------------------------------------- /docs/tutorial/vibesystem_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/docs/tutorial/vibesystem_notebook.ipynb -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/readme.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/setup.py -------------------------------------------------------------------------------- /vibration_toolbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/__init__.py -------------------------------------------------------------------------------- /vibration_toolbox/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/conftest.py -------------------------------------------------------------------------------- /vibration_toolbox/continuous_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/continuous_systems.py -------------------------------------------------------------------------------- /vibration_toolbox/data/case1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/data/case1.mat -------------------------------------------------------------------------------- /vibration_toolbox/data/case2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/data/case2.mat -------------------------------------------------------------------------------- /vibration_toolbox/data/frf_data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/data/frf_data1.mat -------------------------------------------------------------------------------- /vibration_toolbox/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/ema.py -------------------------------------------------------------------------------- /vibration_toolbox/mdof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/mdof.py -------------------------------------------------------------------------------- /vibration_toolbox/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/readme.rst -------------------------------------------------------------------------------- /vibration_toolbox/sdof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/sdof.py -------------------------------------------------------------------------------- /vibration_toolbox/tests/test_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/tests/test_continuous.py -------------------------------------------------------------------------------- /vibration_toolbox/tests/test_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/tests/test_ema.py -------------------------------------------------------------------------------- /vibration_toolbox/tests/test_mdof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/tests/test_mdof.py -------------------------------------------------------------------------------- /vibration_toolbox/tests/test_sdof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/tests/test_sdof.py -------------------------------------------------------------------------------- /vibration_toolbox/tests/test_vibesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/tests/test_vibesystem.py -------------------------------------------------------------------------------- /vibration_toolbox/vibesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibrationtoolbox/vibration_toolbox/HEAD/vibration_toolbox/vibesystem.py --------------------------------------------------------------------------------