Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! !
! FILE: WriteFlowField.F90 !
! CONTAINS: subroutine WriteFlowField !
! !
! PURPOSE: Write down the full flow snapshot for !
! restarting the simulation at a later date !
! !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
subroutine WriteFlowField
use param
use local_arrays, only: vz,vy,vx,temp
implicit none
character*30 :: filnam1,dsetname
filnam1 = trim('continua_temp.h5')
call HdfWriteRealHalo3D(filnam1,temp)
filnam1 = trim('continua_vx.h5')
call HdfWriteRealHalo3D(filnam1,vx)
filnam1 = trim('continua_vy.h5')
call HdfWriteRealHalo3D(filnam1,vy)
filnam1 = trim('continua_vz.h5')
call HdfWriteRealHalo3D(filnam1,vz)
if (ismaster) then !EP only write once
filnam1 = trim('continua_master.h5')
call HdfCreateBlankFile(filnam1)
dsetname = trim('nx')
call HdfSerialWriteIntScalar(dsetname,filnam1,nx)
dsetname = trim('ny')
call HdfSerialWriteIntScalar(dsetname,filnam1,ny)
dsetname = trim('nz')
call HdfSerialWriteIntScalar(dsetname,filnam1,nz)
dsetname = trim('ylen')
call HdfSerialWriteRealScalar(dsetname,filnam1,ylen)
dsetname = trim('zlen')
call HdfSerialWriteRealScalar(dsetname,filnam1,zlen)
dsetname = trim('time')
call HdfSerialWriteRealScalar(dsetname,filnam1,time)
dsetname = trim('istr3')
call HdfSerialWriteIntScalar(dsetname,filnam1,istr3)
dsetname = trim('str3')
call HdfSerialWriteRealScalar(dsetname,filnam1,str3)
endif
end subroutine WriteFlowField