Ignore:
Timestamp:
Dec 11, 2009 2:15:58 PM (15 years ago)
Author:
heinze
Message:

Large scale vertical motion (subsidence/ascent) can be applied to the prognostic equation for the potential temperature

File:
1 edited

Legend:

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

    r407 r411  
    44! Actual revisions:
    55! -----------------
     6! add call of subsidence in the prognostic equation for
     7! the potential temperature
    68!
    79!
     
    9496    USE plant_canopy_model_mod
    9597    USE production_e_mod
     98    USE subsidence_mod
    9699    USE user_actions_mod
    97100
     
    452455          IF ( plant_canopy .AND. ( cthf /= 0.0 ) ) THEN
    453456             CALL plant_canopy_model( i, j, 4 )
     457          ENDIF
     458
     459!
     460!--       If required compute influence of large-scale subsidence/ascent
     461          IF ( large_scale_subsidence ) THEN
     462             CALL subsidence ( i, j, tend, pt, pt_init )
    454463          ENDIF
    455464
     
    10941103          ENDIF
    10951104
     1105
     1106!--       If required compute influence of large-scale subsidence/ascent
     1107          IF ( large_scale_subsidence ) THEN
     1108             CALL subsidence ( i, j, tend, pt, pt_init )
     1109          ENDIF
     1110
     1111
    10961112          CALL user_actions( i, j, 'pt-tendency' )
    10971113
     
    16801696    ENDIF
    16811697
     1698!--If required compute influence of large-scale subsidence/ascent
     1699   IF ( large_scale_subsidence ) THEN
     1700      CALL subsidence ( tend, pt, pt_init )
     1701   ENDIF
    16821702
    16831703    CALL user_actions( 'pt-tendency' )
Note: See TracChangeset for help on using the changeset viewer.