Ignore:
Timestamp:
May 31, 2019 1:25:08 PM (5 years ago)
Author:
hellstea
Message:

Nest mass conservation correction included

File:
1 edited

Legend:

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

    r3994 r4010  
    2525! -----------------
    2626! $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
    2730! output of turbulence intensity added
    2831!
     
    615618
    616619    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
    618622
    619623    USE progress_bar,                                                                              &
     
    12801284
    12811285             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               
    12831296                CALL pres
    12841297
Note: See TracChangeset for help on using the changeset viewer.