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
GREYUIT [131]
2 years ago
15

g A smooth pipeline with a diameter of 5 cm carries glycerin at 20 degrees Celsius. The flow rate in the pipe is 0.01 m3/s. What

is the friction factor
Engineering
1 answer:
earnstyle [38]2 years ago
4 0

Answer:

The friction factor is 0.303.

Explanation:

The flow velocity (v), measured in meters per second, is determined by the following expression:

v = \frac{4\cdot \dot V}{\pi \cdot D^{2}} (1)

Where:

\dot V - Flow rate, measured in cubic meters per second.

D - Diameter, measured in meters.

If we know that \dot V = 0.01\,\frac{m^{3}}{s} and D = 0.05\,m, then the flow velocity is:

v = \frac{4\cdot \left(0.01\,\frac{m^{3}}{s} \right)}{\pi\cdot (0.05\,m)^{2}}

v \approx 5.093\,\frac{m}{s}

The density and dinamic viscosity of the glycerin at 20 ºC are \rho = 1260\,\frac{kg}{m^{3}} and \mu = 1.5\,\frac{kg}{m\cdot s}, then the Reynolds number (Re), dimensionless, which is used to define the flow regime of the fluid, is used:

Re = \frac{\rho\cdot v \cdot D}{\mu} (2)

If we know that \rho = 1260\,\frac{kg}{m^{3}}, \mu = 1.519\,\frac{kg}{m\cdot s}, v \approx 5.093\,\frac{m}{s} and D = 0.05\,m, then the Reynolds number is:

Re = \frac{\left(1260\,\frac{kg}{m^{3}} \right)\cdot \left(5.093\,\frac{m}{s} \right)\cdot (0.05\,m)}{1.519 \frac{kg}{m\cdot s} }

Re = 211.230

A pipeline is in turbulent flow when Re > 4000, otherwise it is in laminar flow. Given that flow has a laminar regime, the friction factor (f), dimensionless, is determined by the following expression:

f = \frac{64}{Re}

If we get that  Re = 211.230, then the friction factor is:

f = \frac{64}{211.230}

f = 0.303

The friction factor is 0.303.

You might be interested in
Consider an aircraft powered by a turbojet engine that has a pressure ratio of 9. The aircraft is stationary on the ground, held
77julia77 [94]

Answer:

The break force that must be applied to hold the plane stationary is 12597.4 N

Explanation:

p₁ = p₂, T₁ = T₂

\dfrac{T_{2}}{T_{1}} = \left (\dfrac{P_{2}}{P_{1}}  \right )^{\frac{K-1}{k} }

{T_{2}}{} = T_{1} \times \left (\dfrac{P_{2}}{P_{1}}  \right )^{\frac{K-1}{k} } = 280.15 \times \left (9  \right )^{\frac{1.333-1}{1.333} } = 485.03\ K

The heat supplied = \dot {m}_f × Heating value of jet fuel

The heat supplied = 0.5 kg/s × 42,700 kJ/kg = 21,350 kJ/s

The heat supplied = \dot m · c_p(T_3 - T_2)

\dot m = 20 kg/s

The heat supplied = 20*c_p(T_3 - T_2) = 21,350 kJ/s

c_p = 1.15 kJ/kg

T₃ = 21,350/(1.15*20) + 485.03 = 1413.3 K

p₂ = p₁ × p₂/p₁ = 95×9 = 855 kPa

p₃ = p₂ = 855 kPa

T₃ - T₄ = T₂ - T₁ = 485.03 - 280.15 = 204.88 K

T₄ = 1413.3 - 204.88 = 1208.42 K

\dfrac{T_5}{T_4}  = \dfrac{2}{1.333 + 1}

T₅ = 1208.42*(2/2.333) = 1035.94 K

C_j = \sqrt{\gamma \times R \times T_5} = √(1.333*287.3*1035.94) = 629.87 m/s

The total thrust = \dot m × C_j = 20*629.87 = 12597.4 N

Therefore;

The break force that must be applied to hold the plane stationary = 12597.4 N.

5 0
3 years ago
What is a system that performs different functions according to a fixed schedule?
geniusboy [140]

<u>I'm pretty sure your answer is B, because Sequential Control operates during order like a schedule</u>

Sequential Control=A control system in which the individual steps are processed in a predetermined order, progression from one sequence step to the next being dependent on defined conditions being satisfied.

Tell me if I'm incorrect but, Hope this helps!

4 0
3 years ago
Read 2 more answers
The article provides information by using a list. What does it list? A. Thanksgiving food B. places where clams can be found C.
Gelneren [198K]

Answer:

C

Explanation:

7 0
3 years ago
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of several trips by record
Effectus [21]

Answer:

import java.util.*;

public class Main {

   

   public static void main(String[] args) {

     

       double milesPerGallon = 0;

       int totalMiles = 0;

       int totalGallons = 0;

       double totalMPG = 0;

       

       Scanner input = new Scanner(System.in);

 

       while(true){

           System.out.print("Enter the miles driven: ");

           int miles = input.nextInt();

           if(miles <= 0)

               break;

           else{

               System.out.print("Enter the gallons used: ");

               int gallons = input.nextInt();

               totalMiles += miles;

               totalGallons += gallons;

               milesPerGallon = (double) miles/gallons;

               totalMPG = (double) totalMiles / totalGallons;

               System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);

               System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);

           }

       }

   }  

}

Explanation:

Initialize the variables

Create a while loop that iterates until the specified condition is met inside the loop

Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.

6 0
3 years ago
What are the 4 types of electricity?
olchik [2.2K]

Answer:

Fossil Fuels 67% (Non-Renewable Source): Coal 41%, Natural Gas 21% & Oil 5.1%

Renewable Energy 16%

Mainly Hydroelectric 92%: Wind 6%, Geothermal 1%, Solar 1%

Nuclear Power 13%

Explanation:

3 0
3 years ago
Other questions:
  • A 3.5-m3 rigid tank initially contains air whose density is 2 kg/m3 . The tank is connected to a high-pressure supply line throu
    8·1 answer
  • What is 1000 kJ/sec in watts?
    10·1 answer
  • A program is seeded with 30 faults. During testing, 21 faults are detected, 15 of which are seeded faults and 6 of which are ind
    12·1 answer
  • Consider uniaxial extension of a test specimen. It has gauge length L = 22 cm (the distance between where it is clamped in the t
    6·1 answer
  • To revise a monthly budget, changes in which categories might need to be addressed? Check all that apply.
    13·1 answer
  • Help me asap I rely need help u will be my fav​
    8·2 answers
  • What invention of the Middle Ages contributed to making books easily available?
    15·1 answer
  • An ideal Diesel Cycle has a compression ratio of 18 and a cutoff ratio of 1.5. Determine the maximum air temperature and the rat
    14·1 answer
  • Based on the pattern, what are the next two terms of the sequence? 9,94,916,964,9256,... A. 91024,94096 B. 9260,91028 C. 9260,92
    5·1 answer
  • Question
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!