Output the Lorenz field state.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(lorenz), | intent(in) | :: | self | Lorenz field. |
Lorenz state vector.
pure function output(self) result(state)
!---------------------------------------------------------------------------------------------------------------------------------
!< Output the Lorenz field state.
!---------------------------------------------------------------------------------------------------------------------------------
class(lorenz), intent(IN) :: self !< Lorenz field.
real(R_P), dimension(:), allocatable :: state !< Lorenz state vector.
!---------------------------------------------------------------------------------------------------------------------------------
!---------------------------------------------------------------------------------------------------------------------------------
state = self%U
return
!---------------------------------------------------------------------------------------------------------------------------------
endfunction output