Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=real64), | public, | allocatable | :: | x(:) | |||
real(kind=real64), | public, | allocatable | :: | y(:) | |||
real(kind=real64), | public, | allocatable | :: | z(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_dp_3d), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | length | |||
real(kind=real64), | intent(in), | optional | :: | initialize_value |
type :: type_dp_3d real(real64), allocatable :: x(:) real(real64), allocatable :: y(:) real(real64), allocatable :: z(:) contains procedure, pass(self) :: initialize => type_dp_3d_initialize end type type_dp_3d