R implementation of the Turbine Blade Strike Analysis (TBSA) spreadsheet model provided by the U.S. Fish & Wildlife Service (based on the equations in Frank et al. 1997) for performing leading-edge blade strike analysis of hydropower turbines on fish.
Enable repository.
options(repos = c(ESA = "https://environmentalscienceassociates.r-universe.dev",
CRAN = "https://cloud.r-project.org"))
Download and install tbsa
in R.
install.packages("tbsa")
Browse the tbsa
manual pages.
help(package = "tbsa")
The tbsa
function runs the TBSA model simulation based on a data frame with route data. Example route data is included with the package in the data frame route_data_ex
.
tbsa(fish_num = 10,
length_mean = 1.5,
length_sd = 0.25,
route_data = route_data_ex)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.