| 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 |
| 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 => initialize_type_dp_3d procedure, pass(self) :: destroy => destroy_type_dp_3d end type type_dp_3d