|
LCC
1. 0. 0.
Crystal cutting code
|
Module for printing through the code. More...
Functions/Subroutines | |
| subroutine, public | lcc_print_ussage () |
| For printing the instructions on how to execute the code. | |
| subroutine, public | lcc_print_message (message, verbose) |
| Print a simple message. More... | |
| subroutine, public | lcc_print_warning (at, message, verbose) |
| Print a Warning (will not stop execution). More... | |
| subroutine, public | lcc_print_error (at, message) |
| Print error (will stop execution). More... | |
| subroutine, public | lcc_print_intval (name, value, units, verbose) |
| Print integer magnitude. More... | |
| subroutine, public | lcc_print_realval (name, value, units, verbose) |
| Print real magnitude. More... | |
| subroutine, public | lcc_print_realvect (name, vect, units, verbose) |
| Print real vector. More... | |
| subroutine | lcc_print_realmat (name, mat, units, verbose) |
| Print real vector. More... | |
| subroutine | lcc_help () |
Module for printing through the code.
| subroutine, public lcc_message_mod::lcc_print_error | ( | character(len=*), intent(in) | at, |
| character(len=*), intent(in) | message | ||
| ) |
Print error (will stop execution).
| at | Name of the routine. |
| message | Message to print. |
| subroutine, public lcc_message_mod::lcc_print_intval | ( | character(len=*), intent(in) | name, |
| integer, intent(in) | value, | ||
| character(len=*), intent(in) | units, | ||
| integer, intent(in) | verbose | ||
| ) |
Print integer magnitude.
| name | Name of the magnitude. |
| value | Value to print. |
| units | Units of the magnitude. |
| subroutine, public lcc_message_mod::lcc_print_message | ( | character(len=*), intent(in) | message, |
| integer, intent(in) | verbose | ||
| ) |
Print a simple message.
| message | Message to print. |
| verbose | Verbosity level. |
| subroutine lcc_message_mod::lcc_print_realmat | ( | character(len=*), intent(in) | name, |
| real(dp), dimension(:,:), intent(in), allocatable | mat, | ||
| character(len=*), intent(in) | units, | ||
| integer, intent(in) | verbose | ||
| ) |
Print real vector.
| name | Name of the quantities. |
| mat | Matrix to print. |
| units | Units of the quantities. |
| verbose | Verbosity level. |
| subroutine, public lcc_message_mod::lcc_print_realval | ( | character(len=*), intent(in) | name, |
| real(dp), intent(in) | value, | ||
| character(len=*), intent(in) | units, | ||
| integer, intent(in) | verbose | ||
| ) |
Print real magnitude.
| name | Name of the magnitude. |
| value | Value to print. |
| units | Units of the magnitude. |
| subroutine, public lcc_message_mod::lcc_print_realvect | ( | character(len=*), intent(in) | name, |
| real(dp), dimension(:), intent(in), allocatable | vect, | ||
| character(len=*), intent(in) | units, | ||
| integer, intent(in) | verbose | ||
| ) |
Print real vector.
| name | Name of the quantities. |
| vect | Vector to print. |
| units | Units of the quantities. |
| verbose | Verbosity level. |
| subroutine, public lcc_message_mod::lcc_print_warning | ( | character(len=*), intent(in) | at, |
| character(len=*), intent(in) | message, | ||
| integer, intent(in) | verbose | ||
| ) |
Print a Warning (will not stop execution).
| at | Name of the routine. |
| message | Message to print. |
| verbose | Verbosity level. |