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
Artist 52 [7]
3 years ago
14

The irreversible losses in the penstock of a hydroelectric dam are estimated to be 7 m. The elevation difference between the res

ervoir surface upstream of the dam and the surface of the water exiting the dam is 140 m. If the flow rate through the turbine is 4000 L/min, determine (a) the power loss due to irreversible head loss, (b) the efficiency of the piping, and (c) the electric power output if the turbine-generator efficiency is 84 percent.
Engineering
1 answer:
geniusboy [140]3 years ago
8 0

Answer:

a) the power loss due to irreversible head loss is 4.57 kW

b) the efficiency of the piping is 95%

c) the electric power output is 72.9918 kW

Explanation:

Given the data in the question below;

Irreversible loses h_L = 7m

Total head, H = 140 m

flow rate Q = 4000 L/min = 0.0666 m³/s

Generator efficiency n₀ = 84% = 0.84

we know that density of water is 1000 kg/m³

g = 9.81 m/s²

a) power loss due to irreversible head loss P_L is;    

P_L = p × Q × g × h_L

we substitute

P_L = 1000 × 0.0666 × 9.81 × 7

P_L = 4573.422 W

P_L = 4573.422 / 1000

P_L = 4.57 kW

Therefore, the power loss due to irreversible head loss is 4.57 kW

b) the efficiency of the piping n is;

n = (Actual head / maximum head) × 100

n = (( H - h_L ) / H) × 100

so we substitute

n = (( 140 - 7 ) / 140) × 100

n = (133/140) × 100

n = 0.95 × 100

n = 95%

Therefore, the efficiency of the piping is 95%

c) the electric power output if the turbine-generator efficiency is 84 percent;

n₀ = Power_{outpu / power_{inpu

Power_{outpu = n₀ × power_{inpu

Power_{outpu = n₀ × ( pQg( H - h_L ))

so we substitute

Power_{outpu = 0.84 × ( 1000 × 0.0666 × 9.81( 140 - 7 ))

Power_{outpu = 0.84 × 653.346( 133)

Power_{outpu = 0.84 × 86895.018

Power_{outpu = 72991.815 W

Power_{outpu = 72991.815 / 1000

Power_{outpu = 72.9918 kW

Therefore, the electric power output is 72.9918 kW

You might be interested in
Using Java..
uysha [10]

Answer:

The source code files for this question have been attached to this response.

Please download it and go through each of the class files.

The codes contain explanatory comments explaining important segments of the codes, kindly go through these comments.

Download java
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
7 0
3 years ago
What is one thing a person should do to stay safe when exercising
elixir [45]
Staying hydrated at all times
7 0
3 years ago
Read 2 more answers
The time to half-maximum voltage is how long it takes the capacitor to charge halfway. Based on your experimental results, how l
satela [25.4K]

Answer:

Time taken for the capacitor to charge to 0.75 of its maximum capacity = 2 × (Time take for the capacitor to charge to half of its capacity)

Explanation:

The charging of a capacitor/the build up of its voltage follows an exponential progression and is given by

V(t) = V₀ [1 - e⁻ᵏᵗ]

where k = (1/time constant)

when V(t) = V₀/2

(1/2) = 1 - e⁻ᵏᵗ

e⁻ᵏᵗ = 0.5

In e⁻ᵏᵗ = In 0.5 = - 0.693

-kt = - 0.693

kt = 0.693

t = (0.693/k)

Recall that k = (1/time constant)

Time to charge to half of max voltage = T(1/2)

T(1/2) = 0.693 (Time constant)

when V(t) = 0.75

0.75 = 1 - e⁻ᵏᵗ

e⁻ᵏᵗ = 0.25

In e⁻ᵏᵗ = In 0.25 = -1.386

-kt = - 1.386

kt = 1.386

t = 1.386(time constant) = 2 × 0.693(time constant)

Recall, T(1/2) = 0.693 (Time constant)

t = 2 × T(1/2)

Hope this Helps!!!

3 0
3 years ago
Read 2 more answers
What’s a pigtail when wiring
Levart [38]

Answer:

A pigtail when wiring is technique that is used in connecting a lot of wires together.

Explanation:

A pigtail is a wire that is short in length. It has two ends. One end has a connector while the other end has other wires connected to it.

Pigtail when wiring is the connection of more than one wire in a circuit to another device. Pigtail when wiring helps to extend the length of the wire in a circuit if the wire used it short).

Pigtail when wiring is a technique what helps to keep the circuit organised because it prevents the wires from getting tangled.

7 0
3 years ago
g (b) (4 pt) Write a function unique that identifies the repeated elements of a list and returns a list with unique elements. $
Taya2010 [7]

Answer:

I am writing a Python function unique()    

def unique(list):  # function unique that takes a list as parameter

 unique_list = []  #list to store unique elements

 for elements in list:  # loop that checks every element of the list

   if elements not in unique_list:  # takes unique elements from list

     unique_list.append(elements)  

#appends unique elements  from list to unique_list

 return unique_list      #outputs unique_list elements

         

Explanation:

The unique() function takes a list as argument which is named as list.

unique_list is a new list which stores unique element from the list.

The loop moves through the elements of the list one by one.

if condition checks if the element in list is not present in the unique_list which means that element is unique to the unique_list.

If this condition is true this means that the element is not repeated and is not already present in unique_list. Then that element is included to the unique_list using append() function which appends an element into the unique_list from the list.

If you want to check if this function works you pass a list with repeated elements to this function so that it can print the unique elements as follows:

print(unique([1,2,2,2,2,3,4,4,4,4,4,5]))

Output:

[1, 2, 3, 4, 5]

The screen shot of the function along with its output is attached.

6 0
4 years ago
Other questions:
  • A cylindrical bar of steel 10.1 mm (0.3976 in.) in diameter is to be deformed elastically by application of a force along the ba
    15·1 answer
  • Write a new ARMv8 assembly file called "lab04b.S" which is called by your main function. It should have the following specificat
    13·1 answer
  • An experimentalist claims that, based on his measurements, a heat engine receives 300 Btu of heat from a source of 900 R, conver
    14·1 answer
  • Amplifiers are extensively used in the baseband portion of a radio receiver system to condition the baseband signal to produce a
    5·1 answer
  • Pehdhdjdjdodnjdndjdjdjfjdk
    11·2 answers
  • Refrigerant-134a enters an adiabatic compressor at -30oC as a saturated vapor at a rate of 0.45 m3 /min and leaves at 900 kPa an
    13·1 answer
  • Cual es el costo del kwh
    8·1 answer
  • Thermodynamics fill in the blanks The swimming pool at the local YMCA holds roughly 749511.5 L (749511.5 kg) of water and is kep
    6·1 answer
  • Compare both xbox and playstaion. What are pros and cons between the two gaming systems. What is your game system of choice?
    13·1 answer
  • Engineered lumber should not be used for
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!