├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.md ├── make.bat ├── notebooks │ ├── mechanics.ipynb │ └── orientation.ipynb └── requirements.txt ├── pyproject.toml ├── src └── fiberpy │ ├── __about__.py │ ├── __init__.py │ ├── closure.py │ ├── interface.py │ ├── mechanics.py │ ├── orientation.py │ └── tensor.py └── test ├── test_closure.py ├── test_mechanics.py ├── test_orientation.py └── test_tensor.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/notebooks/mechanics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/notebooks/mechanics.ipynb -------------------------------------------------------------------------------- /docs/notebooks/orientation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/docs/notebooks/orientation.ipynb -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst_nb 2 | sphinx_book_theme 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fiberpy/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/__about__.py -------------------------------------------------------------------------------- /src/fiberpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/__init__.py -------------------------------------------------------------------------------- /src/fiberpy/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/closure.py -------------------------------------------------------------------------------- /src/fiberpy/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/interface.py -------------------------------------------------------------------------------- /src/fiberpy/mechanics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/mechanics.py -------------------------------------------------------------------------------- /src/fiberpy/orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/orientation.py -------------------------------------------------------------------------------- /src/fiberpy/tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/src/fiberpy/tensor.py -------------------------------------------------------------------------------- /test/test_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/test/test_closure.py -------------------------------------------------------------------------------- /test/test_mechanics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/test/test_mechanics.py -------------------------------------------------------------------------------- /test/test_orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/test/test_orientation.py -------------------------------------------------------------------------------- /test/test_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyikillua/fiberpy/HEAD/test/test_tensor.py --------------------------------------------------------------------------------