Ignore:
Timestamp:
Jul 30, 2021, 4:27:30 PM (3 years ago)
Author:
asima
Message:

In the "bucket" soil model, soil thermal inertia (formerly a constant value) can also be now a function of soil moisture "qsol"
(F Cheruy's idea; results from "Stage L3" Eve Rebouillat, with E Vignon, A Sima, F Cheruy).

The function depends on iflag_inertie, read from physiq.def (via conf_phys_m.F90), as follows :
(only in physiq.def_NPv6.1 for the time being)


# Controle de la definition de l'inertie thermique du sol dans le modele "bucket":
# 0 (default) : constant
# 1 : fonction lineaire de qsol
# 2 : 2 fonctions lineaires de qsol :
# une pour "sable" (boite lat/lon pour Sahara), une pour le reste (limons et argile)
# 3 : fonction lineaire de qsol, valeurs entre 900 pour qsol=0 et 2000 pour qsol=150

iflag_inertie=0


Relevant changes are in soil.F90 and physiq.def_NPv6.1 ; the other files are adjusted accordingly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/surf_land_bucket_mod.F90

    r2351 r3974  
    2424    USE cpl_mod
    2525    USE dimphy
    26     USE geometry_mod, ONLY: latitude
     26    USE geometry_mod, ONLY: longitude,latitude
    2727    USE mod_grid_phy_lmdz
    2828    USE mod_phys_lmdz_para
     
    103103       
    104104! calculate temperature, heat capacity and conduction flux in soil
    105     IF (soil_model) THEN
    106        CALL soil(dtime, is_ter, knon, snow, tsurf, tsoil, soilcap, soilflux)
     105    IF (soil_model) THEN
     106       CALL soil(dtime, is_ter, knon, snow, tsurf, qsol,  &
     107        & longitude(knindex(1:knon)), latitude(knindex(1:knon)), tsoil, soilcap, soilflux)
     108
    107109       DO i=1, knon
    108110          cal(i) = RCPD / soilcap(i)
Note: See TracChangeset for help on using the changeset viewer.