Ignore:
Timestamp:
Jun 13, 2024, 2:52:13 PM (5 months ago)
Author:
afalco
Message:

Pluto PCM: changed default params to match aerosol data. AF

Location:
trunk/LMDZ.PLUTO/libf/phypluto
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/libf/phypluto/inifis_mod.F90

    r3372 r3378  
    629629    ! use Pluto.old routines
    630630     if (is_master) write(*,*) trim(rname)//": use vdifc from old Pluto ?"
    631      oldplutovdifc=.true. ! default value
     631     oldplutovdifc=.false. ! default value
    632632     call getin_p("oldplutovdifc",oldplutovdifc)
    633633     if (is_master) write(*,*) trim(rname)//": oldplutovdifc = ",oldplutovdifc
     
    635635     if (is_master) write(*,*) trim(rname)//&
    636636       ": call pluto.old correlated-k radiative transfer ?"
    637      oldplutocorrk=.true. ! default value
     637     oldplutocorrk=.false. ! default value
    638638     call getin_p("oldplutocorrk",oldplutocorrk)
    639639     if (is_master) write(*,*) trim(rname)//": oldplutocorrk = ",oldplutocorrk
     
    641641     if (is_master) write(*,*) trim(rname)//&
    642642       ": call pluto.old sedimentation ?"
    643      oldplutosedim=.true. ! default value
     643     oldplutosedim=.false. ! default value
    644644     call getin_p("oldplutosedim",oldplutosedim)
    645645     if (is_master) write(*,*) trim(rname)//": oldplutosedim = ",oldplutosedim
  • trunk/LMDZ.PLUTO/libf/phypluto/radinc_h.F90

    r3184 r3378  
    1111!======================================================================
    1212!
    13 !     RADINC.H 
     13!     RADINC.H
    1414!
    1515!     Includes for the radiation code; RADIATION LAYERS, LEVELS,
    1616!     number of spectral intervals. . .
    17 ! 
     17!
    1818!======================================================================
    1919
     
    2727
    2828!     L_NLEVRAD corresponds to the surface - i.e., the GCM Level that
    29 !     is at the surface.  PLEV(L_NLEVRAD) = P(J,I)+PTROP, 
     29!     is at the surface.  PLEV(L_NLEVRAD) = P(J,I)+PTROP,
    3030!     PLEV(2) = PTROP, PLEV(1) = ptop
    3131
    3232!     L_NLAYRAD is the number of radiation code layers
    3333!     L_NLEVRAD is the number of radiation code levels.  Level N is the
    34 !               top of layer N. 
     34!               top of layer N.
    3535!
    3636!     L_NSPECTI is the number of IR spectral intervals
     
    3939!               GAUSS POINT 17 (aka the last one) is the special case
    4040!
    41 !     L_NPREF   is the number of reference pressures that the 
     41!     L_NPREF   is the number of reference pressures that the
    4242!               k-coefficients are calculated on
    4343!     L_PINT    is the number of Lagrange interpolated reference
     
    7474      real,    parameter :: L_TAUMAX  = 35
    7575
    76       ! For Planck function integration: 
     76      ! For Planck function integration:
    7777      ! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    7878      ! Integration boundary temperatures are NTstart/NTfac and Ntstop/NTfac
     
    8686
    8787      ! Maximum number of grain size classes for aerosol convolution:
    88       ! This must correspond to size of largest dataset used for aerosol 
     88      ! This must correspond to size of largest dataset used for aerosol
    8989      ! optical properties in datagcm folder.
    90       integer, parameter :: nsizemax = 60
     90      integer, parameter :: nsizemax = 200
    9191
    9292      character(len=100),save :: corrkdir
     
    105105  real*8, intent(in) :: tplanckmax
    106106  real*8, intent(in) :: dtplanck
    107  
     107
    108108  L_NLAYRAD = nbp_lev
    109109  L_LEVELS  = 2*(nbp_lev-1)+3
     
    113113  NTstart = int(tplanckmin * NTfac)
    114114  NTstop  = int(tplanckmax * NTfac)
    115  
     115
    116116  end subroutine
    117117
Note: See TracChangeset for help on using the changeset viewer.