Ignore:
Timestamp:
Dec 10, 2009, 10:02:56 AM (14 years ago)
Author:
Laurent Fairhead
Message:

Merged LMDZ4-dev branch changes r1241:1278 into the trunk
Running trunk and LMDZ4-dev in LMDZOR configuration on local
machine (sequential) and SX8 (4-proc) yields identical results
(restart and restartphy are identical binarily)
Log history from r1241 to r1278 is available by switching to
source:LMDZ4/branches/LMDZ4-dev-20091210

Location:
LMDZ4/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk

  • LMDZ4/trunk/libf/phylmd/phyredem.F

    r1001 r1279  
    1212      USE phys_state_var_mod
    1313      USE iostart
     14      USE traclmdz_mod, ONLY : traclmdz_to_restart
     15      USE infotrac
    1416
    1517      IMPLICIT none
     
    4244      REAL agesno(klon,nbsrf)
    4345      REAL run_off_lic_0(klon)
     46      REAL trs(klon,nbtr)
    4447c
    4548      INTEGER nid, nvarid, idim1, idim2, idim3
     
    5255      CHARACTER (len=7) :: str7
    5356      CHARACTER (len=2) :: str2
    54 
     57      INTEGER           :: it, iiq
     58     
    5559c======================================================================
    5660c
     
    7074         tab_cntrl(ierr) = 0.0
    7175      ENDDO
    72       tab_cntrl(1) = dtime
     76CC      tab_cntrl(1) = dtime
    7377      tab_cntrl(2) = radpas
     78c co2_ppm : current value of atmospheric CO2
    7479      tab_cntrl(3) = co2_ppm
    7580      tab_cntrl(4) = solaire
     
    8691      tab_cntrl(14) = annee_ref
    8792      tab_cntrl(15) = itau_phy
     93
     94c co2_ppm0 : initial value of atmospheric CO2
     95      tab_cntrl(16) = co2_ppm0
    8896c
    8997      CALL put_var("controle","Parametres de controle",tab_cntrl)
     
    311319      CALL put_field("WAKE_FIP","",wake_fip)
    312320
     321
     322! trs from traclmdz_mod
     323      IF (type_trac == 'lmdz') THEN
     324         CALL traclmdz_to_restart(trs)
     325         DO it=1,nbtr
     326            iiq=niadv(it+2)
     327            CALL put_field("trs_"//tname(iiq),"",trs(:,it))
     328         END DO
     329      END IF
     330
    313331      CALL close_restartphy
    314332!$OMP BARRIER
Note: See TracChangeset for help on using the changeset viewer.