Ignore:
Timestamp:
Apr 7, 2016 7:49:42 AM (8 years ago)
Author:
hoffmann
Message:

changes in LPM and bulk cloud microphysics

File:
1 edited

Legend:

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

    r1818 r1822  
    1919! Current revisions:
    2020! -----------------
    21 !
     21! icloud_scheme removed. microphyisics_seifert added.
    2222!
    2323! Former revisions:
     
    139139               cloud_physics, dt_3d, humidity,                                 &
    140140               ibc_pt_b, ibc_pt_t, ibc_q_b, ibc_q_t, ibc_sa_t, ibc_uv_b,       &
    141                ibc_uv_t, icloud_scheme, inflow_l, inflow_n, inflow_r, inflow_s,&
    142                intermediate_timestep_count, large_scale_forcing, nest_domain,  &
    143                nest_bound_l, nest_bound_s, nudging, ocean,                     &
    144                outflow_l, outflow_n, outflow_r, outflow_s, passive_scalar,     &
    145                precipitation, tsc, use_cmax
     141               ibc_uv_t, inflow_l, inflow_n, inflow_r, inflow_s,               &
     142               intermediate_timestep_count, large_scale_forcing,               &
     143               microphysics_seifert, nest_domain, nest_bound_l, nest_bound_s,  &
     144               nudging, ocean, outflow_l, outflow_n, outflow_r, outflow_s,     &
     145               passive_scalar, tsc, use_cmax
    146146
    147147    USE grid_variables,                                                        &
     
    319319       ENDIF
    320320
    321        IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  precipitation )  THEN
     321       IF ( cloud_physics  .AND.  microphysics_seifert )  THEN
    322322!             
    323323!--       Surface conditions rain water (Dirichlet)
     
    373373       IF ( humidity  .OR.  passive_scalar )  THEN
    374374          q_p(:,nys-1,:) = q_p(:,nys,:)
    375           IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.              &
    376                precipitation)  THEN
     375          IF ( cloud_physics  .AND.  microphysics_seifert )  THEN
    377376             qr_p(:,nys-1,:) = qr_p(:,nys,:)
    378377             nr_p(:,nys-1,:) = nr_p(:,nys,:)
     
    384383       IF ( humidity  .OR.  passive_scalar )  THEN
    385384          q_p(:,nyn+1,:) = q_p(:,nyn,:)
    386           IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.              &
    387                precipitation )  THEN
     385          IF ( cloud_physics  .AND.  microphysics_seifert )  THEN
    388386             qr_p(:,nyn+1,:) = qr_p(:,nyn,:)
    389387             nr_p(:,nyn+1,:) = nr_p(:,nyn,:)
     
    395393       IF ( humidity  .OR.  passive_scalar )  THEN
    396394          q_p(:,:,nxl-1) = q_p(:,:,nxl)
    397           IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.              &
    398                precipitation )  THEN
     395          IF ( cloud_physics  .AND.  microphysics_seifert )  THEN
    399396             qr_p(:,:,nxl-1) = qr_p(:,:,nxl)
    400397             nr_p(:,:,nxl-1) = nr_p(:,:,nxl)
     
    406403       IF ( humidity .OR. passive_scalar )  THEN
    407404          q_p(:,:,nxr+1) = q_p(:,:,nxr)
    408           IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  precipitation )  THEN
     405          IF ( cloud_physics  .AND.  microphysics_seifert )  THEN
    409406             qr_p(:,:,nxr+1) = qr_p(:,:,nxr)
    410407             nr_p(:,:,nxr+1) = nr_p(:,:,nxr)
Note: See TracChangeset for help on using the changeset viewer.