├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.rst ├── doc ├── .gitignore ├── Makefile ├── abaqus.rst ├── cfprop.py ├── lamprop-gui.png ├── lamprop-manual.pdf ├── lamprop-manual.tex ├── lman.bib ├── rtf.rst └── symmetric-laminates.rst ├── install.py ├── pylama.ini ├── pytest.ini ├── reference ├── ECCM16_EGiner.pdf ├── FEA_composites_2016.pdf └── halpin-tsai-equations.pdf ├── src ├── console.py ├── gui.py └── lp │ ├── __init__.py │ ├── core.py │ ├── generic.py │ ├── html.py │ ├── latex.py │ ├── matrix.py │ ├── parser.py │ ├── text.py │ ├── types.py │ └── version.py ├── test ├── CD0200.lam ├── UD-HS.lam ├── atlac430.lam ├── atlac590.lam ├── epikote04908.lam ├── generic.lam ├── hyer.lam ├── monoclinic.lam ├── qi.lam ├── reference │ └── reference.zip ├── test_core.py ├── test_matrix.py ├── test_output.py ├── test_parser.py ├── twill245.lam └── unknown.lam └── tools ├── convert-lamprop.py ├── create_material_db.py ├── find-log.sh └── lamprop.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/README.rst -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/abaqus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/abaqus.rst -------------------------------------------------------------------------------- /doc/cfprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/cfprop.py -------------------------------------------------------------------------------- /doc/lamprop-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/lamprop-gui.png -------------------------------------------------------------------------------- /doc/lamprop-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/lamprop-manual.pdf -------------------------------------------------------------------------------- /doc/lamprop-manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/lamprop-manual.tex -------------------------------------------------------------------------------- /doc/lman.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/lman.bib -------------------------------------------------------------------------------- /doc/rtf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/rtf.rst -------------------------------------------------------------------------------- /doc/symmetric-laminates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/doc/symmetric-laminates.rst -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/install.py -------------------------------------------------------------------------------- /pylama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/pylama.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = src 3 | -------------------------------------------------------------------------------- /reference/ECCM16_EGiner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/reference/ECCM16_EGiner.pdf -------------------------------------------------------------------------------- /reference/FEA_composites_2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/reference/FEA_composites_2016.pdf -------------------------------------------------------------------------------- /reference/halpin-tsai-equations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/reference/halpin-tsai-equations.pdf -------------------------------------------------------------------------------- /src/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/console.py -------------------------------------------------------------------------------- /src/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/gui.py -------------------------------------------------------------------------------- /src/lp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/__init__.py -------------------------------------------------------------------------------- /src/lp/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/core.py -------------------------------------------------------------------------------- /src/lp/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/generic.py -------------------------------------------------------------------------------- /src/lp/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/html.py -------------------------------------------------------------------------------- /src/lp/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/latex.py -------------------------------------------------------------------------------- /src/lp/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/matrix.py -------------------------------------------------------------------------------- /src/lp/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/parser.py -------------------------------------------------------------------------------- /src/lp/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/text.py -------------------------------------------------------------------------------- /src/lp/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/types.py -------------------------------------------------------------------------------- /src/lp/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/src/lp/version.py -------------------------------------------------------------------------------- /test/CD0200.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/CD0200.lam -------------------------------------------------------------------------------- /test/UD-HS.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/UD-HS.lam -------------------------------------------------------------------------------- /test/atlac430.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/atlac430.lam -------------------------------------------------------------------------------- /test/atlac590.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/atlac590.lam -------------------------------------------------------------------------------- /test/epikote04908.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/epikote04908.lam -------------------------------------------------------------------------------- /test/generic.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/generic.lam -------------------------------------------------------------------------------- /test/hyer.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/hyer.lam -------------------------------------------------------------------------------- /test/monoclinic.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/monoclinic.lam -------------------------------------------------------------------------------- /test/qi.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/qi.lam -------------------------------------------------------------------------------- /test/reference/reference.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/reference/reference.zip -------------------------------------------------------------------------------- /test/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/test_core.py -------------------------------------------------------------------------------- /test/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/test_matrix.py -------------------------------------------------------------------------------- /test/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/test_output.py -------------------------------------------------------------------------------- /test/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/test_parser.py -------------------------------------------------------------------------------- /test/twill245.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/twill245.lam -------------------------------------------------------------------------------- /test/unknown.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/test/unknown.lam -------------------------------------------------------------------------------- /tools/convert-lamprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/tools/convert-lamprop.py -------------------------------------------------------------------------------- /tools/create_material_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/tools/create_material_db.py -------------------------------------------------------------------------------- /tools/find-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/tools/find-log.sh -------------------------------------------------------------------------------- /tools/lamprop.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsmith-nl/lamprop/HEAD/tools/lamprop.vim --------------------------------------------------------------------------------