Changeset 3448 for palm/trunk/SOURCE/init_3d_model.f90
- Timestamp:
- Oct 29, 2018 6:14:31 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_3d_model.f90
r3421 r3448 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Add biometeorology 28 ! 29 ! 3421 2018-10-24 18:39:32Z gronemeier 27 30 ! Initialize surface data output 28 31 ! … … 533 536 ideal_gas_law_rho, ideal_gas_law_rho_pt, barometric_formula 534 537 538 USE biometeorology_mod, & 539 ONLY: biom_init, biom_init_arrays 540 535 541 USE bulk_cloud_model_mod, & 536 542 ONLY: bulk_cloud_model, bcm_init, bcm_init_arrays … … 552 558 USE gust_mod, & 553 559 ONLY: gust_init, gust_init_arrays, gust_module_enabled 554 560 555 561 USE indices 556 562 … … 578 584 ONLY: chem_emis, chem_emis_att, init_3d, & 579 585 netcdf_data_input_init_3d, netcdf_data_input_interpolate 580 586 581 587 USE nesting_offl_mod, & 582 588 ONLY: nesting_offl_init … … 628 634 ONLY : init_surface_arrays, init_surfaces, surf_def_h, surf_lsm_h, & 629 635 surf_usm_h, get_topography_top_index_ji, vertical_surfaces_exist 630 636 631 637 USE surface_output_mod, & 632 638 ONLY: surface_output_init … … 1050 1056 ! 1051 1057 !-- Allocate arrays for other modules 1058 IF ( biometeorology ) CALL biom_init_arrays 1052 1059 IF ( bulk_cloud_model ) CALL bcm_init_arrays 1053 1060 IF ( gust_module_enabled ) CALL gust_init_arrays … … 2413 2420 2414 2421 ! 2422 !-- If required initialize biometeorology module 2423 IF ( biometeorology ) THEN 2424 CALL location_message( 'initializing biometeorology module', .FALSE. ) 2425 CALL biom_init 2426 CALL location_message( 'finished', .TRUE. ) 2427 ENDIF 2428 2429 ! 2415 2430 !-- Initialize the ws-scheme. 2416 IF ( ws_scheme_sca .OR. ws_scheme_mom ) CALL ws_init 2431 IF ( ws_scheme_sca .OR. ws_scheme_mom ) CALL ws_init 2417 2432 2418 2433 !
Note: See TracChangeset
for help on using the changeset viewer.