Ignore:
Timestamp:
Oct 21, 2014 10:53:05 AM (10 years ago)
Author:
kanani
Message:

New:
---
Subroutine init_plant_canopy added to module plant_canopy_model_mod. (plant_canopy_model)
Alternative method for lad-profile construction added, also, new parameters added.
(header, package_parin, plant_canopy_model, read_var_list, write_var_list)
plant_canopy_model-dependency added to several subroutines. (Makefile)
New package/namelist canopy_par for canopy-related parameters added. (package_parin)

Changed:
---
Code structure of the plant canopy model changed, all canopy-model related code
combined to module plant_canopy_model_mod. (check_parameters, init_3d_model,
modules, timestep)
Module plant_canopy_model_mod added in USE-lists of some subroutines. (check_parameters,
header, init_3d_model, package_parin, read_var_list, user_init_plant_canopy, write_var_list)
Canopy initialization moved to new subroutine init_plant_canopy. (check_parameters,
init_3d_model, plant_canopy_model)
Calculation of canopy timestep-criterion removed, instead, the canopy
drag is now directly limited in the calculation of the canopy tendency terms.
(plant_canopy_model, timestep)
Some parameters renamed. (check_parameters, header, init_plant_canopy,
plant_canopy_model, read_var_list, write_var_list)
Unnecessary 3d-arrays removed. (init_plant_canopy, plant_canopy_model, user_init_plant_canopy)
Parameter checks regarding canopy initialization added. (check_parameters)
All canopy steering parameters moved from namelist inipar to canopy_par. (package_parin, parin)
Some redundant MPI communication removed. (init_plant_canopy)

Bugfix:
---
Missing KIND-attribute for REAL constant added. (check_parameters)
DO-WHILE-loop for lad-profile output restricted. (header)
Removed double-listing of use_upstream_for_tke in ONLY-list of module
control_parameters. (prognostic_equations)

File:
1 edited

Legend:

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

    r1410 r1484  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! Changes due to new module structure of the plant canopy model:
     23!   parameters cthf and plant_canopy moved to module plant_canopy_model_mod.
     24! Removed double-listing of use_upstream_for_tke in ONLY-list of module
     25! control_parameters
    2326!
    2427! Former revisions:
     
    163166    USE control_parameters,                                                    &
    164167        ONLY:  call_microphysics_at_all_substeps, cloud_physics,               &
    165                constant_diffusion, cthf, dp_external,                          &
     168               constant_diffusion, dp_external,                                &
    166169               dp_level_ind_b, dp_smooth_factor, dpdxy, dt_3d, humidity,       &
    167170               icloud_scheme, inflow_l, intermediate_timestep_count,           &
    168171               intermediate_timestep_count_max, large_scale_forcing,           &
    169172               large_scale_subsidence, neutral, nudging, ocean, outflow_l,     &
    170                outflow_s, passive_scalar, plant_canopy, precipitation,         &
     173               outflow_s, passive_scalar, precipitation,                       &
    171174               prho_reference, prho_reference, prho_reference, pt_reference,   &
    172175               pt_reference, pt_reference, radiation, scalar_advec,            &
    173176               scalar_advec, simulated_time, sloping_surface, timestep_scheme, &
    174177               tsc, use_subsidence_tendencies, use_upstream_for_tke,           &
    175                use_upstream_for_tke, use_upstream_for_tke, wall_heatflux,      &
     178               wall_heatflux,                                                  &
    176179               wall_nrflux, wall_qflux, wall_qflux, wall_qflux, wall_qrflux,   &
    177180               wall_salinityflux, ws_scheme_mom, ws_scheme_sca
     
    257260
    258261    USE plant_canopy_model_mod,                                                &
    259         ONLY:  plant_canopy_model
     262        ONLY:  cthf, plant_canopy, plant_canopy_model
    260263
    261264    USE production_e_mod,                                                      &
Note: See TracChangeset for help on using the changeset viewer.