Skip to content

Commit 0f8887b

Browse files
committed
Rename cp_ct data file to be clearer. Update fields in all turine models; may remove from iea10mw, nrel5mw subsequently.
1 parent 71a2251 commit 0f8887b

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

floris/core/turbine/tum_operation_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TUMLossTurbine(BaseOperationModel):
2929
3030
The method requires C_P, C_T look-up tables as functions of tip speed ratio and blade pitch
3131
angle, available here:
32-
"../floris/turbine_library/LUT_iea15MW.npz" for the IEA 3.4 MW (Bortolotti et al., 2019)
32+
"floris/turbine_library/iea_15MW_cp_ct_surface.npz" for the IEA 15MW reference turbine.
3333
As with all turbine submodules, implements only static power() and thrust_coefficient() methods,
3434
which are called by power() and thrust_coefficient() on turbine.py, respectively.
3535
There are also two new functions, i.e. compute_local_vertical_shear() and control_trajectory().

floris/turbine_library/iea_10MW.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ power_thrust_table:
3131
beta: -3.8233819218614817
3232
cd: 0.004612981322772105
3333
cl_alfa: 4.602140680380394
34-
cp_ct_data_file: "LUT_iea15MW.npz"
34+
cp_ct_data_file: "iea_15MW_cp_ct_surface.npz"
3535

3636
# Power and thrust curves
3737
power:

floris/turbine_library/iea_15MW.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ power_thrust_table:
3333
beta: -3.098605491003358
3434
cd: 0.004426686198054057
3535
cl_alfa: 4.546410770937916
36-
cp_ct_data_file: "LUT_iea15MW.npz"
36+
cp_ct_data_file: "iea_15MW_cp_ct_surface.npz"
3737

3838
# Power and thrust curves
3939
power:

floris/turbine_library/nrel_5MW.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ power_thrust_table:
6565
beta: -0.45891
6666
cd: 0.0040638
6767
cl_alfa: 4.275049
68-
cp_ct_data_file: "LUT_iea15MW.npz"
68+
cp_ct_data_file: "iea_15MW_cp_ct_surface.npz"
6969

7070
### Power thrust table data
7171
# wind speeds for look-up tables of power and thrust_coefficient

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def __init__(self):
401401
"beta": -0.45891,
402402
"cd": 0.0040638,
403403
"cl_alfa": 4.275049,
404-
"cp_ct_data_file": "LUT_iea15MW.npz"
404+
"cp_ct_data_file": "iea_15MW_cp_ct_surface.npz"
405405
}
406406

407407
self.turbine_floating = copy.deepcopy(self.turbine)

0 commit comments

Comments
 (0)