├── .github ├── scripts │ ├── add_alps_papers_to_ads_library.py │ └── print_bib_markdown.py └── workflows │ ├── doc.yml │ ├── tests.yml │ └── update_ads_library.yml ├── .gitignore ├── ALPS_logo.png ├── CODE_OF_CONDUCT.md ├── INSTALL.md ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── compile ├── config.h.in ├── configure ├── configure.ac ├── distribution ├── .gitignore ├── Makefile.am ├── Makefile.in ├── README ├── distribution_analyt.f90 ├── generate_distribution.f90 ├── test_ICW_dist.in ├── test_analytical_dist.in ├── test_bimax_dist.in ├── test_electron_mode_dist.in ├── test_kpar_fast_dist.in ├── test_kperp_dist.in ├── test_map_dist.in └── test_relativistic_dist.in ├── favicon.ico ├── ford_project.md ├── input.md ├── install-sh ├── interpolation ├── .gitignore ├── Makefile.am ├── Makefile.in ├── README ├── interpolation.f90 ├── test_interp.in └── test_interp_coarse.array ├── missing ├── output.md ├── practices.md ├── qrcode_alps_github.png ├── solution ├── .gitignore └── README ├── src ├── .gitignore ├── ALPS.f90 ├── ALPS_NHDS.f90 ├── ALPS_analyt.f90 ├── ALPS_com.f90 ├── ALPS_fns.f90 ├── ALPS_fns_rel.f90 ├── ALPS_io.f90 ├── ALPS_var.f90 ├── Makefile.am ├── Makefile.in └── README ├── tests ├── .gitignore ├── run_test.sh ├── run_test_suite.sh ├── test_ICW.in ├── test_analytical.in ├── test_bimax.in ├── test_chebyshev.in ├── test_cold_plasma.in ├── test_double_scan.in ├── test_electron_mode.in ├── test_kpar_fast.eigen_kpara_1.root_1 ├── test_kpar_fast.error ├── test_kpar_fast.heat_kpara_1.root_1 ├── test_kpar_fast.heat_mech_kpara_1.root_1 ├── test_kpar_fast.in ├── test_kpar_fast.log ├── test_kpar_fast.out ├── test_kpar_fast.py ├── test_kpar_fast.roots ├── test_kpar_fast.scan_kpara_1.root_1 ├── test_kperp.in ├── test_kperp_alpha.in ├── test_map.in └── test_relativistic.in └── tutorial.md /.github/scripts/add_alps_papers_to_ads_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.github/scripts/add_alps_papers_to_ads_library.py -------------------------------------------------------------------------------- /.github/scripts/print_bib_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.github/scripts/print_bib_markdown.py -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/update_ads_library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.github/workflows/update_ads_library.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/.gitignore -------------------------------------------------------------------------------- /ALPS_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/ALPS_logo.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/compile -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/configure.ac -------------------------------------------------------------------------------- /distribution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/.gitignore -------------------------------------------------------------------------------- /distribution/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/Makefile.am -------------------------------------------------------------------------------- /distribution/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/Makefile.in -------------------------------------------------------------------------------- /distribution/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/README -------------------------------------------------------------------------------- /distribution/distribution_analyt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/distribution_analyt.f90 -------------------------------------------------------------------------------- /distribution/generate_distribution.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/generate_distribution.f90 -------------------------------------------------------------------------------- /distribution/test_ICW_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_ICW_dist.in -------------------------------------------------------------------------------- /distribution/test_analytical_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_analytical_dist.in -------------------------------------------------------------------------------- /distribution/test_bimax_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_bimax_dist.in -------------------------------------------------------------------------------- /distribution/test_electron_mode_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_electron_mode_dist.in -------------------------------------------------------------------------------- /distribution/test_kpar_fast_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_kpar_fast_dist.in -------------------------------------------------------------------------------- /distribution/test_kperp_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_kperp_dist.in -------------------------------------------------------------------------------- /distribution/test_map_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_map_dist.in -------------------------------------------------------------------------------- /distribution/test_relativistic_dist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/distribution/test_relativistic_dist.in -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/favicon.ico -------------------------------------------------------------------------------- /ford_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/ford_project.md -------------------------------------------------------------------------------- /input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/input.md -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/install-sh -------------------------------------------------------------------------------- /interpolation/.gitignore: -------------------------------------------------------------------------------- 1 | *.array 2 | interpolation -------------------------------------------------------------------------------- /interpolation/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/Makefile.am -------------------------------------------------------------------------------- /interpolation/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/Makefile.in -------------------------------------------------------------------------------- /interpolation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/README -------------------------------------------------------------------------------- /interpolation/interpolation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/interpolation.f90 -------------------------------------------------------------------------------- /interpolation/test_interp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/test_interp.in -------------------------------------------------------------------------------- /interpolation/test_interp_coarse.array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/interpolation/test_interp_coarse.array -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/missing -------------------------------------------------------------------------------- /output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/output.md -------------------------------------------------------------------------------- /practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/practices.md -------------------------------------------------------------------------------- /qrcode_alps_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/qrcode_alps_github.png -------------------------------------------------------------------------------- /solution/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README 4 | -------------------------------------------------------------------------------- /solution/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/solution/README -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | ALPS 2 | TAGS -------------------------------------------------------------------------------- /src/ALPS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS.f90 -------------------------------------------------------------------------------- /src/ALPS_NHDS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_NHDS.f90 -------------------------------------------------------------------------------- /src/ALPS_analyt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_analyt.f90 -------------------------------------------------------------------------------- /src/ALPS_com.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_com.f90 -------------------------------------------------------------------------------- /src/ALPS_fns.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_fns.f90 -------------------------------------------------------------------------------- /src/ALPS_fns_rel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_fns_rel.f90 -------------------------------------------------------------------------------- /src/ALPS_io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_io.f90 -------------------------------------------------------------------------------- /src/ALPS_var.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/ALPS_var.f90 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/src/README -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | !test*.in -------------------------------------------------------------------------------- /tests/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/run_test.sh -------------------------------------------------------------------------------- /tests/run_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/run_test_suite.sh -------------------------------------------------------------------------------- /tests/test_ICW.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_ICW.in -------------------------------------------------------------------------------- /tests/test_analytical.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_analytical.in -------------------------------------------------------------------------------- /tests/test_bimax.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_bimax.in -------------------------------------------------------------------------------- /tests/test_chebyshev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_chebyshev.in -------------------------------------------------------------------------------- /tests/test_cold_plasma.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_cold_plasma.in -------------------------------------------------------------------------------- /tests/test_double_scan.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_double_scan.in -------------------------------------------------------------------------------- /tests/test_electron_mode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_electron_mode.in -------------------------------------------------------------------------------- /tests/test_kpar_fast.eigen_kpara_1.root_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.eigen_kpara_1.root_1 -------------------------------------------------------------------------------- /tests/test_kpar_fast.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.error -------------------------------------------------------------------------------- /tests/test_kpar_fast.heat_kpara_1.root_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.heat_kpara_1.root_1 -------------------------------------------------------------------------------- /tests/test_kpar_fast.heat_mech_kpara_1.root_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.heat_mech_kpara_1.root_1 -------------------------------------------------------------------------------- /tests/test_kpar_fast.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.in -------------------------------------------------------------------------------- /tests/test_kpar_fast.log: -------------------------------------------------------------------------------- 1 | Run completed without fatal error. 2 | -------------------------------------------------------------------------------- /tests/test_kpar_fast.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.out -------------------------------------------------------------------------------- /tests/test_kpar_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.py -------------------------------------------------------------------------------- /tests/test_kpar_fast.roots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.roots -------------------------------------------------------------------------------- /tests/test_kpar_fast.scan_kpara_1.root_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kpar_fast.scan_kpara_1.root_1 -------------------------------------------------------------------------------- /tests/test_kperp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kperp.in -------------------------------------------------------------------------------- /tests/test_kperp_alpha.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_kperp_alpha.in -------------------------------------------------------------------------------- /tests/test_map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_map.in -------------------------------------------------------------------------------- /tests/test_relativistic.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tests/test_relativistic.in -------------------------------------------------------------------------------- /tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielver02/ALPS/HEAD/tutorial.md --------------------------------------------------------------------------------