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:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}
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.