Returns the state vector for the current state of the ice sheet. This takes the form of a 1D array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ice_sheet), | intent(in) | :: | this |
The state vector describing the ice sheet.
pure function sheet_state_vector(this) result(state_vector)
!* Author: Christopher MacMackin
! Date: April 2016
!
! Returns the state vector for the current state of the ice sheet.
! This takes the form of a 1D array.
!
class(ice_sheet), intent(in) :: this
real(r8), dimension(:), allocatable :: state_vector
!! The state vector describing the ice sheet.
end function sheet_state_vector