Ignore:
Timestamp:
Apr 21, 2010 6:47:21 AM (14 years ago)
Author:
heinze
Message:

call of subsidence added in prognostic equations for humidity/passive scalar, some bugfixes

File:
1 edited

Legend:

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

    r484 r531  
    44! Current revisions:
    55! -----------------
    6 !
     6! add call of subsidence in the equation for humidity / passive scalar
    77!
    88! Former revisions:
     
    658658!--          Sink or source of scalar concentration due to canopy elements
    659659             IF ( plant_canopy ) CALL plant_canopy_model( i, j, 5 )
     660
     661!
     662!--          If required compute influence of large-scale subsidence/ascent
     663             IF ( large_scale_subsidence ) THEN
     664                CALL subsidence ( i, j, tend, q, q_init )
     665             ENDIF
    660666
    661667             CALL user_actions( i, j, 'q-tendency' )
     
    11101116          ENDIF
    11111117
    1112 
    11131118          CALL user_actions( i, j, 'pt-tendency' )
    11141119
     
    12231228!--          Sink or source of scalar concentration due to canopy elements
    12241229             IF ( plant_canopy ) CALL plant_canopy_model( i, j, 5 )
     1230
     1231
     1232!--          If required compute influence of large-scale subsidence/ascent
     1233             IF ( large_scale_subsidence ) THEN
     1234                CALL subsidence ( i, j, tend, q, q_init )
     1235             ENDIF
    12251236
    12261237
     
    19071918       IF ( plant_canopy ) CALL plant_canopy_model( 5 )
    19081919
     1920!
     1921!--    If required compute influence of large-scale subsidence/ascent
     1922       IF ( large_scale_subsidence ) THEN
     1923         CALL subsidence ( tend, q, q_init )
     1924       ENDIF
     1925
    19091926       CALL user_actions( 'q-tendency' )
    19101927
Note: See TracChangeset for help on using the changeset viewer.