A real data type instance of the abstract element data type.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=ip), | public | :: | order | The order of the element. |
|||
real(kind=wp), | public, | dimension(:), allocatable | :: | var | A real 1d array that will contain the data of the element. |
The constructor for the real element data class.
The finalizer that will deallocate the 1d data array.
type, extends(element_data) :: element_rdata
!! A real data type instance of the abstract element data type.
real(wp), dimension(:), allocatable :: var
!! A real 1d array that will contain the data of the element.
contains
final :: deallocate_rdata
!! The finalizer that will deallocate the 1d data array.
end type element_rdata