subject
Engineering, 04.11.2019 01:31 farhansayeed11

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 outputpowerinterp 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 outputpowerinterp is 810.6 and outputpowerspline is 808.2.

function [ outputpowerinterp outputpowerspline ] = estimatewindturbinepower( windspeed )
% estimatewindturbinepower: estimates wind turbine output power using two interpolation methods
% inputs: windspeed - wind speed for power estimate
%
% outputs: outputpowerinterp - estimated output power using
% linear interpolation
% outputpowerspline - estimated output power using
% spline interpolation

windspeeddata = [ 0, 2, 4, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26,
28, 30 ]; % (m/s)
outputpwrdata = [ 0, 0, 14, 312, 546, 840, 1180, 1535, 2037, 2100, 2100,
2100, 2100, 2100, 2100, 0, 0, 0 ]; % (kw)

% assign outputpowerinterp with linear interpolation estimate of output power
outputpowerinterp = 0; % fixme

% assign outputpowerspline with spline interpolation estimate of output power
outputpowerspline = 0; % fixme

end

estimatewindturbinepower(7.9)

ansver
Answers: 2

Another question on Engineering

question
Engineering, 04.07.2019 18:10
Which of the following controllers anticipates the future from the slope of errors over time? a)-proportional b)-on/off c)-integral d)-derivative.
Answers: 2
question
Engineering, 04.07.2019 18:20
An engine runs on the ideal diesel cycle. the cycle has a compression ratio of 20 and a cutoff ratio of 2. the highest temperature in the cycle is 1200 k. if the heat into the system is 300 kj/kg of working fluid and using variable specific heats determine the work produced per mass of working fluid
Answers: 3
question
Engineering, 04.07.2019 18:20
Apiston-cylinder device contains 0.1 m3 of liquid water and 0.9 m3 of water vapor in equilibrium at 800 kpa. heat is transferred at constant pressure until the temperature of water reaches 350 °c. determine (a) the quality of water at the initial state (b) the work associated with this process, (c) the heat associated with this process.
Answers: 2
question
Engineering, 04.07.2019 19:10
Plan an experiment to measure the surface tension of a liquid similar to water. if necessary, review the ncfmf video surface tension for ideas. which method would be most suitable for use in an undergraduate laboratory? what experimental precision could be expected?
Answers: 2
You know the right answer?
The manufacturer of a 2.1 mw wind turbine provides the power produced by the turbine (outputpwrdata)...
Questions
question
Mathematics, 14.07.2020 02:01
question
Mathematics, 14.07.2020 02:01
question
Mathematics, 14.07.2020 02:01
question
Mathematics, 14.07.2020 02:01
question
Mathematics, 14.07.2020 02:01
question
Mathematics, 14.07.2020 02:01
Questions on the website: 13722360