Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
logical, | public | :: | active | ||||
logical, | public | :: | isDimensionless | ||||
logical, | public | :: | IBM | = | .false. | ||
integer, | public | :: | ID | ||||
real(kind=RP), | public | :: | direction(NDIM) | ||||
integer, | public | :: | marker | ||||
real(kind=RP), | public, | allocatable | :: | referenceSurface | |||
real(kind=RP), | public, | allocatable | :: | values(:) | |||
real(kind=RP), | public | :: | dynamicPressure | ||||
character(len=STR_LEN_MONITORS), | public | :: | monitorName | ||||
character(len=STR_LEN_MONITORS), | public | :: | fileName | ||||
character(len=STR_LEN_MONITORS), | public | :: | variable |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t) | :: | self | ||||
class(HexMesh) | :: | mesh | ||||
integer | :: | ID | ||||
character(len=*) | :: | solution_file | ||||
logical, | intent(in) | :: | FirstCall |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t) | :: | self | ||||
class(HexMesh) | :: | mesh | ||||
integer | :: | bufferPosition | ||||
integer | :: | iter | ||||
logical | :: | autosave | ||||
real(kind=RP) | :: | dt |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t) | :: | self | ||||
integer | :: | bufferLine |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t) | :: | self | ||||
integer | :: | iter(:) | ||||
real(kind=RP) | :: | t(:) | ||||
integer | :: | no_of_lines |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t), | intent(inout) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t), | intent(inout) | :: | to | |||
type(SurfaceMonitor_t), | intent(in) | :: | from |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SurfaceMonitor_t), | intent(inout) | :: | to | |||
type(SurfaceMonitor_t), | intent(in) | :: | from |
type SurfaceMonitor_t logical :: active logical :: isDimensionless, IBM = .false. integer :: ID real(kind=RP) :: direction(NDIM) integer :: marker real(kind=RP), allocatable :: referenceSurface real(kind=RP), allocatable :: values(:) real(kind=RP) :: dynamicPressure character(len=STR_LEN_MONITORS) :: monitorName character(len=STR_LEN_MONITORS) :: fileName character(len=STR_LEN_MONITORS) :: variable contains procedure :: Initialization => SurfaceMonitor_Initialization procedure :: Update => SurfaceMonitor_Update procedure :: WriteLabel => SurfaceMonitor_WriteLabel procedure :: WriteValues => SurfaceMonitor_WriteValue procedure :: WriteToFile => SurfaceMonitor_WriteToFile procedure :: destruct => SurfaceMonitor_Destruct procedure :: copy => SurfaceMonitor_Assign generic :: assignment(=) => copy end type SurfaceMonitor_t