the solver class, which contains an instance of the mission
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
type(mission_type), | public | :: | mission |
the Halo mission |
Initialize the mission.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(my_solver_type), | intent(inout) | :: | me | |||
character(len=*), | intent(in) | :: | config_file_name |
the config file to read |
||
real(kind=wp), | intent(out), | optional, | dimension(:), allocatable | :: | x |
initial guess |
Read the config file that defines the problem to be solved and set all the global variables.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(my_solver_type), | intent(inout) | :: | me | |||
character(len=*), | intent(in) | :: | filename |
the JSON config file to read |
type,extends(nlesolver_type) :: my_solver_type !! the solver class, which contains !! an instance of the mission type(mission_type) :: mission !! the Halo mission contains procedure,public :: init => initialize_the_solver procedure :: read_config_file end type my_solver_type