Source code for foxes.models.turbine_models.yawm2yaw
import numpy as np
from foxes.core import TurbineModel
import foxes.variables as FV
[docs]
class YAWM2YAW(TurbineModel):
"""
Calculates absolute yaw (i.e. YAWM) from delta
yaw (i.e. YAWM)
:group: models.turbine_models
"""
[docs]
def output_farm_vars(self, algo):
"""
The variables which are being modified by the model.
Parameters
----------
algo: foxes.core.Algorithm
The calculation algorithm
Returns
-------
output_vars: list of str
The output variable names
"""
return [FV.YAW]
[docs]
def calculate(self, algo, mdata, fdata, st_sel):
"""
The main model calculation.
This function is executed on a single chunk of data,
all computations should be based on numpy arrays.
Parameters
----------
algo: foxes.core.Algorithm
The calculation algorithm
mdata: foxes.core.MData
The model data
fdata: foxes.core.FData
The farm data
st_sel: slice or numpy.ndarray of bool
The state-turbine selection,
for shape: (n_states, n_turbines)
Returns
-------
results: dict
The resulting data, keys: output variable str.
Values: numpy.ndarray with shape (n_states, n_turbines)
"""
yawm = fdata[FV.YAWM][st_sel]
wd = fdata[FV.WD][st_sel]
yaw = fdata[FV.YAW]
yaw[st_sel] = np.mod(wd + yawm, 360.0)
return {FV.YAW: yaw}