Skip to content
Snippets Groups Projects
Commit 2b010ebf authored by Paul van der Laan's avatar Paul van der Laan
Browse files

Changed hard coded wake expansion parameter in Gaussian wake model to an input similar to NOJ

parent 0e069acf
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,9 @@ class BastankhahGaussian(SquaredSum, WakeModel):
"""
args4deficit = ['WS_lk', 'D_src_l', 'dw_jl', 'cw_jl', 'ct_lk']
def __init__(self, windTurbines):
def __init__(self, windTurbines, k=0.0324555):
WakeModel.__init__(self, windTurbines)
self.k = 0.0324555
self.k = k
def calc_deficit(self, WS_lk, D_src_l, dw_jl, cw_jl, ct_lk):
sqrt1ct = np.sqrt(1 - ct_lk)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment