Ignore:
Timestamp:
Apr 9, 2009, 12:11:35 PM (15 years ago)
Author:
Laurent Fairhead
Message:

Réintegration dans le tronc des modifications issues de la branche LMDZ-dev
comprises entre la révision 1074 et 1145
Validation: une simulation de 1 jour en séquentiel sur PC donne les mêmes
résultats entre la trunk et la dev
LF

Location:
LMDZ4/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk

  • LMDZ4/trunk/libf/phylmd/surf_land_orchidee_mod.F90

    r1067 r1146  
    11!
    22MODULE surf_land_orchidee_mod
     3#ifndef ORCHIDEE_NOOPENMP
    34!
    45! This module controles the interface towards the model ORCHIDEE
     
    3536       tq_cdrag, petAcoef, peqAcoef, petBcoef, peqBcoef, &
    3637       precip_rain, precip_snow, lwdown, swnet, swdown, &
    37        ps, &
     38       ps, q2m, t2m, &
    3839       evap, fluxsens, fluxlat, &             
    3940       tsol_rad, tsurf_new, alb1_new, alb2_new, &
     
    119120    REAL, DIMENSION(klon), INTENT(IN)         :: precip_rain, precip_snow
    120121    REAL, DIMENSION(klon), INTENT(IN)         :: lwdown, swnet, swdown, ps
    121     REAL, DIMENSION(klon)                     :: swdown_vrai
     122    REAL, DIMENSION(klon), INTENT(IN)         :: q2m, t2m
    122123
    123124! Parametres de sortie
     
    132133    INTEGER                                   :: ij, jj, igrid, ireal, index
    133134    INTEGER                                   :: error
     135    REAL, DIMENSION(klon)                     :: swdown_vrai
    134136    CHARACTER (len = 20)                      :: modname = 'surf_land_orchidee'
    135137    CHARACTER (len = 80)                      :: abort_message
     
    390392               evap, fluxsens, fluxlat, coastalflow, riverflow, &
    391393               tsol_rad, tsurf_new, qsurf, albedo_out, emis_new, z0_new, &
    392                lon_scat, lat_scat)
     394               lon_scat, lat_scat, q2m, t2m)
    393395#endif         
    394396       ENDIF
     
    414416            evap(1:knon), fluxsens(1:knon), fluxlat(1:knon), coastalflow(1:knon), riverflow(1:knon), &
    415417            tsol_rad(1:knon), tsurf_new(1:knon), qsurf(1:knon), albedo_out(1:knon,:), emis_new(1:knon), z0_new(1:knon), &
    416             lon_scat, lat_scat)
     418            lon_scat, lat_scat, q2m, t2m)
    417419#endif       
    418420    ENDIF
     
    632634!****************************************************************************************
    633635!
    634 
     636#endif
    635637END MODULE surf_land_orchidee_mod
Note: See TracChangeset for help on using the changeset viewer.