Output the advection field state.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrand_ladvection), | intent(in) | :: | self | Advection field. |
Advection state
pure function output(self) result(state)
!< Output the advection field state.
class(integrand_ladvection), intent(in) :: self !< Advection field.
real(R_P), allocatable :: state(:) !< Advection state
state = self%u(1:self%Ni)
endfunction output