Ignore:
Timestamp:
Apr 7, 2016 1:15:51 PM (8 years ago)
Author:
hoffmann
Message:

cloud physics variables renamed

File:
1 edited

Legend:

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

    r1823 r1831  
    1919! Current revisions:
    2020! ------------------
    21 !
     21! turbulence renamed collision_turbulence,
     22! drizzle renamed cloud_water_sedimentation. cloud_water_sedimentation also
     23! avaialble for microphysics_kessler.
    2224!
    2325! Former revisions:
     
    163165
    164166       USE cloud_parameters,                                                   &
    165            ONLY:  cp, hyrho, prr, pt_d_t, r_d, t_d_pt
     167           ONLY:  cloud_water_sedimentation, cp, hyrho, prr, pt_d_t, r_d, t_d_pt
    166168
    167169       USE control_parameters,                                                 &
    168            ONLY:  call_microphysics_at_all_substeps, drizzle, dt_3d, dt_micro, &
     170           ONLY:  call_microphysics_at_all_substeps, dt_3d, dt_micro,          &
    169171                  g, intermediate_timestep_count, large_scale_forcing,         &
    170172                  lsf_surf, microphysics_kessler, microphysics_seifert,        &
     
    223225
    224226          CALL autoconversion_kessler
     227          IF ( cloud_water_sedimentation )  CALL sedimentation_cloud
    225228
    226229       ELSEIF ( microphysics_seifert )  THEN
     
    232235          CALL evaporation_rain
    233236          CALL sedimentation_rain
    234 
    235           IF ( drizzle )  CALL sedimentation_cloud
     237          IF ( cloud_water_sedimentation )  CALL sedimentation_cloud
    236238
    237239       ENDIF
     
    306308       USE cloud_parameters,                                                   &
    307309           ONLY:  a_1, a_2, a_3, b_1, b_2, b_3, beta_cc, c_1, c_2, c_3,        &
    308                   c_const, dpirho_l, eps_sb, hyrho, k_cc, kin_vis_air,         &
    309                   nc_const, x0
     310                  c_const, collision_turbulence, dpirho_l, eps_sb, hyrho,      &
     311                  k_cc, kin_vis_air, nc_const, x0
    310312
    311313       USE control_parameters,                                                 &
    312            ONLY:  dt_micro, rho_surface, turbulence
     314           ONLY:  dt_micro, rho_surface
    313315
    314316       USE cpulog,                                                             &
     
    371373!--                Parameterized turbulence effects on autoconversion (Seifert,
    372374!--                Nuijens and Stevens, 2010)
    373                    IF ( turbulence )  THEN
     375                   IF ( collision_turbulence )  THEN
    374376!
    375377!--                   Weight averaged radius of cloud droplets:
     
    495497
    496498       USE cloud_parameters,                                                   &
    497            ONLY:  eps_sb, hyrho, k_cr0
     499           ONLY:  collision_turbulence, eps_sb, hyrho, k_cr0
    498500
    499501       USE control_parameters,                                                 &
    500            ONLY:  dt_micro, rho_surface, turbulence
     502           ONLY:  dt_micro, rho_surface
    501503
    502504       USE cpulog,                                                             &
     
    537539!--                Nuijens and Stevens, 2010). The factor of 1.0E4 is needed to
    538540!--                convert the dissipation rate (diss) from m2 s-3 to cm2 s-3.
    539                    IF ( turbulence )  THEN
     541                   IF ( collision_turbulence )  THEN
    540542                      k_cr = k_cr0 * ( 1.0_wp + 0.05_wp *                      &
    541543                                       MIN( 600.0_wp,                          &
     
    11651167
    11661168       USE cloud_parameters,                                                   &
    1167            ONLY:  cp, hyrho, nc_const, prr, pt_d_t, r_d, t_d_pt
     1169           ONLY:  cloud_water_sedimentation, cp, hyrho, nc_const, prr, pt_d_t, &
     1170                  r_d, t_d_pt
    11681171
    11691172       USE control_parameters,                                                 &
    1170            ONLY:  call_microphysics_at_all_substeps, drizzle, dt_3d, dt_micro, &
     1173           ONLY:  call_microphysics_at_all_substeps, dt_3d, dt_micro,          &
    11711174                  g, intermediate_timestep_count, large_scale_forcing,         &
    11721175                  lsf_surf, microphysics_seifert, microphysics_kessler,        &
     
    12361239
    12371240          CALL autoconversion_kessler( i,j )
     1241          IF ( cloud_water_sedimentation )  CALL sedimentation_cloud( i,j )
    12381242
    12391243       ELSEIF ( microphysics_seifert )  THEN
     
    12451249          CALL evaporation_rain( i,j )
    12461250          CALL sedimentation_rain( i,j )
    1247 
    1248           IF ( drizzle )  CALL sedimentation_cloud( i,j )
     1251          IF ( cloud_water_sedimentation )  CALL sedimentation_cloud( i,j )
    12491252
    12501253       ENDIF
     
    13261329       USE cloud_parameters,                                                   &
    13271330           ONLY:  a_1, a_2, a_3, b_1, b_2, b_3, beta_cc, c_1, c_2, c_3,        &
    1328                   c_const, dpirho_l, eps_sb, hyrho, kin_vis_air, k_cc, x0
     1331                  c_const, collision_turbulence, dpirho_l, eps_sb, hyrho,      &
     1332                  kin_vis_air, k_cc, x0
    13291333
    13301334       USE control_parameters,                                                 &
    1331            ONLY:  dt_micro, rho_surface, turbulence
     1335           ONLY:  dt_micro, rho_surface
    13321336
    13331337       USE grid_variables,                                                     &
     
    13821386!--          Parameterized turbulence effects on autoconversion (Seifert,
    13831387!--          Nuijens and Stevens, 2010)
    1384              IF ( turbulence )  THEN
     1388             IF ( collision_turbulence )  THEN
    13851389!
    13861390!--             Weight averaged radius of cloud droplets:
     
    14951499
    14961500       USE cloud_parameters,                                                   &
    1497            ONLY:  eps_sb, hyrho, k_cr0
     1501           ONLY:  collision_turbulence, eps_sb, hyrho, k_cr0
    14981502
    14991503       USE control_parameters,                                                 &
    1500            ONLY:  dt_micro, rho_surface, turbulence
     1504           ONLY:  dt_micro, rho_surface
    15011505
    15021506       USE indices,                                                            &
     
    15291533!--          Nuijens and Stevens, 2010). The factor of 1.0E4 is needed to
    15301534!--          convert the dissipation rate (diss) from m2 s-3 to cm2 s-3.
    1531              IF ( turbulence )  THEN
     1535             IF ( collision_turbulence )  THEN
    15321536                k_cr = k_cr0 * ( 1.0_wp + 0.05_wp *                            &
    15331537                                 MIN( 600.0_wp,                                &
Note: See TracChangeset for help on using the changeset viewer.