Changeset 3172 for trunk/LMDZ.COMMON/libf/evolution
- Timestamp:
- Jan 8, 2024, 12:12:09 PM (11 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3171 r3172 192 192 == 05/01/2024 == LL 193 193 Add the possibily to output the soil fields during a PEM run in a dedicated diagsoilpem 194 195 == 08/01/2024 == LL 196 Fixing bug when rewritting the startfi.nc for the PCM: fluxgeo, read in the run_PEM.def, was not written in the startfi. 197 -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3171 r3172 71 71 72 72 #ifndef CPP_STD 73 use comsoil_h, only: tsoil, nsoilmx, ini_comsoil_h, inertiedat, mlayer, volcapa, inertiesoil, nqsoil, qsoil73 use comsoil_h, only: tsoil, nsoilmx, ini_comsoil_h, inertiedat, mlayer, volcapa, inertiesoil, flux_geo, nqsoil, qsoil 74 74 use surfdat_h, only: tsurf, emis, qsurf, watercap, ini_surfdat_h, & 75 75 albedodat, zmea, zstd, zsig, zgam, zthe, & … … 984 984 call interpol_TI_PEM2PCM(ngrid,nslope,nsoilmx_PEM,nsoilmx,TI_PEM,inertiesoil) 985 985 tsoil = tsoil_phys_PEM_timeseries(:,1:nsoilmx,:,timelen) 986 #ifndef CPP_STD 987 flux_geo(:,:) = fluxgeo 988 #endif 986 989 endif 987 990 -
trunk/LMDZ.COMMON/libf/evolution/pemredem.F90
r3149 r3172 19 19 20 20 ! create physics restart file and write time-independent variables 21 use comsoil_h_PEM, only: soil_pem,mlayer_PEM, fluxgeo,inertiedat_PEM21 use comsoil_h_PEM, only: soil_pem,mlayer_PEM,inertiedat_PEM 22 22 use iostart_PEM, only: open_restartphy, close_restartphy, put_var, put_field, length 23 23 use mod_grid_phy_lmdz, only: klon_glo … … 73 73 ! write time-dependent variable to restart file 74 74 use iostart_PEM, only: open_restartphy, close_restartphy, put_var, put_field 75 use comsoil_h_PEM, only: mlayer_PEM, fluxgeo,inertiedat_PEM, soil_pem75 use comsoil_h_PEM, only: mlayer_PEM, inertiedat_PEM, soil_pem 76 76 use time_evol_mod, only: year_bp_ini, convert_years 77 77
Note: See TracChangeset
for help on using the changeset viewer.