Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
logical, | public | :: | active | ||||
integer, | public | :: | rank | ||||
integer, | public | :: | ID | ||||
integer, | public | :: | eID | ||||
real(kind=RP), | public | :: | x(NDIM) | ||||
real(kind=RP), | public | :: | xi(NDIM) | ||||
real(kind=RP), | public, | allocatable | :: | values(:) | |||
real(kind=RP), | public, | allocatable | :: | lxi(:) | |||
real(kind=RP), | public, | allocatable | :: | leta(:) | |||
real(kind=RP), | public, | allocatable | :: | lzeta(:) | |||
character(len=STR_LEN_MONITORS), | public | :: | fileName | ||||
character(len=STR_LEN_MONITORS), | public | :: | monitorName | ||||
character(len=STR_LEN_MONITORS), | public | :: | variable |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self | ||||
class(HexMesh) | :: | mesh | ||||
integer | :: | ID | ||||
character(len=*) | :: | solution_file | ||||
logical, | intent(in) | :: | FirstCall |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self | ||||
class(HexMesh) | :: | mesh | ||||
integer | :: | bufferPosition |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self | ||||
integer | :: | bufferLine |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self | ||||
integer | :: | iter(:) | ||||
real(kind=RP) | :: | t(:) | ||||
integer | :: | no_of_lines |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(Probe_t), | intent(inout) | :: | self |
type Probe_t logical :: active integer :: rank integer :: ID integer :: eID real(kind=RP) :: x(NDIM) real(kind=RP) :: xi(NDIM) real(kind=RP), allocatable :: values(:) real(kind=RP), allocatable :: lxi(:) , leta(:), lzeta(:) character(len=STR_LEN_MONITORS) :: fileName character(len=STR_LEN_MONITORS) :: monitorName character(len=STR_LEN_MONITORS) :: variable contains procedure :: Initialization => Probe_Initialization procedure :: Update => Probe_Update procedure :: WriteLabel => Probe_WriteLabel procedure :: WriteValues => Probe_WriteValue procedure :: WriteToFile => Probe_WriteToFile procedure :: LookInOtherPartitions => Probe_LookInOtherPartitions procedure :: destruct => Probe_Destruct procedure :: copy => Probe_Assign generic :: assignment(=) => copy end type Probe_t