Answer:
P2 = 3.9 MPa
Explanation:
Given that
T₁ = 290 K
P₁ = 95 KPa
Power P = 5.5 KW
mass flow rate = 0.01 kg/s
solution
with the help of table A5
here air specific heat and adiabatic exponent is
Cp = 1.004 kJ/kg K
and k = 1.4
so
work rate will be
W = m × Cp × (T2 - T1) ..........................1
here T2 = W ÷ ( m × Cp) + T1
so T2 = 5.5 ÷ ( 0.001 × 1.004 ) + 290
T2 = 838 k
so final pressure will be here
P2 = P1 ×
..............2
P2 = 95 × 
P2 = 3.9 MPa
The pressure inside the can upon cooling is 0.4 atm.
<u>Explanation:</u>
Given -
Initial Temperature, T1 = 908°C = 908 + 273 K = 1181 K
Final Temperature, T2 = 208°C = 208 + 273 K = 481 K
Pressure upon cooling, P2 = ?
Using Gay Lussac's law:
P1/T1 = P2/T2
P2 = P1 X T2 / T1
P2 = 1 atm X 481 / 1181
P2 = 0.4 atm
Therefore, the pressure inside the can upon cooling is 0.4 atm.
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer:
Explanation:
var generator = new Random(1);
// Now the nextGaussian() function returns a normal distribution of random numbers with the following parameters: a mean of zero and a standard deviation of one
var draw = function() {
var num = generator.nextGaussian();
var standardDeviation = 60;
var mean = 2003;
// Multiply by the standard deviation and add the mean.
var x = standardDeviation * num + mean;
noStroke();
fill(214, 159, 214, 10);
ellipse(x, 200, 16, 16); };
Hope this will be helpful
Overcurrent protective devices, or OCPDs