Changeset 3348 for trunk/LMDZ.MARS


Ignore:
Timestamp:
May 29, 2024, 11:12:58 PM (6 months ago)
Author:
jnaar
Message:

Hardcoded threshold in vdifc subtimestep now changed to callphys variable "frost_albedo_threshold" for clarity and flexibility. JN

Location:
trunk/LMDZ.MARS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/changelog.txt

    r3346 r3348  
    46564656== 23/05/2024 == JBC
    46574657Correction of a variable name in the xml definition file causing an XIOS error because of a change in r3337.
     4658
     4659== 29/05/2024 == JN
     4660Following commit r3337, threshold for vdifc subtimestep is no longer hardcoded
     4661and explicitly commented.
  • trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F

    r3337 r3348  
    14871487c et en adaptant avec un critere "dtmax" du chauffage a accomoder
    14881488c dtmax est regle empiriquement (pour l'instant) a 0.5 K
     1489      use surfdat_h, only: frost_albedo_threshold
    14891490
    14901491      integer,intent(in) :: naersize
     
    14991500
    15001501      do i=1,naersize
    1501         if ((qsurf(i).lt.0.005).and.
     1502c     If not on permanent ice or thin frost layer :
     1503c     do not use a subtimestep (ntsub=1)
     1504        if ((qsurf(i).lt.frost_albedo_threshold).and.
    15021505     &      (.not.watercaptag(i))) then
    15031506          ntsub(i) = 1
Note: See TracChangeset for help on using the changeset viewer.