├── .gitignore ├── LICENSE.txt ├── README.md ├── mechpy.ipynb ├── mechpy ├── __init__.py ├── composites.py ├── design.py ├── dynamics.py ├── fem.py ├── math.py ├── statics.py ├── units.bat └── units.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/README.md -------------------------------------------------------------------------------- /mechpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy.ipynb -------------------------------------------------------------------------------- /mechpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/__init__.py -------------------------------------------------------------------------------- /mechpy/composites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/composites.py -------------------------------------------------------------------------------- /mechpy/design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/design.py -------------------------------------------------------------------------------- /mechpy/dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/dynamics.py -------------------------------------------------------------------------------- /mechpy/fem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/fem.py -------------------------------------------------------------------------------- /mechpy/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/math.py -------------------------------------------------------------------------------- /mechpy/statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/statics.py -------------------------------------------------------------------------------- /mechpy/units.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/units.bat -------------------------------------------------------------------------------- /mechpy/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/mechpy/units.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osule/mechpy/HEAD/setup.py --------------------------------------------------------------------------------