Ignore:
Timestamp:
Jun 20, 2017 9:51:42 AM (7 years ago)
Author:
schwenkel
Message:

implementation of new bulk microphysics scheme

File:
1 edited

Legend:

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

    r2233 r2292  
    2525! -----------------
    2626! $Id$
     27! Implementation of new microphysic scheme: cloud_scheme = 'morrison'
     28! includes two more prognostic equations for cloud drop concentration (nc) 
     29! and cloud water content (qc).
     30!
     31! 2233 2017-05-30 18:08:54Z suehring
    2732!
    2833! 2232 2017-05-30 17:47:52Z suehring
     
    155160
    156161    USE arrays_3d,                                                             &
    157         ONLY:  e, nr, p, pt, prr, q, qc, ql, ql_c, ql_v, qr, rho_ocean, s, sa, &
    158                tend, u, v, vpt, w
     162        ONLY:  e, nc, nr, p, pt, prr, q, qc, ql, ql_c, ql_v, qr, rho_ocean, s, &
     163               sa, tend, u, v, vpt, w
    159164       
    160165    USE averaging
     
    325330             ELSE
    326331                to_be_resorted => lpt_av
     332             ENDIF
     333
     334          CASE ( 'nc' )
     335             IF ( av == 0 )  THEN
     336                to_be_resorted => nc
     337             ELSE
     338                to_be_resorted => nc_av
    327339             ENDIF
    328340
Note: See TracChangeset for help on using the changeset viewer.