|
MOM6
|
Methods for testing for, and list of, obsolete run-time parameters.
Functions/Subroutines | |
| subroutine, public | find_obsolete_params (param_file) |
| Scans input parameter file for list obsolete parameters. More... | |
| subroutine, public | obsolete_logical (param_file, varname, warning_val, hint) |
| Test for presence of obsolete LOGICAL in parameter file. More... | |
| subroutine, public | obsolete_char (param_file, varname, warning_val, hint) |
| Test for presence of obsolete STRING in parameter file. More... | |
| subroutine, public | obsolete_real (param_file, varname, warning_val, hint) |
| Test for presence of obsolete REAL in parameter file. More... | |
| subroutine, public | obsolete_int (param_file, varname, warning_val, hint) |
| Test for presence of obsolete INTEGER in parameter file. More... | |
| subroutine, public mom_obsolete_params::find_obsolete_params | ( | type(param_file_type), intent(in) | param_file | ) |
Scans input parameter file for list obsolete parameters.
| [in] | param_file | Structure containing parameter file data. |
Definition at line 20 of file MOM_obsolete_params.F90.
| subroutine, public mom_obsolete_params::obsolete_char | ( | type(param_file_type), intent(in) | param_file, |
| character(len=*), intent(in) | varname, | ||
| character(len=*), intent(in), optional | warning_val, | ||
| character(len=*), intent(in), optional | hint | ||
| ) |
Test for presence of obsolete STRING in parameter file.
| [in] | param_file | Structure containing parameter file data. |
| [in] | varname | Name of obsolete STRING parameter. |
| [in] | warning_val | An allowed value that causes a warning instead of an error. |
| [in] | hint | A hint to the user about what to do. |
Definition at line 144 of file MOM_obsolete_params.F90.
| subroutine, public mom_obsolete_params::obsolete_int | ( | type(param_file_type), intent(in) | param_file, |
| character(len=*), intent(in) | varname, | ||
| integer, intent(in), optional | warning_val, | ||
| character(len=*), intent(in), optional | hint | ||
| ) |
Test for presence of obsolete INTEGER in parameter file.
| [in] | param_file | Structure containing parameter file data. |
| [in] | varname | Name of obsolete INTEGER parameter. |
| [in] | warning_val | An allowed value that causes a warning instead of an error. |
| [in] | hint | A hint to the user about what to do. |
Definition at line 203 of file MOM_obsolete_params.F90.
| subroutine, public mom_obsolete_params::obsolete_logical | ( | type(param_file_type), intent(in) | param_file, |
| character(len=*), intent(in) | varname, | ||
| logical, intent(in), optional | warning_val, | ||
| character(len=*), intent(in), optional | hint | ||
| ) |
Test for presence of obsolete LOGICAL in parameter file.
| [in] | param_file | Structure containing parameter file data. |
| [in] | varname | Name of obsolete LOGICAL parameter. |
| [in] | warning_val | An allowed value that causes a warning instead of an error. |
| [in] | hint | A hint to the user about what to do. |
Definition at line 101 of file MOM_obsolete_params.F90.
| subroutine, public mom_obsolete_params::obsolete_real | ( | type(param_file_type), intent(in) | param_file, |
| character(len=*), intent(in) | varname, | ||
| real, intent(in), optional | warning_val, | ||
| character(len=*), intent(in), optional | hint | ||
| ) |
Test for presence of obsolete REAL in parameter file.
| [in] | param_file | Structure containing parameter file data. |
| [in] | varname | Name of obsolete REAL parameter. |
| [in] | warning_val | An allowed value that causes a warning instead of an error. |
| [in] | hint | A hint to the user about what to do. |
Definition at line 177 of file MOM_obsolete_params.F90.