This question is not complete, the complete question is;
The stagnation chamber of a wind tunnel is connected to a high-pressure air bottle farm which is outside the laboratory building. The two are connected by a long pipe of 4-in inside diameter. If the static pressure ratio between the bottle farm and the stagnation chamber is 10, and the bottle-farm static pressure is 100 atm, how long can the pipe be without choking? Assume adiabatic, subsonic, one-dimensional flow with a friction coefficient of 0.005
Answer:
the length of the pipe is 11583 in or 965.25 ft
Explanation:
Given the data in the question;
Static pressure ratio; p1/p2 = 10
friction coefficient f = 0.005
diameter of pipe, D =4 inch
first we obtain the value from FANN0 FLOW TABLE for pressure ratio of ( p1/p2 = 10 )so
4fL
/ D = 57.915
we substitute
(4×0.005×L
) / 4 = 57.915
0.005L
= 57.915
L
= 57.915 / 0.005
L
= 11583 in
Therefore, the length of the pipe is 11583 in or 965.25 ft
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}
Answer:
Use GitHub or stackoverflow for this answer
Explanation:
It helps with programming a lot
Answer:
Wright Company
Bank Reconciliation
May 31, 2013
Credit side Debit side
Bank statement $26200 | Book balance $27900
<em>Add; </em>
Deposit on May 31 $6400
Bank error $420
Sub-total=$33020
Deductions; | Deduct
ions
Outstanding checks $5800 | Bank service charge $120
Adjusted bank balance $27220 | NSF check $560
Total deduction $680
Adjusted book balance $27220