Changeset 2241


Ignore:
Timestamp:
Feb 17, 2020, 12:31:02 PM (5 years ago)
Author:
jvatant
Message:

Some updates of the deftank and the default values in inifis_mod
--JVO

Location:
trunk/LMDZ.TITAN
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/deftank/callphys.def

    r1948 r2241  
    4040# folder in which correlated-k data is stored ?
    4141  corrkdir   = 23x23
     42# use corr-k recombination instead of pre-mixed ?
     43corrk_recombin = .false.
    4244# call visible gaseous absorption in radiative transfer ?
    4345callgasvis = .true.
     
    8991## Microphysics
    9092## ~~~~~~~~~~~~
     93# use haze seasonal model ? ( if you run without coupled microphysics )
     94seashaze = .false.
    9195# call microphysics ? (must have tracer=true)
    9296callmufi = .false.
  • trunk/LMDZ.TITAN/deftank/profile.def

    r1681 r2241  
    1 #profile
    2 0.01443
    3 0.01443
    4 0.01443
    5 0.01442
    6 0.01442
    7 0.01442
    8 0.01442
    9 0.01442
    10 0.01442
    11 0.01443
    12 0.01443
    13 0.01443
    14 0.01443
    15 0.01443
    16 0.01443
    17 0.01443
    18 0.01443
    19 0.01443
    20 0.01443
    21 0.01443
    22 0.01443
    23 0.01443
    24 0.01443
    25 0.01442
    26 0.01442
    27 0.01441
    28 0.01439
    29 0.01438
    30 0.01436
    31 0.01434
    32 0.01431
    33 0.01427
    34 0.01423
    35 0.01419
    36 0.01414
    37 0.01410
    38 0.01406
    39 0.01403
    40 0.01401
    41 0.01399
    42 0.01398
    43 0.01398
    44 0.01400
    45 0.01522
    46 0.01835
    47 0.02281
    48 0.02810
    49 0.03370
    50 0.03926
    51 0.04420
    52 0.04781
    53 0.04953
    54 0.04964
    55 0.04968
    56 0.04982
     1#profile (Reference CH4 vertical profile (mol/mol) : surface->top)
     20.0565
     30.0567
     40.0568
     50.0572
     60.0572
     70.0575
     80.0544
     90.0476
     100.0393
     110.0319
     120.0267
     130.0232
     140.0200
     150.0181
     160.0168
     170.0159
     180.0152
     190.0148
     200.0148
     210.0148
     220.0148
     230.0148
     240.0148
     250.0148
     260.0148
     270.0148
     280.0148
     290.0148
     300.0148
     310.0148
     320.0148
     330.0148
     340.0148
     350.0148
     360.0148
     370.0148
     380.0148
     390.0148
     400.0148
     410.0148
     420.0148
     430.0148
     440.0148
     450.0148
     460.0148
     470.0148
     480.0148
     490.0148
     500.0148
     510.0148
     520.0148
     530.0148
     540.0148
     550.0148
     560.0148
  • trunk/LMDZ.TITAN/libf/phytitan/inifis_mod.F90

    r2138 r2241  
    187187     call getin_p("eff_gz", eff_gz)
    188188     write(*,*) "eff_gz = ", eff_gz
     189     
     190     ! sanity check warning
     191     if (eff_gz) then
     192       print*,"WARNING : You run chemistry with effective altitude-dependent gravity field !!"
     193       print*,"You will have no coherence in your heating rates between physics and dynamics !!"
     194       print*,"I let you continue but you should rather set eff_gz =.false. ..."
     195     endif
     196
    189197         
    190198! Test of incompatibility:
     
    237245       
    238246       write(*,*) "use correlated-k recombination instead of pre-mixed values ?"
    239        corrk_recombin=.true. ! default value
     247       corrk_recombin=.false.! default value
    240248       call getin_p("corrk_recombin",corrk_recombin)
    241249       write(*,*) " corrk_recombin = ",corrk_recombin
     
    361369     endif
    362370     
    363      ! sanity check warning
    364      if (callchim.and.(.not.eff_gz)) then
    365        print*,"WARNING : You run chemistry without effective altitude-dependent gravity field !!"
    366        print*,"You will have wrong vertical photodissociations rates, that's crazy !!"
    367        print*,"I let you continue but you should rather set eff_gz =.true. ..."
    368        !stop
    369      endif
    370 
    371 
    372371     write(*,*)"Chemistry is computed every ichim", &
    373372                   " physical timestep"
Note: See TracChangeset for help on using the changeset viewer.