Changeset 3875 for palm/trunk/SOURCE/prognostic_equations.f90
- Timestamp:
- Apr 8, 2019 5:35:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/prognostic_equations.f90
r3874 r3875 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Moved wtm_tendencies to module_interface_actions 28 ! 29 ! 3874 2019-04-08 16:53:48Z knoop 27 30 ! Added non_transport_physics module interfaces and moved bcm code into it 28 31 ! … … 475 478 ONLY: tcm_prognostic_equations 476 479 477 USE wind_turbine_model_mod, &478 ONLY: wtm_tendencies479 480 480 IMPLICIT NONE 481 481 … … 722 722 !-- Effect of Stokes drift (in ocean mode only) 723 723 IF ( stokes_force ) CALL stokes_drift_terms( i, j, 1 ) 724 725 !726 !-- Forces by wind turbines727 IF ( wind_turbine ) CALL wtm_tendencies( i, j, 1 )728 724 729 725 CALL module_interface_actions( i, j, 'u-tendency' ) … … 806 802 IF ( stokes_force ) CALL stokes_drift_terms( i, j, 2 ) 807 803 808 !809 !-- Forces by wind turbines810 IF ( wind_turbine ) CALL wtm_tendencies( i, j, 2 )811 812 804 CALL module_interface_actions( i, j, 'v-tendency' ) 813 805 ! … … 885 877 IF ( stokes_force ) CALL stokes_drift_terms( i, j, 3 ) 886 878 887 !888 !-- Forces by wind turbines889 IF ( wind_turbine ) CALL wtm_tendencies( i, j, 3 )890 891 879 CALL module_interface_actions( i, j, 'w-tendency' ) 892 880 ! … … 1342 1330 !-- Effect of Stokes drift (in ocean mode only) 1343 1331 IF ( stokes_force ) CALL stokes_drift_terms( 1 ) 1344 1345 !1346 !-- Forces by wind turbines1347 IF ( wind_turbine ) CALL wtm_tendencies( 1 )1348 1332 1349 1333 CALL module_interface_actions( 'u-tendency' ) … … 1450 1434 IF ( stokes_force ) CALL stokes_drift_terms( 2 ) 1451 1435 1452 !1453 !-- Forces by wind turbines1454 IF ( wind_turbine ) CALL wtm_tendencies( 2 )1455 1456 1436 CALL module_interface_actions( 'v-tendency' ) 1457 1437 … … 1553 1533 IF ( stokes_force ) CALL stokes_drift_terms( 3 ) 1554 1534 1555 !1556 !-- Forces by wind turbines1557 IF ( wind_turbine ) CALL wtm_tendencies( 3 )1558 1559 1535 CALL module_interface_actions( 'w-tendency' ) 1560 1536
Note: See TracChangeset
for help on using the changeset viewer.