Changeset 3298 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Oct 2, 2018 12:21:11 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE
- Property svn:mergeinfo changed
-
palm/trunk/SOURCE/check_parameters.f90
- Property svn:mergeinfo changed
r3294 r3298 25 25 ! ----------------- 26 26 ! $Id: check_parameters.f90 2520 2017-10-05 13:50:26Z gronemeier & 27 ! - Minor formatting and remarks 28 ! - Call of chem_emissions_check_parameters commented 29 ! (preliminary, as there is still a bug in this subroutine) (forkel) 30 ! - Corrected call for chemistry profile output added (basit) 31 ! - Call for init_vertical_profiles for chemistry removed (basit) 32 ! - Call for chem_init_profiles removed (basit) 33 ! - Setting of initial profiles for chemstry (constant and call of 34 ! init_vertical_profiles) commented (forkel) 35 ! 36 ! 2520 2017-10-05 13:50:26Z gronemeier 27 37 ! changes concerning modularization of ocean option, 28 38 ! init_vertical_profiles moved to separate file to avoid circular dependency … … 679 689 bcm_check_data_output_pr 680 690 691 USE chem_emissions_mod, & 692 ONLY: chem_emissions_check_parameters 693 694 USE chem_modules 695 681 696 USE chemistry_model_mod, & 682 697 ONLY: chem_boundary_conds, chem_check_data_output, & 683 chem_check_data_output_pr, chem_species 684 685 USE chem_modules 698 chem_check_data_output_pr, chem_check_parameters, chem_species 686 699 687 700 USE control_parameters … … 1443 1456 ENDIF 1444 1457 1445 ! 1458 ! Check for chem_emission_mod parameters setting 1459 ! IF ( air_chemistry ) CALL chem_emissions_check_parameters ! forkel preliminary 1460 1461 1462 ! Check for chemitry_model_mod parameters setting 1463 IF ( air_chemistry ) CALL chem_check_parameters 1464 1465 1446 1466 !-- Check the module settings 1447 1467 IF ( ocean_mode ) CALL ocean_check_parameters … … 1468 1488 IF ( humidity ) q_init = q_surface 1469 1489 IF ( passive_scalar ) s_init = s_surface 1470 IF ( air_chemistry ) THEN 1471 DO lsp = 1, nvar 1472 chem_species(lsp)%conc_pr_init = cs_surface(lsp) 1473 ENDDO 1474 ENDIF 1490 ! 1491 !-- TODO 1492 !-- Russo: Is done in chem_init and would overwrite what is done there 1493 !-- --> kanani: Revise 1494 ! IF ( air_chemistry ) THEN 1495 ! DO lsp = 1, nvar 1496 ! chem_species(lsp)%conc_pr_init = cs_surface(lsp) 1497 ! ENDDO 1498 ! ENDIF 1475 1499 ! 1476 1500 !-- … … 1683 1707 ENDIF 1684 1708 ! 1709 !-- TODO 1685 1710 !-- Compute initial chemistry profile using the given chemical species gradients 1686 IF ( air_chemistry ) THEN 1687 DO lsp = 1, nvar 1688 CALL init_vertical_profiles( cs_vertical_gradient_level_ind(lsp,:),& 1689 cs_vertical_gradient_level(lsp,:), & 1690 cs_vertical_gradient(lsp,:), & 1691 chem_species(lsp)%conc_pr_init, & 1692 cs_surface(lsp), bc_cs_t_val(lsp) ) 1693 ENDDO 1694 ENDIF 1711 !-- Russo: Is done in chem_init --> kanani: Revise 1695 1712 1696 1713 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.