Changeset 1380 for palm/trunk/SOURCE/prognostic_equations.f90
- Timestamp:
- Apr 28, 2014 12:40:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/prognostic_equations.f90
r1375 r1380 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! Change order of calls for scalar prognostic quantities: 23 ! ls_advec -> nudging -> subsidence since initial profiles 23 24 ! 24 25 ! Former revisions: … … 559 560 560 561 ! 562 !-- Nudging 563 IF ( nudging ) CALL nudge( i, j, simulated_time, 'pt' ) 564 565 ! 561 566 !-- If required, compute effect of large-scale subsidence/ascent 562 567 IF ( large_scale_subsidence .AND. & … … 564 569 CALL subsidence( i, j, tend, pt, pt_init, 2 ) 565 570 ENDIF 566 567 !568 !-- Nudging569 IF ( nudging ) CALL nudge( i, j, simulated_time, 'pt' )570 571 571 572 CALL user_actions( i, j, 'pt-tendency' ) … … 691 692 692 693 ! 694 !-- Nudging 695 IF ( nudging ) CALL nudge( i, j, simulated_time, 'q' ) 696 697 ! 693 698 !-- If required compute influence of large-scale subsidence/ascent 694 699 IF ( large_scale_subsidence .AND. & … … 696 701 CALL subsidence( i, j, tend, q, q_init, 3 ) 697 702 ENDIF 698 699 !700 !-- Nudging701 IF ( nudging ) CALL nudge( i, j, simulated_time, 'q' )702 703 703 704 CALL user_actions( i, j, 'q-tendency' ) … … 1213 1214 1214 1215 ! 1216 !-- Nudging 1217 IF ( nudging ) CALL nudge( simulated_time, 'pt' ) 1218 1219 ! 1215 1220 !-- If required compute influence of large-scale subsidence/ascent 1216 1221 IF ( large_scale_subsidence .AND. & … … 1218 1223 CALL subsidence( tend, pt, pt_init, 2 ) 1219 1224 ENDIF 1220 1221 !1222 !-- Nudging1223 IF ( nudging ) CALL nudge( simulated_time, 'pt' )1224 1225 1225 1226 CALL user_actions( 'pt-tendency' ) … … 1410 1411 1411 1412 ! 1413 !-- Nudging 1414 IF ( nudging ) CALL nudge( simulated_time, 'q' ) 1415 1416 ! 1412 1417 !-- If required compute influence of large-scale subsidence/ascent 1413 1418 IF ( large_scale_subsidence .AND. & … … 1415 1420 CALL subsidence( tend, q, q_init, 3 ) 1416 1421 ENDIF 1417 1418 !1419 !-- Nudging1420 IF ( nudging ) CALL nudge( simulated_time, 'q' )1421 1422 1422 1423 CALL user_actions( 'q-tendency' ) … … 2028 2029 2029 2030 ! 2031 !-- Nudging 2032 IF ( nudging ) CALL nudge( simulated_time, 'pt' ) 2033 2034 ! 2030 2035 !-- If required compute influence of large-scale subsidence/ascent 2031 2036 IF ( large_scale_subsidence .AND. & … … 2033 2038 CALL subsidence( tend, pt, pt_init, 2 ) 2034 2039 ENDIF 2035 2036 !2037 !-- Nudging2038 IF ( nudging ) CALL nudge( simulated_time, 'pt' )2039 2040 2040 2041 CALL user_actions( 'pt-tendency' ) … … 2199 2200 2200 2201 ! 2202 !-- Nudging 2203 IF ( nudging ) CALL nudge( simulated_time, 'q' ) 2204 2205 ! 2201 2206 !-- If required compute influence of large-scale subsidence/ascent 2202 2207 IF ( large_scale_subsidence .AND. & … … 2204 2209 CALL subsidence( tend, q, q_init, 3 ) 2205 2210 ENDIF 2206 2207 !2208 !-- Nudging2209 IF ( nudging ) CALL nudge( simulated_time, 'q' )2210 2211 2211 2212 CALL user_actions( 'q-tendency' )
Note: See TracChangeset
for help on using the changeset viewer.