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
Befor operating any plant,machinery or equipment,you should​
SIZIF [17.4K]

Answer:

Always make sure that you are properly protected and that it is all clear to be operated on.

3 0
4 years ago
Read 2 more answers
7. Which of the following is a disadvantage of an electromagnet?
Sati [7]

Answer:

I think

electromagnets require power to operate

7 0
3 years ago
Select three ways an engineer can create a view of a design.
Angelina_Jolie [31]

Sketching projection

  • Sketching will give the brief planning of the engineering work to be done so it's important

Isometric projection

  • Yes doing a work in 3D factor out the mistakes which can be optimised

Third angle projection:-

  • Viewing angles matter a lot
  • So it will help the engineer to make it perfect from all angles
5 0
2 years ago
The bar DA is rigid and is originally held in the horizontal position when the weight W is supported from C. The wires are made
Rom4ik [11]

Answer:

W = 112 lb

Explanation:

Given:

- δb = 0.025 in

- E = 29000 ksi      (A-36)

- Area A_de = 0.002 in^2

Find:

Compute Weight W attached at C

Solution:

- Use proportion to determine δd:

                              δd/5 = δb/3

                              δd = (5/3) * 0.025

                              δd = 0.0417 in

- Compute εde i.e strain in DE:

                               εde = δd / Lde

                               εde = 0.0417 / 3*12

                               εde = 0.00116

- Compute stress in DE, σde:

                               σde = E*εde

                               σde = 29000*0.00116

                               σde = 33.56 ksi

- Compute the Force F_de:

                               F_de = σde *A_de

                               F_de = 33.56*0.002

                               F_de = 0.0672 kips

- Equilibrium conditions apply:

                               (M)_a = 0

                               3*W - 5*F_de = 0

                               W = (5/3)*F_de

                              W = (5/3)* 0.0672 = 112 lb

4 0
3 years ago
Which of the following is an acceptable first step procedure to help prevent scratching when cleaning a transparent plastic surf
Alchen [17]

Answer:

Flush the surface with clean water

Explanation:

An example can be demonstrated when cleaning an aircraft's transparent plastic windshield. The first step is to flush it with clean water to help remove all grit and sand that might be on the surface. Once the surface is free of any sand and grit capable of scratching the plastic surface, it can then be washed and then rinsed.

4 0
3 years ago
Other questions:
  • Fully developed conditions are known to exist for water flowing through a 25-mm-diameter tube at 0.01 kg/s and 27 C. What is the
    5·1 answer
  • before adjusting drive-belt tension, technician a checks for proper pulley alignment. technician b looks up the specified belt t
    9·1 answer
  • You are working as an electrical technician. One day, out in the field, you need an inductor but cannot find one. Looking in you
    11·1 answer
  • Cite the phases that are present and the phase compositions for the following alloys: (a) 15 wt% Sn - 85 wt% Pb at 100 o C. (b)
    10·1 answer
  • I need ideas of usernames for a 2021 Jeep Wrangler Rubicon!!
    15·1 answer
  • HELP _7. All of the following except which would lead to an INCREASE in friction?
    15·1 answer
  • 2. (Problem 4.60 on main book, diameters different) Water flows steadily through a fire hose and nozzle. The hose is 35 mm diame
    8·1 answer
  • Use the drop-down menus to complete the statements about using OneNote in Outlook meeting requests.
    15·1 answer
  • 1. A flywheel is suspended by resting the inside of the rim on a horizontal knife edge so that the wheel can swing in a vertical
    5·1 answer
  • Water flow enters a pipe at a velocity of 1m/s. The pipe inlet is 10cm. The pipe outlet is 6cm. 1. Determine the velocity of the
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!