| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| logical, | public | :: | active | ||||
| real(kind=RP), | public, | allocatable | :: | values(:,:) | |||
| real(kind=RP), | public, | allocatable | :: | CPUtime(:) | |||
| character(len=STR_LEN_MONITORS), | public | :: | fileName | ||||
| logical, | public | :: | memory | = | .FALSE. | ||
| real(kind=RP), | public, | allocatable | :: | totMemory(:) |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t) | :: | self | ||||
| character(len=*) | :: | solution_file | ||||
| logical, | intent(in) | :: | FirstCall | |||
| logical, | intent(in) | :: | monitorMem |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t) | :: | self | ||||
| class(HexMesh), | intent(in) | :: | mesh | |||
| real(kind=RP) | :: | maxResiduals(NCONS) | ||||
| integer | :: | bufferPosition |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t) | :: | self | ||||
| integer | :: | bufferLine |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t) | :: | self | ||||
| integer | :: | iter(:) | ||||
| real(kind=RP) | :: | t(:) | ||||
| real(kind=RP) | :: | TotalSimuTime(:) | ||||
| real(kind=RP) | :: | SolverSimuTime(:) | ||||
| integer | :: | no_of_lines |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t), | intent(inout) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t), | intent(inout) | :: | to | |||
| type(Residuals_t), | intent(in) | :: | from |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Residuals_t), | intent(inout) | :: | to | |||
| type(Residuals_t), | intent(in) | :: | from |
type Residuals_t logical :: active real(kind=RP), allocatable :: values(:,:) real(kind=RP), allocatable :: CPUtime(:) character(len=STR_LEN_MONITORS) :: fileName logical :: memory =.FALSE. real(kind=RP), allocatable :: totMemory(:) contains procedure :: Initialization => Residuals_Initialization procedure :: Update => Residuals_Update procedure :: WriteLabel => Residuals_WriteLabel procedure :: WriteValues => Residuals_WriteValue procedure :: WriteToFile => Residuals_WriteToFile procedure :: destruct => Residuals_Destruct procedure :: copy => Residuals_Assign generic :: assignment(=) => copy end type Residuals_t