Changeset 3442
- Timestamp:
- Sep 27, 2024, 5:29:39 PM (8 weeks ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3432 r3442 430 430 == 20/09/2024 == JBC 431 431 Small corrections for the launching script (run numbers must be integer) and the PEM stopping criteria algorithm related to r3430. 432 433 == 27/09/2024 == JBC 434 Correction: the potential temperature teta is now updated due to the change of surface pressure at the end of the PEM to write the "restart.nc" file. -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3432 r3442 83 83 use mod_phys_lmdz_para, only: is_parallel, is_sequential, is_mpi_root, is_omp_root, is_master 84 84 use planete_h, only: aphelie, periheli, year_day, peri_day, obliquit, iniorbit 85 use comcstfi_h, only: pi, rad, g, cpp,mugaz, r85 use comcstfi_h, only: pi, rad, g, mugaz, r 86 86 use surfini_mod, only: surfini 87 use comconst_mod, only: kappa, cpp 87 88 #else 88 89 use tracer_h, only: noms, igcm_h2o_ice, igcm_co2 ! Tracer names … … 92 93 use aerosol_mod, only: iniaerosol 93 94 use planete_mod, only: apoastr, periastr, year_day, peri_day, obliquit 94 use comcstfi_mod, only: pi, rad, g, cpp,mugaz, r95 use comcstfi_mod, only: pi, rad, g, mugaz, r 95 96 #endif 96 97 … … 138 139 real, dimension(:,:,:), allocatable :: q ! champs advectes 139 140 real, dimension(ip1jmp1) :: ps ! pression au sol 141 real, dimension(ip1jmp1) :: ps0 ! pression au sol initiale 140 142 real, dimension(:), allocatable :: ps_start_PCM ! (ngrid) surface pressure 141 143 real, dimension(:,:), allocatable :: ps_timeseries ! (ngrid x timelen) instantaneous surface pressure … … 409 411 ps_start_PCM(1) = ps(1) 410 412 #endif 413 414 ! Save initial surface pressure 415 ps0 = ps 411 416 412 417 ! In the PCM, these values are given to the physic by the dynamic. … … 1140 1145 allocate(p(ip1jmp1,nlayer + 1)) 1141 1146 #ifndef CPP_1D 1142 call pression (ip1jmp1,ap,bp,ps,p) 1147 ! Correction on teta due to surface pressure changes 1148 do l = 1,nlayer 1149 do i = 1,ip1jmp1 1150 teta(i,l)= teta(i,l)*(1 + (ps(i) - ps0(i))*year_iter/ps(i))**kappa 1151 enddo 1152 enddo 1153 ! Correction on atmospheric pressure 1154 call pression(ip1jmp1,ap,bp,ps,p) 1155 ! Correction on the mass of atmosphere 1143 1156 call massdair(p,masse) 1144 1157 call dynredem0("restart.nc",day_ini,phis)
Note: See TracChangeset
for help on using the changeset viewer.