Writes restart data to disk.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(cdifs_obj), | intent(inout) | :: | this |
CDIFS solver |
module subroutine cdifs_obj_WriteRestartData(this) !> Writes restart data to disk. class(cdifs_obj), intent(inout) :: this !! CDIFS solver ! Write data required for restarts in working precision call this%fields%Write(this%timer%iter,this%timer%time,[character(len=str8) :: 'V1','V2','V3','P']) if (this%use_IB) call this%IB%Write(this%timer%iter,this%timer%time) if (this%use_RP) call this%RP%Write(this%timer%iter,this%timer%time) ! Update timing info call this%timer%UpdateTiming('Restart' ) return end subroutine cdifs_obj_WriteRestartData