Answer:
work=281.4KJ/kg
Power=4Kw
Explanation:
Hi!
To solve follow the steps below!
1. Find the density of the air at the entrance using the equation for ideal gases

where
P=pressure=120kPa
T=20C=293k
R= 0.287 kJ/(kg*K)=
gas constant ideal for air

2.find the mass flow by finding the product between the flow rate and the density
m=(density)(flow rate)
flow rate=10L/s=0.01m^3/s
m=(1.43kg/m^3)(0.01m^3/s)=0.0143kg/s
3. Please use the equation the first law of thermodynamics that states that the energy that enters is the same as the one that must come out, we infer the following equation, note = remember that power is the product of work and mass flow
Work
w=Cp(T1-T2)
Where
Cp= specific heat for air=1.005KJ/kgK
w=work
T1=inlet temperature=20C
T2=outlet temperature=300C
w=1.005(300-20)=281.4KJ/kg
Power
W=mw
W=(0.0143)(281.4KJ/kg)=4Kw
a computer used primarily by large organizations for critical applications like bulk data processing for tasks such as censuses, industry and consumer statistics, enterprise resource planning, and large-scale transaction processing
Answer:
Logarithmic decrement is equal to 0.182
Explanation:
given,
amplitude decay = 9 dB
number of cycles = 12 cycles
mass of the system = 7 kg
spring stiffness = 3000 N/m
logarithmic decrement = ?
now,
logarithmic decreament = 
= 
=ln (1.2)
= 0.182
Hence, Logarithmic decrement is equal to 0.182
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
Answer:
(b)False
Explanation:
defined as
=
Where x is the distance from centroidal x-axis
y is the distance from centroidal y-axis
dA is the elemental area.
The product of x and y can be positive or negative ,so the value of
can be positive as well as negative .
So from the above expressions we can say that the product of
is different from
.