├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── mapy ├── __init__.py ├── constants.py ├── fem.py ├── model │ ├── __init__.py │ ├── constraints │ │ └── __init__.py │ ├── coords.py │ ├── elements │ │ ├── Thumbs.db │ │ ├── __init__.py │ │ ├── ast6 │ │ │ └── ast6.py │ │ ├── derivation_rotation_matrix.py │ │ ├── elem1d.py │ │ ├── elem2d.py │ │ ├── elem3d.py │ │ ├── elembar.py │ │ ├── elemquad4.py │ │ ├── elemrod.py │ │ ├── elemtria │ │ │ ├── __init__.py │ │ │ ├── cst_equations.py │ │ │ └── elemtria3.py │ │ └── gauss_legendre.py │ ├── grids.py │ ├── loads │ │ ├── __init__.py │ │ ├── loads.py │ │ └── subcases.py │ ├── materials │ │ ├── __init__.py │ │ ├── matiso.py │ │ └── matlamina.py │ ├── properties │ │ ├── __init__.py │ │ ├── composite │ │ │ ├── __init__.py │ │ │ ├── lamina.py │ │ │ ├── laminate.py │ │ │ └── pcomp.py │ │ ├── prop1d.py │ │ └── prop2d.py │ └── rebuild.py ├── modgen │ ├── __init__.py │ └── cylinder │ │ └── __init__.py ├── mplutils │ ├── __init__.py │ ├── _big.py │ ├── _small.py │ ├── example │ │ ├── Thumbs.db │ │ ├── figimperP Pc_000.png │ │ ├── input.txt │ │ └── plot.py │ ├── input_from_txt.py │ ├── matplotlibrc │ └── plot_defaults.py ├── reader │ ├── __init__.py │ ├── cardtranslator.py │ └── input_reader.py ├── renderer │ └── __init__.py ├── solver │ ├── __init__.py │ └── solver.py ├── sympytools │ ├── __init__.py │ ├── denominator.py │ ├── doperator.py │ ├── mathematica_printer.py │ ├── matrixtools.py │ ├── tests │ │ └── test_vdiff.py │ ├── voperator.py │ └── voperator2.py └── writer │ ├── __init__.py │ └── abaqus.py ├── setup.py └── tests ├── dummy_wing_metallic.bdf └── test_basics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/README.md -------------------------------------------------------------------------------- /mapy/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO 3 | """ 4 | -------------------------------------------------------------------------------- /mapy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/constants.py -------------------------------------------------------------------------------- /mapy/fem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/fem.py -------------------------------------------------------------------------------- /mapy/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/__init__.py -------------------------------------------------------------------------------- /mapy/model/constraints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/constraints/__init__.py -------------------------------------------------------------------------------- /mapy/model/coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/coords.py -------------------------------------------------------------------------------- /mapy/model/elements/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/Thumbs.db -------------------------------------------------------------------------------- /mapy/model/elements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/__init__.py -------------------------------------------------------------------------------- /mapy/model/elements/ast6/ast6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/ast6/ast6.py -------------------------------------------------------------------------------- /mapy/model/elements/derivation_rotation_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/derivation_rotation_matrix.py -------------------------------------------------------------------------------- /mapy/model/elements/elem1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elem1d.py -------------------------------------------------------------------------------- /mapy/model/elements/elem2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elem2d.py -------------------------------------------------------------------------------- /mapy/model/elements/elem3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elem3d.py -------------------------------------------------------------------------------- /mapy/model/elements/elembar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elembar.py -------------------------------------------------------------------------------- /mapy/model/elements/elemquad4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elemquad4.py -------------------------------------------------------------------------------- /mapy/model/elements/elemrod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elemrod.py -------------------------------------------------------------------------------- /mapy/model/elements/elemtria/__init__.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /mapy/model/elements/elemtria/cst_equations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elemtria/cst_equations.py -------------------------------------------------------------------------------- /mapy/model/elements/elemtria/elemtria3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/elemtria/elemtria3.py -------------------------------------------------------------------------------- /mapy/model/elements/gauss_legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/elements/gauss_legendre.py -------------------------------------------------------------------------------- /mapy/model/grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/grids.py -------------------------------------------------------------------------------- /mapy/model/loads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/loads/__init__.py -------------------------------------------------------------------------------- /mapy/model/loads/loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/loads/loads.py -------------------------------------------------------------------------------- /mapy/model/loads/subcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/loads/subcases.py -------------------------------------------------------------------------------- /mapy/model/materials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/materials/__init__.py -------------------------------------------------------------------------------- /mapy/model/materials/matiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/materials/matiso.py -------------------------------------------------------------------------------- /mapy/model/materials/matlamina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/materials/matlamina.py -------------------------------------------------------------------------------- /mapy/model/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/__init__.py -------------------------------------------------------------------------------- /mapy/model/properties/composite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/composite/__init__.py -------------------------------------------------------------------------------- /mapy/model/properties/composite/lamina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/composite/lamina.py -------------------------------------------------------------------------------- /mapy/model/properties/composite/laminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/composite/laminate.py -------------------------------------------------------------------------------- /mapy/model/properties/composite/pcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/composite/pcomp.py -------------------------------------------------------------------------------- /mapy/model/properties/prop1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/prop1d.py -------------------------------------------------------------------------------- /mapy/model/properties/prop2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/properties/prop2d.py -------------------------------------------------------------------------------- /mapy/model/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/model/rebuild.py -------------------------------------------------------------------------------- /mapy/modgen/__init__.py: -------------------------------------------------------------------------------- 1 | import cylinder 2 | -------------------------------------------------------------------------------- /mapy/modgen/cylinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapy/mplutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/__init__.py -------------------------------------------------------------------------------- /mapy/mplutils/_big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/_big.py -------------------------------------------------------------------------------- /mapy/mplutils/_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/_small.py -------------------------------------------------------------------------------- /mapy/mplutils/example/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/example/Thumbs.db -------------------------------------------------------------------------------- /mapy/mplutils/example/figimperP Pc_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/example/figimperP Pc_000.png -------------------------------------------------------------------------------- /mapy/mplutils/example/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/example/input.txt -------------------------------------------------------------------------------- /mapy/mplutils/example/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/example/plot.py -------------------------------------------------------------------------------- /mapy/mplutils/input_from_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/input_from_txt.py -------------------------------------------------------------------------------- /mapy/mplutils/matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/matplotlibrc -------------------------------------------------------------------------------- /mapy/mplutils/plot_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/mplutils/plot_defaults.py -------------------------------------------------------------------------------- /mapy/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/reader/__init__.py -------------------------------------------------------------------------------- /mapy/reader/cardtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/reader/cardtranslator.py -------------------------------------------------------------------------------- /mapy/reader/input_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/reader/input_reader.py -------------------------------------------------------------------------------- /mapy/renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/renderer/__init__.py -------------------------------------------------------------------------------- /mapy/solver/__init__.py: -------------------------------------------------------------------------------- 1 | from solver import * 2 | -------------------------------------------------------------------------------- /mapy/solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/solver/solver.py -------------------------------------------------------------------------------- /mapy/sympytools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/__init__.py -------------------------------------------------------------------------------- /mapy/sympytools/denominator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/denominator.py -------------------------------------------------------------------------------- /mapy/sympytools/doperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/doperator.py -------------------------------------------------------------------------------- /mapy/sympytools/mathematica_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/mathematica_printer.py -------------------------------------------------------------------------------- /mapy/sympytools/matrixtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/matrixtools.py -------------------------------------------------------------------------------- /mapy/sympytools/tests/test_vdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/tests/test_vdiff.py -------------------------------------------------------------------------------- /mapy/sympytools/voperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/voperator.py -------------------------------------------------------------------------------- /mapy/sympytools/voperator2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/sympytools/voperator2.py -------------------------------------------------------------------------------- /mapy/writer/__init__.py: -------------------------------------------------------------------------------- 1 | import abaqus 2 | -------------------------------------------------------------------------------- /mapy/writer/abaqus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/mapy/writer/abaqus.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/dummy_wing_metallic.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/tests/dummy_wing_metallic.bdf -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saullocastro/mapy/HEAD/tests/test_basics.py --------------------------------------------------------------------------------