├── .gitignore ├── LICENSE ├── README.md ├── img └── spectrum_pcolor.png ├── setup.py ├── tests ├── test_benchmark.py └── test_tmm.py └── vtmm ├── __init__.py ├── const.py ├── fresnel.py └── tmm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/README.md -------------------------------------------------------------------------------- /img/spectrum_pcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/img/spectrum_pcolor.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/tests/test_benchmark.py -------------------------------------------------------------------------------- /tests/test_tmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/tests/test_tmm.py -------------------------------------------------------------------------------- /vtmm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/vtmm/__init__.py -------------------------------------------------------------------------------- /vtmm/const.py: -------------------------------------------------------------------------------- 1 | 2 | C0 = 299792458 # m/s -------------------------------------------------------------------------------- /vtmm/fresnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/vtmm/fresnel.py -------------------------------------------------------------------------------- /vtmm/tmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancompute/vtmm/HEAD/vtmm/tmm.py --------------------------------------------------------------------------------