1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
gulaghasi [49]
3 years ago
5

The electricity generated by wind turbines annually in kilowatt-hours per year is given in a file. The amount of electricity is

determined by, among other factors, the diameter of the turbine blade (in feet) and the wind velocity in mph. The file stores on each line the blade diameter, wind velocity, and the approximate electricity generated for the year. For example,
5 5 406
5 10 3250
5 15 10970
5 20 26000
10 5 1625
10 10 13000
10 15 43875
10 20 104005

Required:
Determine how to graphically display this data.

Engineering
2 answers:
Anika [276]3 years ago
5 0

Answer:

Steps:

1. Create a text file that contains blade diameter (in feet), wind velocity (in mph) and the approximate electricity generated for the year

2.  load the data file for example, in matlab, use ('fileame.txt') to load the file

3. create variables from each column of your data

  for example, in matlab,  

     x=t{1}

     y=t{2}

4. plot the wind velocity and electricity generated.

   plot(x, y)

5. Label the individual axis and name the graph title.

    title('Graph of wind velocity vs approximate electricity generated for the year')

     xlabel('wind velocity')

     ylabel('approximate electricity generated for the year')

Alona [7]3 years ago
3 0

Answer:

This problem is solved using Matlab, code along with step-by-step explanation and output results are provided below.

Matlab Code with Explanation:

% load the .txt file named data in which data is stored and store the data in a variable D

D=load('data.txt')  

% the 2nd column of data contains speed of the wind turbine so store it in a variable named speed

speed=D(:,2);

% the first 4 data points are for 5 feet blade diameter so extract and store them in variable speed_5

speed_5=speed(1:4);

% from the 5th data point to the end of vector contains data for 10 feet blade diameter so extract and store them in variable speed_10.

speed_10=speed(5:end);

% the 3rd column of data contains generated electricity of the wind turbine so store it in a variable named kwh

kwh=D(:,3);

% the first 4 data points are for 5 feet blade diameter so extract and store them in variable kwh_5

kwh_5=kwh(1:4);

% from the 5th data point to the end of vector contains data for 10 feet blade diameter so extract and store them in variable kwh_10.

kwh_10=kwh(5:end);

% Plot the speed _5 on x-axis and corresponding kwh_5 on y-axis

plot(speed_5,kwh_5,'LineWidth',2)

% hold on means we want to plot another curve in the same graph so wait

hold on

% Plot the speed _10 on x-axis and corresponding kwh_10 on y-axis

plot(speed_10,kwh_10,'LineWidth',2)

% legend command provides visual aid to distinguish between the two curves

legend('5 feet blade','10 feet blade')

% set the title of the graph, x-axis and y-axis labels

title('Generated Electricty Vs Wind speed')

xlabel('Wind speed (mph)')

ylabel('Generated Electricity (kWh)')

Output:

As you can see in the attached graph, 2 curves are being plotted one for 5 feet blade diameter and 2nd for 10 feet blade diameter of the wind turbine.

The generated electricity corresponding to 10 feet blade diameter is way more than the 5 feet blade diameter.

You might be interested in
Which type of memory is programmed at the factory? RAM ROM Cache or Virtual memory
12345 [234]

Answer:

RAM, which stands for random access memory, and ROM, which stands for read-only memory, are both present in your computer. RAM is volatile memory that temporarily stores the files you are working on. ROM is non-volatile memory that permanently stores instructions for your computer.

Explanation:

5 0
2 years ago
A cylinder with a frictionless piston contains 0.05 m3 of air at 60kPa. The linear spring holding the piston is in tension. The
AleksAgata [21]

Answer:

18 kJ

Explanation:

Given:

Initial volume of air = 0.05 m³

Initial pressure = 60 kPa

Final volume = 0.2 m³

Final pressure = 180 kPa

Now,

the Work done by air will be calculated as:

Work Done = Average pressure × Change in volume

thus,

Average pressure = \frac{60+180}{2}  = 120 kPa

and,

Change in volume = Final volume - Initial Volume = 0.2 - 0.05 = 0.15 m³

Therefore,

the work done = 120 × 0.15 = 18 kJ

4 0
3 years ago
A converging-diverging nozzle has an area ratio of 5.9. (1) Determine the (P0/Pt) values corresponding to the 1st, 2nd, and 3rd
nata0808 [166]

Answer:

Check the explanation

Explanation:

The Total pressure is the overall of fixed or static pressure p, the dynamic pressure q, as well as gravitational head. Total pressure can also be referred to as the measure of the overall energy of the airstream, and is the same to static pressure plus velocity pressure.

kindly check the step by step solution in the attached image below to Determine the (P0/Pt) values corresponding to the 1st, 2nd, and 3rd critical points.

5 0
3 years ago
Joe is a chemical engineer whose plant discharges heavy metals into the local river. By the test authorized by the city governme
chubhunter [2.5K]

Answer:

B probably

Explanation:

Because the prompt doesn't specify what sort of violation it could be anything maybe when they release the metals during the day and so on.

5 0
2 years ago
The value of Rth is *
Vladimir79 [104]
Johnjjjjjjhhhhhhhhjjjjjjjjjjj
4 0
2 years ago
Other questions:
  • The following C program asks the user for two input null-terminated strings, each stored in uninitialized 100-byte buffer, and c
    6·1 answer
  • You have designed a treatment system for contaminant Z. The treatment system consists of a pipe that feeds into a CSTR. The pipe
    8·1 answer
  • The two pond system is fed by a stream with flow rate 1.0 MGD (million gallons per day) and BOD (nonconservative pollutant) conc
    15·1 answer
  • On a cold winter day, wind at 55 km/hr is blowing parallel to a 4-m high and 10-m long wall of a house. If the air outside is at
    8·1 answer
  • What is the angle of the input
    12·1 answer
  • What is this i dont understand this at all
    9·1 answer
  • Do you know who Candice is
    8·2 answers
  • List the parts of a manual transmission <br><br> List the parts of a typical clutch assembly?
    14·1 answer
  • Estimate (a) the maximum, and (b) the minimum thermal conductivity values (in W/m-K) for a cermet that contains 76 vol% carbide
    9·1 answer
  • The image shows the relative positions of Earth and the Sun for each of the four seasons. Earth travels in an elliptical orbit a
    11·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!