├── LICENSE ├── README.md ├── sapy.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── not-zip-safe ├── requires.txt └── top_level.txt ├── sapy ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── displmethod.cpython-34.pyc │ ├── element.cpython-34.pyc │ ├── elementmatrices.cpython-34.pyc │ ├── globalmatrices.cpython-34.pyc │ ├── gmsh.cpython-34.pyc │ ├── index.cpython-34.pyc │ ├── kinematics.cpython-34.pyc │ ├── load.cpython-34.pyc │ ├── localize.cpython-34.pyc │ ├── model.cpython-34.pyc │ ├── plotter.cpython-34.pyc │ ├── plotter2d.cpython-34.pyc │ ├── plotter3d.cpython-34.pyc │ ├── properties.cpython-34.pyc │ ├── solver.cpython-34.pyc │ ├── stiffness.cpython-34.pyc │ └── structure.cpython-34.pyc ├── displmethod.py ├── element.py ├── gmsh.py ├── index.py ├── kinematics.py ├── load.py ├── plotter.py ├── stiffness.py └── structure.py ├── setup.py └── test ├── __init__.py ├── ex1.py ├── ex2.py ├── ex3.py ├── patch.geo ├── patch2.geo └── patch3.geo /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sapy 2 | A structural analysis program in python 3 | -------------------------------------------------------------------------------- /sapy.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy.egg-info/PKG-INFO -------------------------------------------------------------------------------- /sapy.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /sapy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sapy.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sapy.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | networkx 4 | scipy 5 | -------------------------------------------------------------------------------- /sapy.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sapy 2 | -------------------------------------------------------------------------------- /sapy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapy/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/displmethod.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/displmethod.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/element.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/element.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/elementmatrices.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/elementmatrices.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/globalmatrices.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/globalmatrices.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/gmsh.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/gmsh.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/kinematics.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/kinematics.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/load.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/load.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/localize.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/localize.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/model.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/model.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/plotter.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/plotter.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/plotter2d.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/plotter2d.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/plotter3d.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/plotter3d.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/properties.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/properties.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/solver.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/solver.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/stiffness.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/stiffness.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/__pycache__/structure.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/__pycache__/structure.cpython-34.pyc -------------------------------------------------------------------------------- /sapy/displmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/displmethod.py -------------------------------------------------------------------------------- /sapy/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/element.py -------------------------------------------------------------------------------- /sapy/gmsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/gmsh.py -------------------------------------------------------------------------------- /sapy/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/index.py -------------------------------------------------------------------------------- /sapy/kinematics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/kinematics.py -------------------------------------------------------------------------------- /sapy/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/load.py -------------------------------------------------------------------------------- /sapy/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/plotter.py -------------------------------------------------------------------------------- /sapy/stiffness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/stiffness.py -------------------------------------------------------------------------------- /sapy/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/sapy/structure.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/ex1.py -------------------------------------------------------------------------------- /test/ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/ex2.py -------------------------------------------------------------------------------- /test/ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/ex3.py -------------------------------------------------------------------------------- /test/patch.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/patch.geo -------------------------------------------------------------------------------- /test/patch2.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/patch2.geo -------------------------------------------------------------------------------- /test/patch3.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasseralkmim/sapy/HEAD/test/patch3.geo --------------------------------------------------------------------------------