Replies: 3 comments 7 replies
-
Hi @MYMahfouz good question. Before I dive in, could you please add a minimal working example of the problem to the original post? |
Beta Was this translation helpful? Give feedback.
-
Hi @rafmudaf, Thanks for your quick reply. I have copied a piece of my code here AEPtotal=[]
for ww in range(len(wd)):
LayoutperDirection=pd.DataFrame()
LayoutperDirection['x']= LayoutX.loc[:,wd[ww]]
LayoutperDirection['y']= LayoutY.loc[:,wd[ww]]
fi.reinitialize(layout_x=np.array(LayoutperDirection.x).tolist(),
layout_y=np.array(LayoutperDirection.y).tolist(),
wind_directions=[wd[ww]],
wind_speeds=ws)
AEP=fi.get_farm_AEP([freq[ww]])
AEPtotal.append(AEP) |
Beta Was this translation helpful? Give feedback.
-
Hi, Thank you. |
Beta Was this translation helpful? Give feedback.
-
Hi ,
I have a question about AEP calculation:
I am using floris to calculate the AEP of a floating wind farm.
I take into account the surge and sway motions of the floating wind turbine therefore, I update the wind farm layout according to the wind direction. This means for me to calculate the AEP of the farm I have to calculate each wind direction separately, then sum them up.
In FLORIS v3 if i use the .get_farm_AEP() for one wind direction it takes the same time it takes if I am calculating all wind directions. This was not the case for FLORIS v2.4 which was faster for my use case.
Is there a way to make FLORIS v3 faster for my purpose?
Thanks in advance.
Youssef
Beta Was this translation helpful? Give feedback.
All reactions