Ignore:
Timestamp:
Mar 20, 2015, 7:53:17 AM (9 years ago)
Author:
fhourdin
Message:

Prise en compte des nouveaux alebedo dans les fichiers de redémarrage.
Retour à 1+1=2

Taking into account new albedos in restart files. 1+1=2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/phyredem.F90

    r2209 r2237  
    5151  REAL tab_cntrl(length)
    5252
    53   INTEGER isoil, nsrf
     53  INTEGER isoil, nsrf,isw
    5454  CHARACTER (len=7) :: str7
    5555  CHARACTER (len=2) :: str2
     
    142142  ENDDO
    143143
     144! ================== Albedo =======================================
     145  print*,'PHYREDEM NOUVEAU'
     146  DO nsrf = 1, nbsrf
     147     DO isw=1, nsw
     148        IF (isw.LE.99 .AND. nsrf.LE.99) THEN
     149           WRITE(str7, '(i2.2, "srf", i2.2)') isw, nsrf
     150  print*,'PHYREDEM ',"A_dir_SW"//str7
     151           CALL put_field("A_dir_SW"//str7, "Albedo direct du sol bande "//str7, &
     152                falb_dir(:, isw, nsrf))
     153           CALL put_field("A_dif_SW"//str7, "Albedo difus du sol bande "//str7, &
     154                falb_dif(:, isw, nsrf))
     155        ELSE
     156           PRINT*, "Trop de couches"
     157           call abort_gcm("phyredem", "", 1)
     158        ENDIF
     159     ENDDO
     160  ENDDO
     161
     162! ================== Tsoil =======================================
    144163  DO nsrf = 1, nbsrf
    145164     DO isoil=1, nsoilmx
Note: See TracChangeset for help on using the changeset viewer.