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
madreJ [45]
3 years ago
8

Carbon dioxide flows at a rate of 1.5 ft3 /s from a 3-in. pipe in which the pressure and temperature are 20 psi (gage) and 120 °

F into a 1.5-in. pipe. If viscous effects are neglected and incompressible conditions are assumed, determine the pressure in the smaller pipe
Engineering
1 answer:
Monica [59]3 years ago
7 0

Answer:

the absolute pressure in the smaller pipe = 19.63 psi

Explanation:

Let A be the diameter of the first pipe = 3 inches

Let B be the diameter of the second pipe.  = 1.5 inches

To feet (ft) ; we have

Diameter of the pipe A D_1 = (\dfrac{3}{12})ft = 0.25  \ ft

Diameter of pipe B  D_1 = (\dfrac{1.5}{12})ft = 0.125  \ ft

Temperature T = 120° F = (120+ 460)°R

= 580 ° R

The pressure gage to atmospheric pressure ; we have:

P_{Absolute }=P _{Atm} + P_{guage}

where;

atmospheric pressure = 1.47 psi

pressure gage = 20 psi

P_{Absolute }=(1.47+20)psi

P_{Absolute }=34.7 \ psi

To lb/ft²; we have:

P_{Absolute }=(34.7 *144 ) lb/ft^2

P_{Absolute }= 4.998.6 fb/ft²

The density of carbon dioxide can be calculated by using the relation

\rho = \dfrac{P}{RT}

\rho = \dfrac{4996.8}{(1130 \ lb /slug ^0 R)*(580{^0} R)}

\rho = 7.64*10^{-3}\ slug /ft^3

Formula for calculating cross sectional area is

A = \dfrac{\pi}{4}D

For diameter of pipe D_1 = 0.025

A₁ = \dfrac{\pi}{4}*0.25^2

A₁ = 0.04909 ft²

For diameter of pipe D_2 - 0.0125

A₂ =\dfrac{\pi}{4}*0.125^2

A₂ = 0.012227 ft²

Using the continuity equation to determine the velocities V₁ and V₂ respectively.

For V₁

Q = A₁V₁

V₁ = Q₁/ A₁

V₁ = 1.5/0.04909

V₁ = 30.557 ft/s

For V₂

Q = A₂V₂

V₂= Q₂/ A₂

V₂ = 1.5/0.04909

V₂ = 30.557 ft/s

Finally; using Bernoulli's Equation to the flow of the carbon dioxide from the larger pipe to the smaller pipe ; we have:

p_1 + \dfrac{\rho V_1^2}{2}+\gamma Z_1= p_2 + \dfrac{\rho V_2^2}{2}+\gamma Z_2

Since the pipe is horizontal then;

\gamma Z_1= \gamma Z_2

So;

p_1 + \dfrac{\rho V_1^2}{2}= p_2 + \dfrac{\rho V_2^2}{2}

p_2 =p_1 +\dfrac{1}{2}  \rho(V_1^2-V_2^2)

p_2 =4996.8+\dfrac{1}{2}  *7.624*10^{-3}(30.557^2-122.23^2)

p_2 =4943.41 \ lb/ft^2

To psi;

p_2 =\dfrac{4943.41 }{144}psi

p_2 =34.33 \ psi gage

The absolute pressure in the smaller pipe can be calculated as:

p_2 _{absolute} = 34.33 - 14.7

p_2 _{absolute} = 19.63 \ \  absolute

Hence, the absolute pressure in the smaller pipe = 19.63 psi

You might be interested in
Hi,I want to know something.
Paha777 [63]

Answer:

So it looks to me that, Yes, you can find 10-50 leds on Amazon. You just have to be specific and search 10-50 led Christmas lights for windows, or something along those lines. Also try filtering the results, and reading the descriptions and reviews. This should help you out, and if it doesn't then I'm sorry.

Good luck friend :)

8 0
2 years ago
Takt time is the rate at which a factory must produce to satisfy the customer's demand. a)- True b)- False
laila [671]

Answer: a)True

Explanation: Takt time is defined as the average time difference between  the production of the two consecutive unit of goods by the manufacturer and this rate is matched with the demand of the customer. This is the time which is calculated to find the acceptable time for which the goods unit must be produced  by the factory to meet the needs of the customer. Therefore , the statement is true that takt time is the rate at which a factory must produce to satisfy the customer's demand.

6 0
3 years ago
Which traits are common in all four career pathways of the Information Technology field? Check all that apply.
Komok [63]

Answer:

Accuracy and attention to detail, Problem solving and critical thinking skills, Knowledge of programming language .

Explanation:

It is a technological area in which a person learns how to develop computer hardware, including PCs, laptops, tablets, processing, networking, and other hardware parts. Another field of study in IT is Management Information Systems (MIS).

The IT industry's career paths can be categorized equally in the two primary field’s hardware and software areas  

In hardware, there is Production, maintenance, research and development, and strategic planning.

In software, there is manufacturing, development, programming, software testing, and maintenance and support under software.  

Computer operations, administration of databases, sales / marketing and data centre management are connected areas.

7 0
2 years ago
Write the following decorators and apply them to a single function (applying multiple decorators to a single function): 1. The f
natita [175]

Answer:

Complete question is:

write the following decorators and apply them to a single function (applying multiple decorators to a single function):

1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”

2. The decorator will return the wrapper per usual.

3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.

4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.

5. Apply both decorators (by @ operator to greetings()).

6. Invoke the greetings() function and capture the result.

Code :

def strong_decorator(func):

def func_wrapper(name):

return "<strong>{0}</strong>".format(func(name))

return func_wrapper

def em_decorator(func):

def func_wrapper(name):

return "<em>{0}</em>".format(func(name))

return func_wrapper

@strong_decorator

@em_decorator

def Greetings(name):

return "{0}".format(name)

print(Greetings("Hello"))

Explanation:

5 0
3 years ago
Match the description with the term. I need help
mel-nik [20]

Answer:

cultivation - preparing and planting crops

domestication - capturing, taming, and breeding animals

hunting and gathering - obtaining food from the wild

Explanation:

moo

6 0
2 years ago
Other questions:
  • A rod is 2m long at temperature of 10oC. Find the expansion of the rod, when the temperature is raised to 80oC. If this expansio
    7·1 answer
  • A large plate is fabricated from a steel alloy that has a plane strain fracture toughness of 78 MPa (70.98 ksi). If the plate is
    7·1 answer
  • Jen is developing the positioning statement for a new line of sunglasses. In a meeting, the marketing team tells Jen that she ha
    9·1 answer
  • The water in an 8-m-diameter, 3-m-high above-ground swimming pool is to be emptied by unplugging a 3-cm-diameter, 25-m-long hori
    9·1 answer
  • when a metal, such as lead, is oxidied (loses electrons) to form a positive ion (cation), how does he solubility change?
    14·1 answer
  • Opposition to current flow, restricts or resists current flow
    15·1 answer
  • 37. In ______ combination of drugs, the effects of one drug cancel or diminish
    12·1 answer
  • Given the latent heat of fusion (melting) and the latent heat of vaporisation for water are Δhs = 333.2 kJ/kg and Δhv = 2257 kJ/
    15·1 answer
  • Who invented engineering first?​
    12·1 answer
  • Is reinforcement needed in a retaining wall
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!