Ignore:
Timestamp:
May 26, 2016 2:44:07 PM (8 years ago)
Author:
witha
Message:

Merged branch/forwind into trunk

Location:
palm/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk

  • palm/trunk/SOURCE

  • palm/trunk/SOURCE/prognostic_equations.f90

    r1875 r1914  
    2828! Module renamed (removed _mod)
    2929!
    30 !
    3130! 1850 2016-04-08 13:29:27Z maronga
    3231! Module renamed
    33 !
    3432!
    3533! 1826 2016-04-07 12:01:39Z maronga
     
    3836! 1822 2016-04-07 07:49:42Z hoffmann
    3937! Kessler microphysics scheme moved to microphysics.
     38
     39! 1819 2016-04-06 21:05:15Z witha
     40! Added calls for wind turbine model
    4041!
    4142! 1757 2016-02-22 15:49:32Z maronga
     
    313314        ONLY:  user_actions
    314315
     316    USE wind_turbine_model_mod,                                                &
     317        ONLY:  wind_turbine, wtm_tendencies
     318
    315319
    316320    PRIVATE
     
    428432             IF ( nudging )  CALL nudge( i, j, simulated_time, 'u' )
    429433
     434!
     435!--          Forces by wind turbines
     436             IF ( wind_turbine )  CALL wtm_tendencies( i, j, 1 )
     437
    430438             CALL user_actions( i, j, 'u-tendency' )
    431439!
     
    487495             IF ( nudging )  CALL nudge( i, j, simulated_time, 'v' )
    488496
     497!
     498!--          Forces by wind turbines
     499             IF ( wind_turbine )  CALL wtm_tendencies( i, j, 2 )
     500
    489501             CALL user_actions( i, j, 'v-tendency' )
    490502!
     
    543555!--       Drag by plant canopy
    544556          IF ( plant_canopy )  CALL pcm_tendency( i, j, 3 )
     557
     558!
     559!--       Forces by wind turbines
     560          IF ( wind_turbine )  CALL wtm_tendencies( i, j, 3 )
    545561
    546562          CALL user_actions( i, j, 'w-tendency' )
     
    10111027    IF ( nudging )  CALL nudge( simulated_time, 'u' )
    10121028
     1029!
     1030!-- Forces by wind turbines
     1031    IF ( wind_turbine )  CALL wtm_tendencies( 1 )
     1032
    10131033    CALL user_actions( 'u-tendency' )
    10141034
     
    10871107    IF ( nudging )  CALL nudge( simulated_time, 'v' )
    10881108
     1109!
     1110!-- Forces by wind turbines
     1111    IF ( wind_turbine )  CALL wtm_tendencies( 2 )
     1112
    10891113    CALL user_actions( 'v-tendency' )
    10901114
     
    11581182!-- Drag by plant canopy
    11591183    IF ( plant_canopy )  CALL pcm_tendency( 3 )
     1184
     1185!
     1186!-- Forces by wind turbines
     1187    IF ( wind_turbine )  CALL wtm_tendencies( 3 )
    11601188
    11611189    CALL user_actions( 'w-tendency' )
     
    18471875    IF ( nudging )  CALL nudge( simulated_time, 'u' )
    18481876
     1877!
     1878!-- Forces by wind turbines
     1879    IF ( wind_turbine )  CALL wtm_tendencies( 1 )
     1880
    18491881    CALL user_actions( 'u-tendency' )
    18501882
     
    19141946    IF ( nudging )  CALL nudge( simulated_time, 'v' )
    19151947
     1948!
     1949!-- Forces by wind turbines
     1950    IF ( wind_turbine )  CALL wtm_tendencies( 2 )
     1951
    19161952    CALL user_actions( 'v-tendency' )
    19171953
     
    19762012!-- Drag by plant canopy
    19772013    IF ( plant_canopy )  CALL pcm_tendency( 3 )
     2014
     2015!
     2016!-- Forces by wind turbines
     2017    IF ( wind_turbine )  CALL wtm_tendencies( 3 )
    19782018
    19792019    CALL user_actions( 'w-tendency' )
Note: See TracChangeset for help on using the changeset viewer.