Ignore:
Timestamp:
Jan 28, 2026, 3:06:52 PM (4 weeks ago)
Author:
mmaurice
Message:

Generic PCM

Introduce molecular viscosity module. Add callconduc and callmolvis
flags to call conduction and molecular viscosity, respectively. Change
phitop in conduction to phitop_conduc (there is also phitop_molvis now).
Move thermal conductivity lambda to conc_mod.F90.

MM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90

    r3942 r4033  
    292292     if(callthermos) then
    293293       if (is_master) write(*,*) trim(rname)//&
     294        ": call thermospheric conduction ?"
     295       callconduc=.true. ! default value
     296       call getin_p("conduction",callconduc)
     297       if (is_master) write(*,*) trim(rname)//&
     298         ": conduction = ",callconduc
     299       if (is_master) write(*,*) trim(rname)//&
     300         ": call thermospheric viscosity ?"
     301         callmolvis=.true. ! default value
     302       call getin_p("molvis",callmolvis)
     303       if (is_master) write(*,*) trim(rname)//&
     304          ": molvis = ",callmolvis
     305       if (is_master) write(*,*) trim(rname)//&
    294306         ": flux from thermosphere ? W/m2"
    295        phitop = 0.0 ! default value
    296        call getin_p("phitop",phitop)
     307       phitop_conduc = 0.0 ! default value
     308       call getin_p("phitop_conduc",phitop_conduc)
    297309       if (is_master) write(*,*) trim(rname)//&
    298          ": phitop = ",phitop
     310         ": phitop_conduc = ",phitop_conduc
     311        if (is_master) write(*,*) trim(rname)//&
     312         ": momentum flux from thermosphere ?"
     313       phitop_molvis = 0.0 ! default value
     314       call getin_p("phitop_molvis",phitop_molvis)
     315        if (is_master) write(*,*) trim(rname)//&
     316         ": phitop_molvis = ",phitop_molvis
    299317       if (is_master) write(*,*) trim(rname)//&
    300318         ": Thickness of conduction ? m"
Note: See TracChangeset for help on using the changeset viewer.