source: LMDZ5/branches/testing/libf/phydev/phyredem.F90 @ 2343

Last change on this file since 2343 was 1999, checked in by Laurent Fairhead, 10 years ago

Merged trunk changes r1920:1997 into testing branch

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 706 bytes
RevLine 
[1671]1!
2! $Id: $
3!
[1994]4SUBROUTINE phyredem (fichnom)
[1671]5
[1994]6  USE iostart, ONLY: open_restartphy, close_restartphy, put_var, put_field
7  USE phys_state_var_mod, ONLY: rlon, rlat
[1671]8
[1994]9  IMPLICIT NONE
[1671]10
[1994]11  CHARACTER(LEN=*),INTENT(IN) :: fichnom
[1671]12
[1994]13  INTEGER,PARAMETER :: tab_cntrl_len=100
14  REAL :: tab_cntrl(tab_cntrl_len)
[1671]15
[1994]16  ! open file
[1671]17
[1994]18  CALL open_restartphy(fichnom)
[1671]19
[1994]20  ! tab_cntrl() contains run parameters
[1671]21
[1994]22  tab_cntrl(:)=0.0
[1671]23 
24
[1994]25  CALL put_var("controle", "Control parameters", tab_cntrl)
[1671]26
[1994]27  ! coordinates
[1671]28
[1994]29  CALL put_field("longitude", "Longitudes on physics grid", rlon)
[1671]30     
[1994]31  CALL put_field("latitude", "Latitudes on physics grid", rlat)
[1671]32
[1994]33  ! close file
[1671]34
[1994]35  CALL close_restartphy
36  !$OMP BARRIER
[1671]37
[1994]38END SUBROUTINE phyredem
Note: See TracBrowser for help on using the repository browser.