- Timestamp:
- Jan 9, 2019, 4:52:32 PM (6 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r2060 r2062 1423 1423 == 09/01/2018 == AB 1424 1424 - Add the thermal plume model (cf. Rio et al. 2010) extended to gas giant. Specific parameters are set in thermcell_mod. 1425 1425 - Add keys (back2lay_visname, back2lay_irname) to set aeroback2lay aerosol optprop files names and solve the name conflict between Saturn and Jupiter. 1426 Default values are the previously hard coded values. -
trunk/LMDZ.GENERIC/libf/phystd/callkeys_mod.F90
r2060 r2062 78 78 real,save :: obs_tau_col_strato 79 79 !$OMP THREADPRIVATE(Tstrat,tplanet,obs_tau_col_tropo,obs_tau_col_strato) 80 character(64),save :: optprop_back2lay_vis 81 character(64),save :: optprop_back2lay_ir 80 82 real,save :: pres_bottom_tropo 81 83 real,save :: pres_top_tropo -
trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90
r2060 r2062 553 553 write(*,*)" obs_tau_col_strato = ",obs_tau_col_strato 554 554 555 write(*,*)"TWOLAY AEROSOL: optprop_back2lay_vis?" 556 optprop_back2lay_vis = 'optprop_saturn_vis_n20.dat' 557 call getin_p("optprop_back2lay_vis",optprop_back2lay_vis) 558 write(*,*)" optprop_back2lay_vis = ",optprop_back2lay_vis 559 560 write(*,*)"TWOLAY AEROSOL: optprop_back2lay_ir?" 561 optprop_back2lay_ir = 'optprop_saturn_ir_n20.dat' 562 call getin_p("optprop_back2lay_ir",optprop_back2lay_ir) 563 write(*,*)" optprop_back2lay_ir = ",optprop_back2lay_ir 564 555 565 write(*,*)"TWOLAY AEROSOL: pres_bottom_tropo? in pa" 556 566 pres_bottom_tropo=66000.0 -
trunk/LMDZ.GENERIC/libf/phystd/suaer_corrk.F90
r2033 r2062 11 11 use radcommon_h, only: qrefvis,qrefir,omegarefir !,omegarefvis 12 12 use aerosol_mod 13 use callkeys_mod, only: tplanet 13 use callkeys_mod, only: tplanet, optprop_back2lay_vis, optprop_back2lay_ir 14 14 15 15 implicit none … … 67 67 INTEGER :: idomain ! Domain index (1=VIS,2=IR) 68 68 INTEGER :: ilw ! longwave index 69 INTEGER :: isw ! shortwave index69 INTEGER :: isw ! shortwave index 70 70 INTEGER :: isize ! Particle size index 71 71 INTEGER :: jfile ! ASCII file scan index … … 171 171 if (iaer.eq.iaero_back2lay) then 172 172 print*, 'naerkind= back2lay', iaer 173 174 ! visible 175 file_id(iaer,1) = 'optprop_saturn_vis_n20.dat'173 174 ! visible 175 file_id(iaer,1) = TRIM(optprop_back2lay_vis) 176 176 lamrefvis(iaer)=0.8E-6 ! 177 177 ! infrared 178 file_id(iaer,2) = 'optprop_saturn_ir_n20.dat'178 file_id(iaer,2) = TRIM(optprop_back2lay_ir) 179 179 lamrefir(iaer)=6.E-6 ! 180 180 ! added by SG … … 192 192 ! added by SG 193 193 endif 194 195 194 196 195 if (iaer.eq.iaero_aurora) then
Note: See TracChangeset
for help on using the changeset viewer.