Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

1.what is rule of law? 2.The administrative body of government?

Answered: 1 week ago