get_lac_factor {stochLAB} | R Documentation |
Large array correction factor
Description
A correction factor for large windfarms with a large array of turbines, to take into account the depletion of bird density in later rows of the site.
Usage
get_lac_factor(
n_turbines,
rotor_radius,
avoidance_rate,
avg_prob_coll,
avg_prop_operational,
wf_width
)
Arguments
n_turbines |
Integer, the number of turbines on the wind farm
( |
rotor_radius |
Numeric value, the radius of the rotor ( |
avoidance_rate |
Numeric value within the interval |
avg_prob_coll |
Numeric value, the average probability of collision
for a single bird transit through a rotor, assuming no avoidance action
( |
avg_prop_operational |
Numeric value, the average proportion of time turbines are operational through the year. |
wf_width |
Numeric value, the approximate longitudinal width of the
wind farm, in kilometres ( |
Value
The large array correction factor to be applied
Examples
get_lac_factor(
n_turbines = 100,
rotor_radius = 120,
avoidance_rate = 0.989,
avg_prob_coll = 0.1494609,
avg_prop_operational = 0.6388292,
wf_width = 52
)