├── .gitignore ├── Maxwell_equations_1D.png ├── README.md ├── precision_test_amplitude_transmission_dielectric_film.py ├── simulator ├── __init__.py ├── boundaries │ ├── __init__.py │ ├── absorbing_boundaries.py │ ├── perfect_conductor_boundaries.py │ └── periodic_boundaries.py ├── current_sources.py ├── detector.py ├── numerical_flux.py ├── plotting.py ├── polynomials │ ├── gll.py │ ├── jacobi.py │ ├── lagrange.py │ ├── lagrange1st.py │ ├── legendre.py │ └── vandermonde.py ├── simulation_1D.py ├── time_integrators │ ├── __init__.py │ ├── euler.py │ ├── runge_kutta_2order.py │ └── runge_kutta_4order_low_storage.py └── util │ ├── LSERK4_coefficients.py │ └── constants.py ├── test_absorbing_media.py ├── test_current_sources.py ├── test_dielectric_film.py ├── test_perfect_conductor_boundaries.py └── test_spectral_transmittance_thin_film_interference.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/.gitignore -------------------------------------------------------------------------------- /Maxwell_equations_1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/Maxwell_equations_1D.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/README.md -------------------------------------------------------------------------------- /precision_test_amplitude_transmission_dielectric_film.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/precision_test_amplitude_transmission_dielectric_film.py -------------------------------------------------------------------------------- /simulator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/__init__.py -------------------------------------------------------------------------------- /simulator/boundaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/boundaries/__init__.py -------------------------------------------------------------------------------- /simulator/boundaries/absorbing_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/boundaries/absorbing_boundaries.py -------------------------------------------------------------------------------- /simulator/boundaries/perfect_conductor_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/boundaries/perfect_conductor_boundaries.py -------------------------------------------------------------------------------- /simulator/boundaries/periodic_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/boundaries/periodic_boundaries.py -------------------------------------------------------------------------------- /simulator/current_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/current_sources.py -------------------------------------------------------------------------------- /simulator/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/detector.py -------------------------------------------------------------------------------- /simulator/numerical_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/numerical_flux.py -------------------------------------------------------------------------------- /simulator/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/plotting.py -------------------------------------------------------------------------------- /simulator/polynomials/gll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/gll.py -------------------------------------------------------------------------------- /simulator/polynomials/jacobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/jacobi.py -------------------------------------------------------------------------------- /simulator/polynomials/lagrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/lagrange.py -------------------------------------------------------------------------------- /simulator/polynomials/lagrange1st.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/lagrange1st.py -------------------------------------------------------------------------------- /simulator/polynomials/legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/legendre.py -------------------------------------------------------------------------------- /simulator/polynomials/vandermonde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/polynomials/vandermonde.py -------------------------------------------------------------------------------- /simulator/simulation_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/simulation_1D.py -------------------------------------------------------------------------------- /simulator/time_integrators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/time_integrators/__init__.py -------------------------------------------------------------------------------- /simulator/time_integrators/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/time_integrators/euler.py -------------------------------------------------------------------------------- /simulator/time_integrators/runge_kutta_2order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/time_integrators/runge_kutta_2order.py -------------------------------------------------------------------------------- /simulator/time_integrators/runge_kutta_4order_low_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/time_integrators/runge_kutta_4order_low_storage.py -------------------------------------------------------------------------------- /simulator/util/LSERK4_coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/util/LSERK4_coefficients.py -------------------------------------------------------------------------------- /simulator/util/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/simulator/util/constants.py -------------------------------------------------------------------------------- /test_absorbing_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/test_absorbing_media.py -------------------------------------------------------------------------------- /test_current_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/test_current_sources.py -------------------------------------------------------------------------------- /test_dielectric_film.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/test_dielectric_film.py -------------------------------------------------------------------------------- /test_perfect_conductor_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/test_perfect_conductor_boundaries.py -------------------------------------------------------------------------------- /test_spectral_transmittance_thin_film_interference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-fuente/DGFEM-Maxwell-Equations/HEAD/test_spectral_transmittance_thin_film_interference.py --------------------------------------------------------------------------------