Changeset 3608


Ignore:
Timestamp:
Feb 3, 2025, 3:58:30 PM (6 hours ago)
Author:
jbclement
Message:

PEM:
Rescaling the pressure deviation to avoid disproportionate oscillations in case of huge average pressure drop.
JBC

Location:
trunk/LMDZ.COMMON/libf/evolution
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/changelog.txt

    r3603 r3608  
    566566- Bug correction about the pressure/teta reconstruction for the PCM (mismatch between the physical and dynamical grid).
    567567- Improvement of messages giving info about the PEM workflow in the terminal.
     568
     569== 03/02/2025 == JBC
     570Rescaling the pressure deviation to avoid disproportionate oscillations in case of huge average pressure drop.
  • trunk/LMDZ.COMMON/libf/evolution/pem.F90

    r3603 r3608  
    10881088write(*,*) '> Reconstructing the pressure for the PCM'
    10891089allocate(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
     1091ps_start = ps_avg + ps_dev*ps_avg_global_new/ps_avg_global_ini
    10911092deallocate(ps_avg,ps_dev)
    10921093
  • trunk/LMDZ.COMMON/libf/evolution/soil_thermalproperties_mod.F90

    r3525 r3608  
    9494real    :: ice_inertia                            ! Inertia of water ice [SI]
    9595
    96 write(*,*) "Update soil properties"
     96write(*,*) "> Updating soil properties"
    9797
    9898! 1. Modification of the regolith thermal inertia.
Note: See TracChangeset for help on using the changeset viewer.