Parameters module
Data Types | |
module | param |
Provides a simple class for describing equation parameters. More... | |
subroutine, public getparam | ( | character(*), intent(inout) | sym, |
complex(c8), intent(out) | var, | ||
integer, intent(out), optional | ierr ) |
Find double precision complex value var
corresponding to symbol sym
[in,out] | sym | parameter symbol |
[out] | var | parameter value as single precision integer |
[out] | ierr | (optional) error code |
Remarks
Definition at line 164 of file Parameters.f90.
subroutine, public getvalue | ( | character(*), intent(inout) | xinchar, |
complex(c8), intent(out) | cval, | ||
integer, intent(out), optional | ierr ) |
Finds double precision complex value corresponding to number string xinchar
or value in symbol table corresponding to symbol name xinchar
.
[in,out] | xinchar | input string |
[out] | cval | parameter value as double precision complex |
[out] | ierr | (optional) error code |
Remarks
Definition at line 207 of file Parameters.f90.
subroutine, public listvar |
List all variables, their names and their values.
Remarks
Definition at line 235 of file Parameters.f90.