Changeset 3608
- Timestamp:
- Feb 3, 2025, 3:58:30 PM (6 hours ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3603 r3608 566 566 - Bug correction about the pressure/teta reconstruction for the PCM (mismatch between the physical and dynamical grid). 567 567 - Improvement of messages giving info about the PEM workflow in the terminal. 568 569 == 03/02/2025 == JBC 570 Rescaling the pressure deviation to avoid disproportionate oscillations in case of huge average pressure drop. -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3603 r3608 1088 1088 write(*,*) '> Reconstructing the pressure for the PCM' 1089 1089 allocate(ps_start(ngrid)) 1090 ps_start = ps_avg + ps_dev 1090 ! The pressure deviation is rescaled to avoid disproportionate oscillations in case of huge average pressure drop 1091 ps_start = ps_avg + ps_dev*ps_avg_global_new/ps_avg_global_ini 1091 1092 deallocate(ps_avg,ps_dev) 1092 1093 -
trunk/LMDZ.COMMON/libf/evolution/soil_thermalproperties_mod.F90
r3525 r3608 94 94 real :: ice_inertia ! Inertia of water ice [SI] 95 95 96 write(*,*) " Updatesoil properties"96 write(*,*) "> Updating soil properties" 97 97 98 98 ! 1. Modification of the regolith thermal inertia.
Note: See TracChangeset
for help on using the changeset viewer.