Ignore:
Timestamp:
Mar 4, 2024, 6:58:03 PM (3 months ago)
Author:
crio
Message:

Nouvelle formulation du strig et correction thermiques montent trop haut

File:
1 edited

Legend:

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

    r4754 r4843  
    144144    REAL,SAVE :: tau_thermals_omp,alp_bl_k_omp
    145145    ! nrlmd le 10/04/2012
    146     INTEGER,SAVE :: iflag_trig_bl_omp,iflag_clos_bl_omp
     146    INTEGER,SAVE :: iflag_trig_bl_omp,iflag_clos_bl_omp,iflag_strig_omp
    147147    INTEGER,SAVE :: tau_trig_shallow_omp,tau_trig_deep_omp
    148     REAL,SAVE    :: s_trig_omp
     148    REAL,SAVE    :: s_trig_omp,h_trig_omp
    149149    ! fin nrlmd le 10/04/2012
    150150    REAL :: alp_offset
     
    15591559    CALL getin('iflag_trig_bl',iflag_trig_bl_omp)
    15601560
     1561    !Config Key  = iflag_strig
     1562    !Config Desc = 
     1563    !Config Def  = 0
     1564    !Config Help =
     1565    !
     1566    iflag_strig_omp = 0
     1567    CALL getin('iflag_strig',iflag_strig_omp)
     1568
    15611569    !Config Key  = s_trig_bl
    15621570    !Config Desc = 
     
    15661574    s_trig_omp = 2e7
    15671575    CALL getin('s_trig',s_trig_omp)
     1576
     1577    !Config Key  = h_trig
     1578    !Config Desc = 
     1579    !Config Def  = 0
     1580    !Config Help =
     1581    !
     1582    h_trig_omp = 6000.
     1583    CALL getin('h_trig',h_trig_omp)
    15681584
    15691585    !Config Key  = tau_trig_shallow
     
    24392455    ! nrlmd le 10/04/2012
    24402456    iflag_trig_bl = iflag_trig_bl_omp
     2457    iflag_strig = iflag_strig_omp
    24412458    s_trig = s_trig_omp
     2459    h_trig = h_trig_omp
    24422460    tau_trig_shallow = tau_trig_shallow_omp
    24432461    tau_trig_deep = tau_trig_deep_omp
     
    28352853    ! nrlmd le 10/04/2012
    28362854    WRITE(lunout,*) ' iflag_trig_bl = ', iflag_trig_bl
     2855    WRITE(lunout,*) ' iflag_strig = ', iflag_strig
    28372856    WRITE(lunout,*) ' s_trig = ', s_trig
     2857    WRITE(lunout,*) ' h_trig = ', h_trig
    28382858    WRITE(lunout,*) ' tau_trig_shallow = ', tau_trig_shallow
    28392859    WRITE(lunout,*) ' tau_trig_deep = ', tau_trig_deep
Note: See TracChangeset for help on using the changeset viewer.