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
An aquifer has three different formations. Formation A has a thickness of 8.0 m and hydraulic conductivity of 25.0 m/d. Formatio
saveliy_v [14]

Answer:

The horizontal conductivity is 41.9 m/d.

The vertical conductivity is 37.2 m/d.

Explanation:

Given that,

Thickness of A = 8.0 m

Conductivity = 25.0 m/d

Thickness of B = 2.0 m

Conductivity = 142 m/d

Thickness of C = 34 m

Conductivity = 40 m/d

We need to calculate the horizontal conductivity

Using formula of horizontal conductivity

K_{H}=\dfrac{H_{A}K_{A}+H_{A}K_{A}+H_{A}K_{A}}{H_{A}+H_{B}+H_{C}}

Put the value into the formula

K_{H}=\dfrac{8.0\times25+2,0\times142+34\times40}{8.0+2.0+34}

K_{H}=41.9\ m/d

We need to calculate the vertical conductivity

Using formula of vertical conductivity

K_{V}=\dfrac{H_{A}+H_{B}+H_{C}}{\dfrac{H_{A}}{K_{A}}+\dfrac{H_{B}}{K_{B}}+\dfrac{H_{C}}{K_{C}}}

Put the value into the formula

K_{V}=\dfrac{8.0+2.0+34}{\dfrac{8.0}{25}+\dfrac{2.0}{142}+\dfrac{34}{40}}

K_{V}=37.2\ m/d

Hence, The horizontal conductivity is 41.9 m/d.

The vertical conductivity is 37.2 m/d.

3 0
3 years ago
An ideal gas mixture has a volume base composition of 40% Ar and 60% Ne (monatomic gases). The mixture is now heated at constant
baherus [9]

[Find the attachment]

6 0
3 years ago
1.8 A water flow of 4.5 slug/s at 60 F enters the condenser of steam turbine and leaves at 140 F. Determine the heat transfer ra
Ann [662]

Answer:

Hr=4.2*10^7\ btu/hr

Explanation:

From the question we are told that:

Water flow Rate R=4.5slug/s=144.78ib/sec

Initial Temperature T_1=60 \textdegree F

Final Temperature  T_2=140 \textdegree F

Let

Specific heat of water \gamma= 1

And

 \triangle T= 140-60

 \triangle T= 80\ Deg.F

Generally the equation for Heat transfer rate of water  H_r is mathematically given by

Heat transfer rate to water= mass flow rate* specific heat* change in temperature

 H_r=R* \gamma*\triangle T

 H_r=144.78*80*1

 H_r=11582.4\ btu/sec

Therefore

 H_r=11582.4\ btu/sec*3600

 Hr=4.2*10^7\  btu/hr

3 0
3 years ago
Though still is on the margins of the global agro-food system, organic farming practices are on the rise in the core. In growing
lisabon 2012 [21]

Answer: composted cow manure

Explanation:

A cow manure consists of high levels of ammonia, pathogens which can harm the plants thus cannot be used as fertilizer. The composted cow manure is a processed fertilizer which is prepared by eliminating the ammonia gas and pathogens. It is prepared by adding up the additional organic matter.

It is an excellent growing medium for the agricultural crops and garden plants as it is a nutrient rich fertilizer. It is mixed into the soil or can be used for top dressing of the agricultural field. It is a kind of organic manure.

4 0
3 years ago
Consider a Carnot heat pump cycle executed in a steady-flow system in the saturated mixture region using R-134a flowing at a rat
attashe74 [19]

Answer:

7.15

Explanation:

Firstly, the COP of such heat pump must be measured that is,

              COP_{HP}=\frac{T_H}{T_H-T_L}

Therefore, the temperature relationship, T_H=1.15\;T_L

Then, we should apply the values in the COP.

                           =\frac{1.15\;T_L}{1.15-1}

                           =7.67

The number of heat rejected by the heat pump must then be calculated.

                   Q_H=COP_{HP}\times W_{nst}

                          =7.67\times5=38.35

We must then calculate the refrigerant mass flow rate.

                   m=0.264\;kg/s

                   q_H=\frac{Q_H}{m}

                         =\frac{38.35}{0.264}=145.27

The h_g value is 145.27 and therefore the hot reservoir temperature is 64° C.

The pressure at 64 ° C is thus 1849.36 kPa by interpolation.

And, the lowest reservoir temperature must be calculated.

                   T_L=\frac{T_H}{1.15}

                        =\frac{64+273}{1.15}=293.04

                        =19.89\°C

the lowest reservoir temperature = 258.703  kpa                    

So, the pressure ratio should be = 7.15

8 0
3 years ago
Other questions:
  • A family quarantined at home in March/April 2020 has two dogs: a bull mastiff (Biggie), and a chihuahua (Smalls). Smalls has a b
    9·1 answer
  • Write a matrix, that is a lower triangular matrix.
    15·1 answer
  • A polymeric extruder is turned on and immediately begins producing a product at a rate of 10 kg/min. An operator realizes 20 min
    12·1 answer
  • A 0.9% solution of NaCl is considered isotonic to mammalian cells. what molar concentration is this?
    10·1 answer
  • Let CFG G be the following grammar.
    7·2 answers
  • PLS HURRYY!!!<br> Look at the image below
    10·1 answer
  • Which component found in fertilizer is a known cancer-causing agent?
    11·2 answers
  • To understand the concept of moment of a force and how to calculate it using a scalar formulation.
    9·1 answer
  • What is the primary difference between the process of lost-wax casting as practiced in ancient times and that same process today
    13·1 answer
  • How might a field like philosophy of history help scientists​
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!