Answer:
5984.67N
Explanation:
A 14 inch diameter pipe is decreased in diameter by 2 inches through a contraction. The pressure entering the contraction is 28 psi and a pressure drop of 2 psi occurs through the contraction if the upstream velocity is 4.0 ft/sec. What is the magnitude of the resultant force (lbs) needed to hold the pipe in place?
from continuity equation
v1A1=v2A2
equation of continuity
v1=4ft /s=1.21m/s
d1=14 inch=.35m
d2=14-2=0.304m
A1=pi*d^2/4
0.096m^2
a2=0.0706m^2
from continuity once again
1.21*0.096=v2(0.07)
v2=1.65
force on the pipe
(p1A1- p2A2) + m(v2 – v1)
from bernoulli
p1 + ρv1^2/2 = p2 + ρv2^2/2
difference in pressure or pressure drop
p1-p2=2psi
13.789N/m^2=rho(1.65^2-1.21^2)/2
rho=21.91kg/m^3
since the pipe is cylindrical
pressure is egh
13.789=21.91*9.81*h
length of the pipe is
0.064m
AH=volume of the pipe(area *h)
the mass =rho*A*H
0.064*0.07*21.91
m=0.098kg
(193053*0.096- 179263.6* 0.07) + 0.098(1.65 – 1.21)
force =5984.67N
Answer:
... spilling water or getting anything cascading onto the floor
Answer:
//Define the header file
#ifndef PLAYER_H
#define PLAYER_H
//header file.
#include <string>
//Use the standard namespace.
using namespace std;
//Define the class Player.
class Player
{
//Declare the required data members.
string name;
int score;
public:
//Declare the required
//member functions.
void setName(string par_name);
void setScore(int par_score);
string getName();
int getScore();
}
//End the definition
//of the header file.
#endif
Player.cpp:
//Include the "Player.h" header file,
#include "Player.h"
//Define the setName() function.
void Player::setName(string par_name)
{
name = par_name;
}
//Define the setScore() function.
void Player::setScore(int par_score)
{
score = par_score;
}
//Define the getName() function.
string Player::getName()
{
return name;
}
//Define the getScore() function.
int Player::getScore()
{
return score;
}
Answer:
Q=0.000604 m³/s
Explanation:
Given that
d₁=5 cm
d₂=1 cm
P= 30 KPa
Density of water ,ρ=1000 kg/m³
As we know that volume flow rate Q given as


A₁=0.0019 m²

A₂=0.000078 m²

Q=0.000604 m³/s