Ignore:
Timestamp:
Oct 6, 2014, 6:31:06 PM (10 years ago)
Author:
tnavarro
Message:

New option dustiropacity in callphys.def to change the reference IR opacity of dust + New output dsodust (density-scaled opacity). Without the use of this option, nothing changes for the uninformed user.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r1268 r1353  
    371371#endif
    372372
     373! Dust IR opacity
     374         write(*,*)" Wavelength for infrared opacity of dust ?"
     375         write(*,*)" Choices are:"
     376         write(*,*)" tes  --- > 9.3 microns  [default]"
     377         write(*,*)" mcs  --- > 21.6 microns"
     378         !
     379         ! WARNING WARNING WARNING WARNING WARNING WARNING
     380         !
     381         ! BEFORE ADDING A NEW VALUE, BE SURE THAT THE
     382         ! CORRESPONDING WAVELENGTH IS IN THE LOOKUP TABLE,
     383         ! OR AT LEAST NO TO FAR, TO AVOID FALLACIOUS INTERPOLATIONS.
     384         !
     385         dustiropacity="tes" !default value - is expected to shift to mcs one day
     386         call getin("dustiropacity",dustiropacity)
     387         write(*,*)" dustiropacity = ",trim(dustiropacity)
     388         select case (trim(dustiropacity))
     389           case ("tes")
     390             dustrefir = 9.3E-6
     391           case ("mcs")
     392             dustrefir = 21.6E-6
     393           case default
     394              write(*,*) trim(dustiropacity),
     395     &                  " is not a valid option for dustiropacity"
     396             stop
     397         end select
     398
    373399! callddevil
    374400         write(*,*)" dust lifted by dust devils ?"
Note: See TracChangeset for help on using the changeset viewer.