Ignore:
Timestamp:
Nov 28, 2019, 5:07:28 PM (5 years ago)
Author:
acozic
Message:

several commit for branche IPSLCM5A2

  • comment a lot of write on infotrac
  • add initialization for variable pbl_tke (it's use before to be calculed)
  • comment condition to call aerosol_meteo_calc because this routine is now call by all inca version
  • add a condition on output write of od550aer, o865aer, ...loaddust (there are calculed by lmdz only when we work in new physic)
Location:
LMDZ5/branches/IPSLCM5A2.1/libf/phylmd
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/phys_output_write_mod.F90

    r2580 r3606  
    10091009!--OLIVIER
    10101010!This is warranted by treating INCA aerosols as offline aerosols
    1011 !       IF (new_aod .and. (.not. aerosol_couple)) THEN
    1012        IF (new_aod) THEN
     1011       IF (new_aod .and. (.not. aerosol_couple)) THEN
     1012!       IF (new_aod) THEN
    10131013          IF (flag_aerosol.GT.0) THEN
    10141014             CALL histwrite_phy(o_od550aer, od550aer)
  • LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/phys_state_var_mod.F90

    r2499 r3606  
    455455      ALLOCATE(ratqs(klon,klev))
    456456      ALLOCATE(pbl_tke(klon,klev+1,nbsrf+1))
     457      pbl_tke(:,:,:) = 0.
    457458!nrlmd<
    458459      ALLOCATE(delta_tsurf(klon,nbsrf))
  • LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/physiq_mod.F90

    r3576 r3606  
    33593359
    33603360       call chemtime(itap+itau_phy-1, date0, dtime, itap)
    3361        IF (config_inca == 'aero' .OR. config_inca == 'aeNP') THEN
    3362           CALL AEROSOL_METEO_CALC( &
    3363                calday,pdtphys,pplay,paprs,t,pmflxr,pmflxs, &
    3364                prfl,psfl,pctsrf,cell_area, &
    3365                latitude_deg,longitude_deg,u10m,v10m)
    3366        END IF
     3361       CALL AEROSOL_METEO_CALC( &
     3362            calday,pdtphys,pplay,paprs,t,pmflxr,pmflxs, &
     3363            prfl,psfl,pctsrf,cell_area, &
     3364           latitude_deg,longitude_deg,u10m,v10m)
    33673365
    33683366       zxsnow_dummy(:) = 0.0
Note: See TracChangeset for help on using the changeset viewer.