├── .gitattributes ├── .github └── workflows │ ├── python-package.yml │ └── python-test.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITING.rst ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── doc ├── Makefile ├── make.bat └── source │ ├── changes.rst │ ├── conf.py │ ├── example_figures │ └── tracer_performace.png │ ├── index.rst │ ├── installing.rst │ ├── manual │ ├── numerical_methods.pdf │ └── source │ │ ├── Q.png │ │ ├── grid.jpg │ │ ├── grid3d.png │ │ ├── numerical-methods.tex │ │ └── refs.bib │ ├── numerical_method.rst │ ├── performance.rst │ ├── pfsspy.rst │ ├── project_status.rst │ └── synoptic_fits.rst ├── examples ├── README.txt ├── finding_data │ ├── README.rst │ ├── adapt_map_sequence.py │ └── plot_hmi.py ├── pfsspy_info │ ├── README.rst │ ├── plot_computation_grid.py │ └── tracer_performance.py ├── testing │ ├── README.rst │ ├── helpers.py │ ├── open_flux_harmonics.py │ ├── open_flux_nr.py │ ├── plot_error_map.py │ ├── plot_harmonic_comparison.py │ ├── plot_open_flux_harmonics.py │ ├── plot_open_flux_nr.py │ ├── plot_tracer_step_size.py │ ├── results │ │ ├── flines │ │ │ ├── dphis_1-1.csv │ │ │ ├── dphis_10.csv │ │ │ ├── dphis_11.csv │ │ │ ├── dphis_2-1.csv │ │ │ ├── dphis_2-2.csv │ │ │ ├── dphis_21.csv │ │ │ ├── dphis_22.csv │ │ │ ├── dphis_3-2.csv │ │ │ ├── dphis_3-3.csv │ │ │ ├── dphis_32.csv │ │ │ ├── dphis_33.csv │ │ │ ├── dthetas_1-1.csv │ │ │ ├── dthetas_10.csv │ │ │ ├── dthetas_11.csv │ │ │ ├── dthetas_2-1.csv │ │ │ ├── dthetas_2-2.csv │ │ │ ├── dthetas_21.csv │ │ │ ├── dthetas_22.csv │ │ │ ├── dthetas_3-2.csv │ │ │ ├── dthetas_3-3.csv │ │ │ ├── dthetas_32.csv │ │ │ └── dthetas_33.csv │ │ ├── open_flux_harmonics.json │ │ └── open_flux_results.csv │ └── tracer_step_size.py ├── using_pfsspy │ ├── README.rst │ ├── plot_aia_overplotting.py │ ├── plot_dipole.py │ ├── plot_field_line_magnetic_field.py │ ├── plot_gong.py │ ├── plot_hmi.py │ └── plot_open_closed_map.py └── utils │ ├── README.rst │ └── plot_car_reproject.py ├── joss-paper ├── paper.bib ├── paper.md └── pfsspy.pdf ├── logo.svg ├── logo ├── logo.svg ├── logo_rectangle.png └── logo_rectangle.svg ├── pfsspy ├── __init__.py ├── _version.py ├── analytic.py ├── coords.py ├── fieldline.py ├── grid.py ├── input.py ├── interpolator.py ├── map.py ├── output.py ├── pfss.py ├── sample_data.py ├── tests │ ├── __init__.py │ ├── data │ │ ├── br_in.txt │ │ └── br_out.txt │ ├── example_maps.py │ ├── test_analytic.py │ ├── test_coords.py │ ├── test_fieldline.py │ ├── test_map.py │ ├── test_pfss.py │ ├── test_tracers.py │ └── test_utils.py ├── tracing.py └── utils.py ├── setup.cfg ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pfsspy/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/CITING.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/changes.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/example_figures/tracer_performace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/example_figures/tracer_performace.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/installing.rst -------------------------------------------------------------------------------- /doc/source/manual/numerical_methods.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/numerical_methods.pdf -------------------------------------------------------------------------------- /doc/source/manual/source/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/source/Q.png -------------------------------------------------------------------------------- /doc/source/manual/source/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/source/grid.jpg -------------------------------------------------------------------------------- /doc/source/manual/source/grid3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/source/grid3d.png -------------------------------------------------------------------------------- /doc/source/manual/source/numerical-methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/source/numerical-methods.tex -------------------------------------------------------------------------------- /doc/source/manual/source/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/manual/source/refs.bib -------------------------------------------------------------------------------- /doc/source/numerical_method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/numerical_method.rst -------------------------------------------------------------------------------- /doc/source/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/performance.rst -------------------------------------------------------------------------------- /doc/source/pfsspy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/pfsspy.rst -------------------------------------------------------------------------------- /doc/source/project_status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/project_status.rst -------------------------------------------------------------------------------- /doc/source/synoptic_fits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/doc/source/synoptic_fits.rst -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/finding_data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/finding_data/README.rst -------------------------------------------------------------------------------- /examples/finding_data/adapt_map_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/finding_data/adapt_map_sequence.py -------------------------------------------------------------------------------- /examples/finding_data/plot_hmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/finding_data/plot_hmi.py -------------------------------------------------------------------------------- /examples/pfsspy_info/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/pfsspy_info/README.rst -------------------------------------------------------------------------------- /examples/pfsspy_info/plot_computation_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/pfsspy_info/plot_computation_grid.py -------------------------------------------------------------------------------- /examples/pfsspy_info/tracer_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/pfsspy_info/tracer_performance.py -------------------------------------------------------------------------------- /examples/testing/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/README.rst -------------------------------------------------------------------------------- /examples/testing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/helpers.py -------------------------------------------------------------------------------- /examples/testing/open_flux_harmonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/open_flux_harmonics.py -------------------------------------------------------------------------------- /examples/testing/open_flux_nr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/open_flux_nr.py -------------------------------------------------------------------------------- /examples/testing/plot_error_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/plot_error_map.py -------------------------------------------------------------------------------- /examples/testing/plot_harmonic_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/plot_harmonic_comparison.py -------------------------------------------------------------------------------- /examples/testing/plot_open_flux_harmonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/plot_open_flux_harmonics.py -------------------------------------------------------------------------------- /examples/testing/plot_open_flux_nr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/plot_open_flux_nr.py -------------------------------------------------------------------------------- /examples/testing/plot_tracer_step_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/plot_tracer_step_size.py -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_1-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_1-1.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_10.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_11.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_2-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_2-1.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_2-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_2-2.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_21.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_22.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_3-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_3-2.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_3-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_3-3.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_32.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dphis_33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dphis_33.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_1-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_1-1.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_10.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_11.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_2-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_2-1.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_2-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_2-2.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_21.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_22.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_3-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_3-2.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_3-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_3-3.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_32.csv -------------------------------------------------------------------------------- /examples/testing/results/flines/dthetas_33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/flines/dthetas_33.csv -------------------------------------------------------------------------------- /examples/testing/results/open_flux_harmonics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/open_flux_harmonics.json -------------------------------------------------------------------------------- /examples/testing/results/open_flux_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/results/open_flux_results.csv -------------------------------------------------------------------------------- /examples/testing/tracer_step_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/testing/tracer_step_size.py -------------------------------------------------------------------------------- /examples/using_pfsspy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/README.rst -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_aia_overplotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_aia_overplotting.py -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_dipole.py -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_field_line_magnetic_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_field_line_magnetic_field.py -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_gong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_gong.py -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_hmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_hmi.py -------------------------------------------------------------------------------- /examples/using_pfsspy/plot_open_closed_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/using_pfsspy/plot_open_closed_map.py -------------------------------------------------------------------------------- /examples/utils/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/utils/README.rst -------------------------------------------------------------------------------- /examples/utils/plot_car_reproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/examples/utils/plot_car_reproject.py -------------------------------------------------------------------------------- /joss-paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/joss-paper/paper.bib -------------------------------------------------------------------------------- /joss-paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/joss-paper/paper.md -------------------------------------------------------------------------------- /joss-paper/pfsspy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/joss-paper/pfsspy.pdf -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/logo.svg -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /logo/logo_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/logo/logo_rectangle.png -------------------------------------------------------------------------------- /logo/logo_rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/logo/logo_rectangle.svg -------------------------------------------------------------------------------- /pfsspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/__init__.py -------------------------------------------------------------------------------- /pfsspy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/_version.py -------------------------------------------------------------------------------- /pfsspy/analytic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/analytic.py -------------------------------------------------------------------------------- /pfsspy/coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/coords.py -------------------------------------------------------------------------------- /pfsspy/fieldline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/fieldline.py -------------------------------------------------------------------------------- /pfsspy/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/grid.py -------------------------------------------------------------------------------- /pfsspy/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/input.py -------------------------------------------------------------------------------- /pfsspy/interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/interpolator.py -------------------------------------------------------------------------------- /pfsspy/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/map.py -------------------------------------------------------------------------------- /pfsspy/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/output.py -------------------------------------------------------------------------------- /pfsspy/pfss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/pfss.py -------------------------------------------------------------------------------- /pfsspy/sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/sample_data.py -------------------------------------------------------------------------------- /pfsspy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfsspy/tests/data/br_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/data/br_in.txt -------------------------------------------------------------------------------- /pfsspy/tests/data/br_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/data/br_out.txt -------------------------------------------------------------------------------- /pfsspy/tests/example_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/example_maps.py -------------------------------------------------------------------------------- /pfsspy/tests/test_analytic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_analytic.py -------------------------------------------------------------------------------- /pfsspy/tests/test_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_coords.py -------------------------------------------------------------------------------- /pfsspy/tests/test_fieldline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_fieldline.py -------------------------------------------------------------------------------- /pfsspy/tests/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_map.py -------------------------------------------------------------------------------- /pfsspy/tests/test_pfss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_pfss.py -------------------------------------------------------------------------------- /pfsspy/tests/test_tracers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_tracers.py -------------------------------------------------------------------------------- /pfsspy/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tests/test_utils.py -------------------------------------------------------------------------------- /pfsspy/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/tracing.py -------------------------------------------------------------------------------- /pfsspy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/pfsspy/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstansby/pfsspy/HEAD/versioneer.py --------------------------------------------------------------------------------