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
In a lab, scientists grew several generations of offspring of a plant using the method shown. What conclusion can you make about
exis [7]
Answer: c) they have low genetic variability among them.


When a plant is grown for several generations of offspring of a plant, then there are some common things which are to be noted which are found similar in the offspring and in the parent of the offspring. The flowers and fruits and the time or season they come in are absolutely the same.
6 0
11 months ago
He is going ___ in the hot air ballon​
Vladimir [108]

no artical shoul be used here

5 0
2 years ago
About ceramics: Only can be optically opaque or semi-transparent. a) True b)-False
julia-pushkina [17]

Answer: True

Explanation: Ceramics have the property that when the band gap present between the atoms are larger than the light energy then the tend to become opaque because the light scattering is caused . They also show the property of being translucent when there are chances of the light to get a path through the surface of ceramic so they get the light at some parts e.g.porcelain .Therefore the statement given is true that ceramics can be optically opaque or semi-transparent(translucent).

6 0
3 years ago
A circular bar will be subjected to an axial force (P) of 2000 lbf. The bar will be made of material that has a strength (S) of
schepotkina [342]

Answer:

n = 2.36

Explanation:

The stress experimented by the circular bar is:

\sigma = \left[\frac{2000\, lbf}{\frac{\pi}{4}\cdot (0.5\,in)^{2}}\right]\cdot \left(\frac{1\,kpsi}{1000\,psi} \right)

\sigma = 10.186\,kpsi

The safety factor is:

n = \frac{24\,kpsi}{10.186\,kpsi}

n = 2.36

5 0
3 years ago
The Reynolds number is a dimensionless quantity used in fluid mechanics. It is defined as:where d is the pipe diameter, v is the
ELEN [110]
Lb(force)•second/ft^2
6 0
3 years ago
Other questions:
  • Create a project named CarDealer that contains a Form for an automobile dealer. Include options for at least three car models. A
    14·1 answer
  • What are the dimensions of the base of the pyramid?
    14·1 answer
  • You will create three classes, the first two being Student and LineAtOfficeHour. The instances of the first class defines a sing
    8·1 answer
  • First person to tell me what this car is gets 10 points
    10·2 answers
  • What do you guys like in engineering
    13·2 answers
  • An add tape of 101 ft is incorrectly recorded as 100 ft for a 200-ft distance. What is
    6·1 answer
  • Technician A says when you push the horn button, electromagnetism moves an iron bar inside the horn, which opens and closes cont
    5·2 answers
  • When you accelerate, the size of the front tire patch becomes____
    15·1 answer
  • What is the relationship between compressor work and COPR?
    14·1 answer
  • Why is psychology considered a science
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!