|
PB3D [2.47]
Ideal linear high-n MHD stability in 3-D
|
Numerical utilities related to input. More...
Functions/Subroutines | |
| logical function, public | get_log (yes, ind) |
| Queries for a logical value yes or no, where the default answer is also to be provided. | |
| real(dp) function, public | get_real (lim_lo, lim_hi, ind) |
| Queries for user input for a real value, where allowable range can be provided as well. | |
| integer function, public | get_int (lim_lo, lim_hi, ind) |
| Queries for user input for an integer value, where allowable range can be provided as well. | |
| subroutine, public | pause_prog (ind) |
| Pauses the running of the program. | |
| subroutine, public | dealloc_in () |
| Cleans up input from equilibrium codes. | |
Numerical utilities related to input.
| subroutine, public input_utilities::dealloc_in |
Cleans up input from equilibrium codes.
Definition at line 267 of file input_utilities.f90.
| integer function, public input_utilities::get_int | ( | integer, intent(in), optional | lim_lo, |
| integer, intent(in), optional | lim_hi, | ||
| logical, intent(in), optional | ind ) |
Queries for user input for an integer value, where allowable range can be provided as well.
If not called by all processes at the same time, ind should be set to indicate an individual operation.
| [in] | lim_lo | upper and lower limit |
| [in] | lim_hi | upper and lower limit |
| [in] | ind | individual pause or not |
Definition at line 151 of file input_utilities.f90.
| logical function, public input_utilities::get_log | ( | logical | yes, |
| logical, intent(in), optional | ind ) |
Queries for a logical value yes or no, where the default answer is also to be provided.
If not called by all processes at the same time, ind should be set to indicate an individual operation.
| yes | default answer | |
| [in] | ind | individual pause or not |
Definition at line 21 of file input_utilities.f90.
| real(dp) function, public input_utilities::get_real | ( | real(dp), intent(in), optional | lim_lo, |
| real(dp), intent(in), optional | lim_hi, | ||
| logical, intent(in), optional | ind ) |
Queries for user input for a real value, where allowable range can be provided as well.
If not called by all processes at the same time, ind should be set to indicate an individual operation.
| [in] | lim_lo | upper and lower limit |
| [in] | lim_hi | upper and lower limit |
| [in] | ind | individual pause or not |
Definition at line 76 of file input_utilities.f90.
| subroutine, public input_utilities::pause_prog | ( | logical, intent(in), optional | ind | ) |
Pauses the running of the program.
If not called by all processes at the same time, ind should be set to indicate an individual operation.
Definition at line 225 of file input_utilities.f90.