com_io_dyn_mod.f90 Source File


Files dependent on this one

sourcefile~~com_io_dyn_mod.f90~~AfferentGraph sourcefile~com_io_dyn_mod.f90 com_io_dyn_mod.f90 sourcefile~inithist.f90 inithist.f90 sourcefile~inithist.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~initdynav.f90 initdynav.f90 sourcefile~initdynav.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~writedynav.f90 writedynav.f90 sourcefile~writedynav.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~writehist.f90 writehist.f90 sourcefile~writehist.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~writedynav_loc.f90 writedynav_loc.f90 sourcefile~writedynav_loc.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~initdynav_loc.f90 initdynav_loc.f90 sourcefile~initdynav_loc.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~writehist_loc.f90 writehist_loc.f90 sourcefile~writehist_loc.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~inithist_loc.f90 inithist_loc.f90 sourcefile~inithist_loc.f90->sourcefile~com_io_dyn_mod.f90 sourcefile~writedyn_xios.f90 writedyn_xios.f90 sourcefile~writedyn_xios.f90->sourcefile~com_io_dyn_mod.f90

Contents

Source Code


Source Code

!
! $Id $
!
module com_io_dyn_mod

  implicit none 

! Names of various files for outputs (in the dynamics)
  ! to store instantaneous values:
  character(len=18),parameter :: dynhist_file="dyn_hist.nc" ! on scalar grid
  character(len=18),parameter :: dynhistv_file="dyn_histv.nc" ! on v grid
  character(len=18),parameter :: dynhistu_file="dyn_histu.nc" ! on u grid

  ! to store averaged values:
  character(len=18),parameter :: dynhistave_file="dyn_hist_ave.nc"
  character(len=18),parameter :: dynhistvave_file="dyn_histv_ave.nc"
  character(len=18),parameter :: dynhistuave_file="dyn_histu_ave.nc"
  
! Ids of various files for outputs (in the dynamics)

  ! instantaneous (these are set by inithist.F)
  integer :: histid
  integer :: histvid
  integer :: histuid
  
  ! averages (these are set by initdynav.F)
  integer :: histaveid
  integer :: histvaveid
  integer :: histuaveid
  
end module com_io_dyn_mod