Skip to content

Commit 0a5a7d8

Browse files
committed
Set smoothing to False as default
1 parent 53e7f99 commit 0a5a7d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

windpowerlib/turbine_cluster_modelchain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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)

windpowerlib/wind_farm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def get_installed_power(self):
125125
for wind_dict in self.wind_turbine_fleet)
126126

127127
def assign_power_curve(self, wake_losses_model='power_efficiency_curve',
128-
smoothing=True, block_width=0.5,
128+
smoothing=False, block_width=0.5,
129129
standard_deviation_method='turbulence_intensity',
130130
smoothing_order='wind_farm_power_curves',
131131
turbulence_intensity=None, **kwargs):
@@ -146,7 +146,7 @@ def assign_power_curve(self, wake_losses_model='power_efficiency_curve',
146146
'constant_efficiency' or None. Default: 'power_efficiency_curve'.
147147
smoothing : Boolean
148148
If True the power curves will be smoothed before the summation.
149-
Default: True.
149+
Default: False.
150150
block_width : Float
151151
Width of the moving block.
152152
Default in :py:func:`~.power_curves.smooth_power_curve`: 0.5.

0 commit comments

Comments
 (0)