Answer:
Explanation:
In a particular application involving airflow over a heated surface, the boundary layer temperature distribution, T(y), may be approximated as:
[ T(y) - Ts / T∞ - Ts ] = 1 - e^( -Pr (U∞y / v) )
where y is the distance normal to the surface and the Prandtl number, Pr = Cpu/k = 0.7, is a dimensionless fluid property. a.) If T∞ = 380 K, Ts = 320 K, and U∞/v = 3600 m-1, what is the surface heat flux? Is this into or out of the wall? (~-5000 W/m2 , ?). b.) Plot the temperature distribution for y = 0 to y = 0.002 m. Set the axes ranges from 380 to 320 for temperature and from 0 to 0.002 m for y. Be sure to evaluate properties at the film temperature.
Answer:
How an Accelerometer Works: When accelerometer is tilted, due to moving mass, alignment of capacitor plates changes which alters the capacitance value. These changes are measured by built in circuitry and outputs an analogue signal.
Explanation:
Answer:
21.6 kw
Explanation:
Given data:
m = 50 kg/s
Inlet pressure (p1) = 2 bar
outlet pressure(p2) = 6.2 bar
suction ( h1 ) = -2.2 m
delivery ( h2 ) = 8.5 m
d1 = 200 mm = 0.2 m
d2 = 100 mm = 0.1 m
Vs of water = 0.001 m^3/kg
next we have to determine the Q value
Q = V*A
Q = 0.001 * 50 = 0.05 m^3/s
next we have to calculate the various V's
V1 = Q/A1 =
= 1.59 m/s
V2 = Q/A2 =
= 6.37 m/s
Determine the capacity of the electric motor
attached below is the detailed solution
Answer:
true
Explanation:
it is used to describe the family of transit services available to residents of urban area
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language