Ignore:
Timestamp:
Jun 28, 2017 7:53:56 AM (7 years ago)
Author:
maronga
Message:

added new spinup mechanism for surface/radiation models

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/modules.f90

    r2292 r2296  
    2525! -----------------
    2626! $Id$
     27! Added parameters for model spinup
     28!
     29! 2292 2017-06-20 09:51:42Z schwenkel
    2730! Implementation of new microphysic scheme: cloud_scheme = 'morrison'
    2831! includes two more prognostic equations for cloud drop concentration (nc) 
     
    11441147    LOGICAL ::  constant_waterflux = .TRUE.                  !< water flux at all surfaces constant?
    11451148    LOGICAL ::  create_disturbances = .TRUE.                 !< namelist parameter
     1149    LOGICAL ::  data_output_during_spinup = .FALSE.          !< namelist parameter
    11461150    LOGICAL ::  data_output_2d_on_each_pe = .TRUE.           !< namelist parameter
    11471151    LOGICAL ::  disturbance_created = .FALSE.                !< flow disturbance imposed?
     
    11971201    LOGICAL ::  sloping_surface = .FALSE.                    !< use sloped surface?
    11981202                                                             !< (namelist parameter alpha_surface)
     1203    LOGICAL ::  spinup = .FALSE.                             !< perform model spinup without atmosphere code?
    11991204    LOGICAL ::  stop_dt = .FALSE.                            !< (Siggi add short description)
    12001205    LOGICAL ::  synchronous_exchange = .FALSE.               !< namelist parameter
     
    12731278    REAL(wp) ::  dt_restart = 9999999.9_wp                     !< namelist parameter
    12741279    REAL(wp) ::  dt_run_control = 60.0_wp                      !< namelist parameter
     1280    REAL(wp) ::  dt_spinup = 60.0_wp                           !< namelist parameter
    12751281    REAL(wp) ::  dt_3d = 1.0_wp                                !< time step
    12761282    REAL(wp) ::  dz = -1.0_wp                                  !< namelist parameter
     
    13301336    REAL(wp) ::  skip_time_do2d_yz = 9999999.9_wp              !< namelist parameter
    13311337    REAL(wp) ::  skip_time_do3d = 9999999.9_wp                 !< namelist parameter
     1338    REAL(wp) ::  spinup_pt_amplitude = 9999999.9_wp            !< namelist parameter
     1339    REAL(wp) ::  spinup_pt_mean = 9999999.9_wp                 !< namelist parameter
     1340    REAL(wp) ::  spinup_time = 0.0_wp                          !< namelist parameter
    13321341    REAL(wp) ::  surface_heatflux = 9999999.9_wp               !< namelist parameter
    13331342    REAL(wp) ::  surface_pressure = 1013.25_wp                 !< namelist parameter
Note: See TracChangeset for help on using the changeset viewer.