Changeset 1647 for trunk/LMDZ.TITAN/libf/phytitan/suaer_corrk.F90
- Timestamp:
- Jan 11, 2017, 3:33:51 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/suaer_corrk.F90
r1529 r1647 42 42 ! MODIF R. Wordsworth (2009) 43 43 ! - generalisation to arbitrary spectral bands 44 ! 45 !================================================================== 44 ! 45 ! WARNING : Titan adapt. (J. Vatant d'Ollone, 2017) 46 ! - ONLY THE NO AEROSOL CASE FOR NOW SINCE WE COMPUTE THEM ANOTHER WAY ! 47 ! - This routine is just here to keep the code running without unplugging all (yet) 48 !================================================================================================ 46 49 47 50 ! Optical properties (read in external ASCII files) … … 106 109 endif 107 110 do iaer=1,naerkind 108 if (iaer.eq. iaero_co2) then111 if (iaer.eq.1) then ! JVO 2017 : Now iaer = 1 is always dummy co2 for noaero case, since we don't use aerosols 109 112 forgetit=.true. 110 if (.not.noaero) then111 print*, 'naerkind= co2', iaer112 end if113 113 ! visible 114 114 if(forgetit)then … … 130 130 ! JB thinks this shouldn't matter too much, but it needs to be 131 131 ! fixed / decided for the final version. 132 133 if (iaer.eq.iaero_h2o) then134 print*, 'naerkind= h2o', iaer135 136 ! visible137 file_id(iaer,1) = 'optprop_icevis_n50.dat'138 lamrefvis(iaer)=1.5E-6 ! 1.5um OMEGA/MEx139 ! infrared140 file_id(iaer,2) = 'optprop_iceir_n50.dat'141 lamrefir(iaer)=12.1E-6 ! 825cm-1 TES/MGS142 endif143 144 if (iaer.eq.iaero_dust) then145 print*, 'naerkind= dust', iaer146 147 ! visible148 file_id(iaer,1) = 'optprop_dustvis_n50.dat'149 !lamrefvis(iaer)=1.5E-6 ! 1.5um OMEGA/MEx150 lamrefvis(iaer)=0.67e-6151 ! infrared152 file_id(iaer,2) = 'optprop_dustir_n50.dat'153 !lamrefir(iaer)=12.1E-6 ! 825cm-1 TES/MGS154 lamrefir(iaer)=9.3E-6155 endif156 157 if (iaer.eq.iaero_h2so4) then158 print*, 'naerkind= h2so4', iaer159 160 ! visible161 file_id(iaer,1) = 'optprop_h2so4vis_n20.dat'162 !lamrefir(iaer)= doesn't exist?163 lamrefvis(iaer)=1.5E-6 ! no idea, must find164 ! infrared165 file_id(iaer,2) = 'optprop_h2so4ir_n20.dat'166 !lamrefir(iaer)=12.1E-6 ! 825cm-1 TES/MGS167 lamrefir(iaer)=9.3E-6 ! no idea, must find168 ! added by LK169 endif170 132 171 133 if (iaer.eq.iaero_back2lay) then … … 328 290 329 291 jfile = jfile+1 330 IF ((idomain.NE. iaero_co2).OR.(iaer.NE.iaero_co2)) THEN292 IF ((idomain.NE.1).OR.(iaer.NE.1)) THEN 331 293 endwhile = .true. 332 294 ENDIF … … 346 308 347 309 ! 1.5 If Francois' data, convert wvl to metres 348 if(iaer.eq. iaero_co2)then310 if(iaer.eq.1)then 349 311 if(forgetit)then 350 312 ! print*,'please sort out forgetit for naerkind>1'
Note: See TracChangeset
for help on using the changeset viewer.