├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitignore ├── docs ├── Documentation.md ├── preprint-arXiv-2008.11770.pdf └── preprint-arXiv-2010.00162.pdf ├── obj └── .gitignore ├── setup.py ├── sim_class.py └── src ├── main.f90 ├── mod_bkgrd.f90 ├── mod_cheb.f90 ├── mod_cheb_fftw.f90 ├── mod_field.f90 ├── mod_fields_list.f90 ├── mod_ghp.f90 ├── mod_initial_data.f90 ├── mod_io.f90 ├── mod_metric_recon.f90 ├── mod_params.f90 ├── mod_prec.f90 ├── mod_scd_order_source.f90 ├── mod_swal.f90 ├── mod_teuk.f90 ├── mod_write_level.f90 └── tables ├── .gitignore ├── tables_cheb.py ├── tables_legendre.py └── tables_swal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/docs/Documentation.md -------------------------------------------------------------------------------- /docs/preprint-arXiv-2008.11770.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/docs/preprint-arXiv-2008.11770.pdf -------------------------------------------------------------------------------- /docs/preprint-arXiv-2010.00162.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/docs/preprint-arXiv-2010.00162.pdf -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.mod 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/setup.py -------------------------------------------------------------------------------- /sim_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/sim_class.py -------------------------------------------------------------------------------- /src/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/main.f90 -------------------------------------------------------------------------------- /src/mod_bkgrd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_bkgrd.f90 -------------------------------------------------------------------------------- /src/mod_cheb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_cheb.f90 -------------------------------------------------------------------------------- /src/mod_cheb_fftw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_cheb_fftw.f90 -------------------------------------------------------------------------------- /src/mod_field.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_field.f90 -------------------------------------------------------------------------------- /src/mod_fields_list.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_fields_list.f90 -------------------------------------------------------------------------------- /src/mod_ghp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_ghp.f90 -------------------------------------------------------------------------------- /src/mod_initial_data.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_initial_data.f90 -------------------------------------------------------------------------------- /src/mod_io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_io.f90 -------------------------------------------------------------------------------- /src/mod_metric_recon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_metric_recon.f90 -------------------------------------------------------------------------------- /src/mod_params.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_params.f90 -------------------------------------------------------------------------------- /src/mod_prec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_prec.f90 -------------------------------------------------------------------------------- /src/mod_scd_order_source.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_scd_order_source.f90 -------------------------------------------------------------------------------- /src/mod_swal.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_swal.f90 -------------------------------------------------------------------------------- /src/mod_teuk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_teuk.f90 -------------------------------------------------------------------------------- /src/mod_write_level.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/mod_write_level.f90 -------------------------------------------------------------------------------- /src/tables/.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__* 2 | -------------------------------------------------------------------------------- /src/tables/tables_cheb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/tables/tables_cheb.py -------------------------------------------------------------------------------- /src/tables/tables_legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/tables/tables_legendre.py -------------------------------------------------------------------------------- /src/tables/tables_swal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLRipley314/teuk-fortran-2020/HEAD/src/tables/tables_swal.py --------------------------------------------------------------------------------