Set the paths to the data files.
If not used or blank, the folder data/aep8
and data/igrf
in the
current working directory is assumed
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(radbelt_type), | intent(inout) | :: | me | |||
character(len=*), | intent(in) | :: | aep8_dir | |||
character(len=*), | intent(in) | :: | igrf_dir |
subroutine set_data_files_paths(me, aep8_dir, igrf_dir) class(radbelt_type), intent(inout) :: me character(len=*), intent(in) :: aep8_dir character(len=*), intent(in) :: igrf_dir call me%set_trm_file_path(trim(aep8_dir)) call me%set_igrf_file_path(trim(igrf_dir)) end subroutine set_data_files_paths