@@ -29,7 +29,7 @@ class TurbineClusterModelChain(ModelChain):
2929 or None. Default: 'dena_mean'.
3030 smoothing : Boolean
3131 If True the power curves will be smoothed before the summation.
32- Default: True .
32+ Default: False .
3333 block_width : Float, optional
3434 Width of the moving block.
3535 Default in :py:func:`~.power_curves.smooth_power_curve`: 0.5.
@@ -87,7 +87,7 @@ class TurbineClusterModelChain(ModelChain):
8787 or None. Default: 'dena_mean'.
8888 smoothing : Boolean
8989 If True the power curves will be smoothed before the summation.
90- Default: True .
90+ Default: False .
9191 block_width : Float, optional
9292 Width of the moving block.
9393 Default in :py:func:`~.power_curves.smooth_power_curve`: 0.5.
@@ -132,7 +132,7 @@ class TurbineClusterModelChain(ModelChain):
132132
133133 """
134134 def __init__ (self , power_plant , wake_losses_model = 'dena_mean' ,
135- smoothing = True , block_width = 0.5 ,
135+ smoothing = False , block_width = 0.5 ,
136136 standard_deviation_method = 'turbulence_intensity' ,
137137 smoothing_order = 'wind_farm_power_curves' , ** kwargs ):
138138 super (TurbineClusterModelChain , self ).__init__ (power_plant , ** kwargs )
0 commit comments