Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The manufacturer of a 2.1 MW wind turbine provides the power produced by the turbine (outputPwrData) given various wind speeds (windSpeedData). Linear and spline interpolation
The manufacturer of a 2.1 MW wind turbine provides the power produced by the turbine (outputPwrData) given various wind speeds (windSpeedData). Linear and spline interpolation can be utilized to estimate the power produced by the wind turbine given windspeed. Assign outputPowerlnterp with the estimated output power given windSpeed, using a linear interpolation method. Assign outputPowerSpline with the estimated output power given windspeed, using a spline interpolation method. Ex: If windSpeed is 7.9, then outputPowerlnterp is 810.6 and output PowerSpline is 808.2. function [output PowerInterp output PowerSpline] = Estimate Wind TurbinePower(windSpeed) % EstimateWindTurbinPower: Estimates wind turbine output power using two interpolation methods % Inputs: wind Speed - wind speed for power estimate % Outputs: output Power Interp - estimated output power using linear interpolation output PowerSpline - estimated output power using spline interpolation % windSpeedData = [0, 2, 4, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, ellipsis 28, 30]; %(m/s) output PWrData = [0, 0, 14, 312, 546, 840 1180, 1535, 2037, 2100, 2100, ellipsis 2100, 2100, 2100, 2100, 0, 0, 0]; % (kW) 14 15 % Assign output PowerInterp with linear interpolation estimate of output power output PowerInterp = 0; % Assign output PowerSpline with spline interpolation estimate of output power % output Power Spline = 0; % FIXME
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started