Replies: 3 comments 1 reply
-
Hi Pritheesh, To add another combination model and pass other arguments in, you'll need to modify the function call in the Does that make sense? Misha |
Beta Was this translation helpful? Give feedback.
-
Hi @misi9170 I have been playing around with this. First change:I removed the freestream velocity ( Before edit,
After edit,
Second change:Since the reference velocity was removed from the Before edit, After edit, Third change:I have replaced the max model with the following piece of code.
The Here's a sample calculation comparing the 4 different wake superposition models for a simple three turbine setup. I'm curious to know what you guys think about this implementation. Looking forward to your response. Best, |
Beta Was this translation helpful? Give feedback.
-
Hi Pritheesh, Thanks for diving into this and sharing your progress! This all sounds very reasonable to me. The changes you are suggesting for I'm also very happy to set up a short meeting if you'd like to discuss further. You can find my email address here. No pressure, of course, if you'd rather simply keep the discussion here on Github! Cheers, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I was wondering if I can add the product sum superposition model to the list of wake combination models in FLORIS and I have a doubt.
For example, let's take the linear sum superposition method and the product sum superposition method.

let's assume three turbines T1, T2 and T3 and I'm calculating the velocity at a location downstream of the three turbines.
FLS is given by
The above equation works regardless of whether the wake deficit is normalized (unit-less) or absolute velocity deficit (m/s).
if the wake deficit is normalized then to get the effective velocity, we need to use


if the wake deficit is not normalized, then we need to use
Similarly, the product sum superposition is given by

Now, unlike the Linear sum, Sum of squares or Maximum wake deficit methods, the above equation for the product sum only works when the deficits are normalized. To calculate the cummulative effect of wake from the upstream turbines, the individual wake deficits should be passed as Normalized wake deficits and not absolute deficits.
Now, I see in the solver, the wake combination model is called with two inputs: wake field and velocity_deficit*u_initial_sorted

Through velocity_deficit*u_initial_sorted, the wake deficit is passed as absolute deficits. As I explained before this works for all the three wake combination models used in FLORIS but unfortunately won't work for the product sum.
If I have to add the product sum superposition model, how would I go about this?
Looking forward to your response.
Thanks,
Pritheesh
Beta Was this translation helpful? Give feedback.
All reactions