Ignore:
Timestamp:
Apr 8, 2009, 12:47:23 PM (16 years ago)
Author:
jghattas
Message:

Ajoute des variables q2m et t2m comme argument d'entrees dans ORCHIDEE. Pour cela, ajoute de la calcul de ces variables avec stdlevvar avant calcul sur sous-surface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4-dev/libf/phylmd/surf_land_orchidee_mod.F90

    r1132 r1144  
    3636       tq_cdrag, petAcoef, peqAcoef, petBcoef, peqBcoef, &
    3737       precip_rain, precip_snow, lwdown, swnet, swdown, &
    38        ps, &
     38       ps, q2m, t2m, &
    3939       evap, fluxsens, fluxlat, &             
    4040       tsol_rad, tsurf_new, alb1_new, alb2_new, &
     
    120120    REAL, DIMENSION(klon), INTENT(IN)         :: precip_rain, precip_snow
    121121    REAL, DIMENSION(klon), INTENT(IN)         :: lwdown, swnet, swdown, ps
    122     REAL, DIMENSION(klon)                     :: swdown_vrai
     122    REAL, DIMENSION(klon), INTENT(IN)         :: q2m, t2m
    123123
    124124! Parametres de sortie
     
    133133    INTEGER                                   :: ij, jj, igrid, ireal, index
    134134    INTEGER                                   :: error
     135    REAL, DIMENSION(klon)                     :: swdown_vrai
    135136    CHARACTER (len = 20)                      :: modname = 'surf_land_orchidee'
    136137    CHARACTER (len = 80)                      :: abort_message
     
    391392               evap, fluxsens, fluxlat, coastalflow, riverflow, &
    392393               tsol_rad, tsurf_new, qsurf, albedo_out, emis_new, z0_new, &
    393                lon_scat, lat_scat)
     394               lon_scat, lat_scat, q2m, t2m)
    394395#endif         
    395396       ENDIF
     
    415416            evap(1:knon), fluxsens(1:knon), fluxlat(1:knon), coastalflow(1:knon), riverflow(1:knon), &
    416417            tsol_rad(1:knon), tsurf_new(1:knon), qsurf(1:knon), albedo_out(1:knon,:), emis_new(1:knon), z0_new(1:knon), &
    417             lon_scat, lat_scat)
     418            lon_scat, lat_scat, q2m, t2m)
    418419#endif       
    419420    ENDIF
Note: See TracChangeset for help on using the changeset viewer.