Changeset 4010 for palm/trunk/SOURCE/time_integration.f90
- Timestamp:
- May 31, 2019 1:25:08 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/time_integration.f90
r3994 r4010 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Mass (volume) flux correction included to ensure global mass conservation for child domains. 28 ! 29 ! 3994 2019-05-22 18:08:09Z suehring 27 30 ! output of turbulence intensity added 28 31 ! … … 615 618 616 619 USE pmc_interface, & 617 ONLY: nested_run, nesting_mode, pmci_boundary_conds, pmci_datatrans, pmci_synchronize 620 ONLY: nested_run, nesting_mode, pmci_boundary_conds, pmci_datatrans, pmci_synchronize, & 621 pmci_ensure_nest_mass_conservation, pmci_ensure_nest_mass_conservation_vertical 618 622 619 623 USE progress_bar, & … … 1280 1284 1281 1285 ELSE 1282 1286 ! 1287 !-- Mass (volume) flux correction to ensure global mass conservation for child domains. 1288 IF ( child_domain ) THEN 1289 IF ( nesting_mode == 'vertical' ) THEN 1290 CALL pmci_ensure_nest_mass_conservation_vertical 1291 ELSE 1292 CALL pmci_ensure_nest_mass_conservation 1293 ENDIF 1294 ENDIF 1295 1283 1296 CALL pres 1284 1297
Note: See TracChangeset
for help on using the changeset viewer.