Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(real_field_grid_type), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | id | |||
real(kind=dp), | intent(in), | dimension(:,:,:), target | :: | field |
subroutine init_real_field_grid(this, id, field)
class(real_field_grid_type), intent(inout) :: this
integer, intent(in) :: id
real(dp), dimension(:,:,:), intent(in), target :: field
this%id = id
this%field => field
end subroutine init_real_field_grid