Skip to content

Lack of Thrust in new turbine creation #854

Answered by misi9170
Jlewis17 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @Jlewis17 , Ok, I see---from eqs (11) and (12) from the Arany et al. paper, implemented as

        ws_r = 11.4
        ws_cin = 3.0
        ws_cout = 25.0

        ws_arr = np.array(fi.floris.farm.turbine_map[0].power_thrust_table["wind_speed"])

        Cts = np.where(ws_arr < ws_cin, 0.0, 7.0/ws_arr)
        Cts = np.where(ws_arr > ws_r, 7.0*ws_r**2/ws_arr**3, Cts)
        Cts = np.where(ws_arr > ws_cout, 0.0, Cts)
        Cts = np.minimum(Cts, 1.0) # Clip to 1.0
        axarr_cp_ct[1].plot(ws_arr,Cts,label='Heuristic', linestyle="dashed", color="black")

I now get

This doesn't look too bad, but there is still a bit of a mismatch below rated and also a fairly large mismatch around th…

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@Jlewis17
Comment options

@misi9170
Comment options

@Jlewis17
Comment options

@misi9170
Comment options

Answer selected by rafmudaf
@Jlewis17
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants