Ignore:
Timestamp:
Mar 12, 2010, 11:54:11 AM (14 years ago)
Author:
Laurent Fairhead
Message:

Improvements concerning wake parametrisation (from JYG, NR, IT, with more to come).
Alp_offset is read in form physiq.def file


Améliorations à la paramétrisation des poches froides (de JYG, NR, IT, d'autres
sont à venir)
Alp_offset est rajouté à la liste des paramètres lus dans physiq.def

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4V5.0-dev/libf/phylmd/conf_phys.F90

    r1299 r1322  
    2222                       iflag_thermals,nsplit_thermals,tau_thermals, &
    2323                       iflag_thermals_ed,iflag_thermals_optflux, &
    24                        iflag_coupl,iflag_clos,iflag_wake, read_climoz)
     24                       iflag_coupl,iflag_clos,iflag_wake, read_climoz, &
     25                       alp_offset)
    2526
    2627   use IOIPSL
     
    110111  integer :: iflag_clos
    111112  integer :: iflag_wake
     113  real :: alp_offset
     114  REAL, SAVE :: alp_offset_omp
    112115  integer,SAVE :: iflag_coupl_omp,iflag_clos_omp,iflag_wake_omp
    113116  integer,SAVE :: iflag_cvl_sigd_omp
     
    10321035  iflag_wake_omp = 0
    10331036  call getin('iflag_wake',iflag_wake_omp)
     1037
     1038!Config Key  = alp_offset
     1039!Config Desc = 
     1040!Config Def  = 0
     1041!Config Help =
     1042!
     1043  alp_offset_omp = 0.01
     1044  call getin('alp_offset',alp_offset_omp)
    10341045
    10351046!
     
    14491460    iflag_clos = iflag_clos_omp
    14501461    iflag_wake = iflag_wake_omp
     1462    alp_offset = alp_offset_omp
    14511463    iflag_cvl_sigd = iflag_cvl_sigd_omp
    14521464    type_run = type_run_omp
     
    16161628  write(numout,*)' Fmax = ', Fmax
    16171629  write(numout,*)' alphas = ', alphas
     1630  write(numout,*)' iflag_wake = ', iflag_wake
     1631  write(numout,*)' alp_offset = ', alp_offset
    16181632
    16191633  write(numout,*)' lonmin lonmax latmin latmax bilKP_ins =',&
Note: See TracChangeset for help on using the changeset viewer.