Ignore:
Timestamp:
Feb 5, 2026, 5:50:37 PM (3 weeks ago)
Author:
aslmd
Message:

Titan PCM:

  • add possibility to release latent heat to the atmosphere due to gases condensation.
  • correct sign error on temperature tendency due to latent heat release in phytitan/cond_muphy.F90
  • add latent heat release flag in callphys.def ("latent_heat" : .true. or .false.).

EMo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/phytitan/cond_muphy.F90

    r3090 r4047  
    6969! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    7070do iq = 1, size(ices_indx)
    71     dtlc(:,:) = dtlc(:,:) + (dqmuficond(:,:,iq) * Lc(:,:,iq))
     71    dtlc(:,:) = dtlc(:,:) - (dqmuficond(:,:,iq) * Lc(:,:,iq))
    7272enddo
    7373
     
    7575! Condensation heating rate :
    7676! ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    77 ! If ice formation  : dqmuficond > 0 --> dtlc > 0
    78 ! Else vaporisation : dqmuficond < 0 --> dtlc < 0
     77! If ice formation  : dqmuficond < 0 --> dtlc > 0
     78! Else vaporisation : dqmuficond > 0 --> dtlc < 0
    7979dtlc(:,:) = dtlc(:,:) / cpp ! [K.s-1]
    8080
Note: See TracChangeset for help on using the changeset viewer.