PB3D
[2.45]
Ideal linear high-n MHD stability in 3-D
|
Operations on strings. More...
Functions/Subroutines | |
elemental character(len=max_str_ln) function, public | i2str (k) |
Convert an integer to string. More... | |
elemental character(len=max_str_ln) function, public | ii2str (k) |
Convert an integer to string. More... | |
elemental character(len=max_str_ln) function, public | r2str (k) |
Convert a real (double) to string. More... | |
elemental character(len=max_str_ln) function, public | r2strt (k) |
Convert a real (double) to string. More... | |
elemental character(len=max_str_ln) function, public | c2str (k) |
Convert a complex (double) to string. More... | |
elemental character(len=max_str_ln) function, public | c2strt (k) |
Convert a complex (double) to string. More... | |
character(len(input_string)) function, public | strh2l (input_string) |
Convert a string to lowercase. More... | |
character(len(input_string)) function, public | strl2h (input_string) |
convert a string to uppercase. More... | |
character((len(input_strings)+2) *size(input_strings)) function, public | merge_strings (input_strings) |
Merge array of strings. More... | |
Operations on strings.
elemental character(len=max_str_ln) function, public str_utilities::c2str | ( | complex(dp), intent(in) | k | ) |
Convert a complex (double) to string.
[in] | k | complex to convert |
Definition at line 66 of file str_utilities.f90.
elemental character(len=max_str_ln) function, public str_utilities::c2strt | ( | complex(dp), intent(in) | k | ) |
Convert a complex (double) to string.
Version with less precise output.
[in] | k | complex to convert |
Definition at line 88 of file str_utilities.f90.
elemental character(len=max_str_ln) function, public str_utilities::i2str | ( | integer, intent(in) | k | ) |
Convert an integer to string.
[in] | k | integer to convert |
Definition at line 18 of file str_utilities.f90.
elemental character(len=max_str_ln) function, public str_utilities::ii2str | ( | integer(kind=8), intent(in) | k | ) |
Convert an integer to string.
Version with kind 8 integers.
[in] | k | integer to convert |
Definition at line 30 of file str_utilities.f90.
character((len(input_strings)+2)*size(input_strings)) function, public str_utilities::merge_strings | ( | character(*), dimension(:), intent(in) | input_strings | ) |
Merge array of strings.
[in] | input_strings | array of strings |
Definition at line 152 of file str_utilities.f90.
elemental character(len=max_str_ln) function, public str_utilities::r2str | ( | real(dp), intent(in) | k | ) |
Convert a real (double) to string.
[in] | k | real to convert |
Definition at line 42 of file str_utilities.f90.
elemental character(len=max_str_ln) function, public str_utilities::r2strt | ( | real(dp), intent(in) | k | ) |
Convert a real (double) to string.
Version with less precise output.
[in] | k | real to convert |
Definition at line 54 of file str_utilities.f90.
character(len(input_string)) function, public str_utilities::strh2l | ( | character(*), intent(in) | input_string | ) |
Convert a string to lowercase.
[in] | input_string | input string |
Definition at line 109 of file str_utilities.f90.
character(len(input_string)) function, public str_utilities::strl2h | ( | character(*), intent(in) | input_string | ) |
convert a string to uppercase.
[in] | input_string | input string |
Definition at line 131 of file str_utilities.f90.