Ignore:
Timestamp:
Apr 29, 2019, 2:52:42 PM (6 years ago)
Author:
jvatant
Message:

+ Add diagnostics of optical thickness, in 1D, if 'diagdtau' key is activated, it

outputs dtaui/v(altitude) in diagfi.nc for every narrowband (could be done with one var
but would require to be able to have writediag in 5D

--JVO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/phytitan/inifis_mod.F90

    r2078 r2131  
    336336     call getin_p("specOLR",specOLR)
    337337     write(*,*)" specOLR = ",specOLR
     338
     339     write(*,*)"Output diagnostic optical thickness?"
     340     diagdtau=.false.
     341     call getin_p("diagdtau",diagdtau)
     342     write(*,*)" diagdtau = ",diagdtau
     343     ! sanity check
     344     if (diagdtau.and.(ngrid.ne.1)) then
     345       print*,"Diagnostic optical thickness can be output in 1D only !"
     346       print*,"Start again with diagdtau=.false."
     347       stop
     348     endif
     349
    338350
    339351     write(*,*)"Uniform absorption in radiative transfer?"
Note: See TracChangeset for help on using the changeset viewer.