init_real_field_grid Subroutine

private subroutine init_real_field_grid(this, id, field)

Arguments

TypeIntentOptionalAttributesName
class(real_field_grid_type), intent(inout) :: this
integer, intent(in) :: id
real(kind=dp), intent(in), dimension(:,:,:), target:: field

Contents

Source Code


Source Code

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