Changeset 1240 for palm/trunk/SOURCE/prognostic_equations.f90
- Timestamp:
- Oct 29, 2013 1:21:31 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/prognostic_equations.f90
r1239 r1240 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! usage of nudging enabled (not for accelerator version so far)22 ! 23 23 ! 24 24 ! Former revisions: … … 182 182 USE impact_of_latent_heat_mod 183 183 USE microphysics_mod 184 USE nudge_mod185 184 USE plant_canopy_model_mod 186 185 USE production_e_mod … … 286 285 ENDIF 287 286 288 !289 !-- Nudging290 IF ( nudging ) CALL nudge( i, j, simulated_time, 'u' )291 292 287 CALL user_actions( i, j, 'u-tendency' ) 293 288 ! … … 345 340 ENDIF 346 341 347 !348 !-- Nudging349 IF ( nudging ) CALL nudge( i, j, simulated_time, 'v' )350 351 342 CALL user_actions( i, j, 'v-tendency' ) 352 343 ! … … 480 471 CALL subsidence( i, j, tend, pt, pt_init ) 481 472 ENDIF 482 483 !484 !-- Nudging485 IF ( nudging ) CALL nudge( i, j, simulated_time, 'pt' )486 473 487 474 CALL user_actions( i, j, 'pt-tendency' ) … … 607 594 CALL subsidence( i, j, tend, q, q_init ) 608 595 ENDIF 609 610 !611 !-- Nudging612 IF ( nudging ) CALL nudge( i, j, simulated_time, 'q' )613 596 614 597 CALL user_actions( i, j, 'q-tendency' ) … … 864 847 ENDIF 865 848 866 !867 !-- Nudging868 IF ( nudging ) CALL nudge( simulated_time, 'u' )869 870 849 CALL user_actions( 'u-tendency' ) 871 850 … … 940 919 ENDIF 941 920 942 !943 !-- Nudging944 IF ( nudging ) CALL nudge( simulated_time, 'v' )945 946 921 CALL user_actions( 'v-tendency' ) 947 922 … … 1117 1092 CALL subsidence( tend, pt, pt_init ) 1118 1093 ENDIF 1119 1120 !1121 !-- Nudging1122 IF ( nudging ) CALL nudge( simulated_time, 'pt' )1123 1094 1124 1095 CALL user_actions( 'pt-tendency' ) … … 1307 1278 CALL subsidence( tend, q, q_init ) 1308 1279 ENDIF 1309 1310 !1311 !-- Nudging1312 IF ( nudging ) CALL nudge( simulated_time, 'q' )1313 1280 1314 1281 CALL user_actions( 'q-tendency' )
Note: See TracChangeset
for help on using the changeset viewer.