LMDZ
phyredem.F90
Go to the documentation of this file.
1 !
2 ! $Id: $
3 !
4 SUBROUTINE phyredem (fichnom)
5 
8 
9  IMPLICIT NONE
10 
11  CHARACTER(LEN=*),INTENT(IN) :: fichnom
12 
13  INTEGER,PARAMETER :: tab_cntrl_len=100
14  REAL :: tab_cntrl(tab_cntrl_len)
15 
16  ! open file
17 
18  CALL open_restartphy(fichnom)
19 
20  ! tab_cntrl() contains run parameters
21 
22  tab_cntrl(:)=0.0
23 
24 
25  CALL put_var("controle", "Control parameters", tab_cntrl)
26 
27  ! coordinates
28 
29  CALL put_field("longitude", "Longitudes on physics grid", longitude_deg)
30 
31  CALL put_field("latitude", "Latitudes on physics grid", latitude_deg)
32 
33  ! close file
34 
35  CALL close_restartphy
36  !$OMP BARRIER
37 
38 END SUBROUTINE phyredem
real, dimension(:), allocatable, save latitude_deg
subroutine phyredem(fichnom)
Definition: phyredem.F90:5
subroutine, public close_restartphy
Definition: iostart.F90:341
real, dimension(:), allocatable, save longitude_deg
subroutine, public open_restartphy(filename)
Definition: iostart.F90:312