Answer:
8 mm
Explanation:
Given:
Diameter, D = 800 mm
Pressure, P = 2 N/mm²
Permissible tensile stress, σ = 100 N/mm²
Now,
for the pipes, we have the relation as:
where, t is the thickness
on substituting the respective values, we get
or
t = 8 mm
Hence, the minimum thickness of pipe is 8 mm
Answer:
The power developed by engine is 167.55 KW
Explanation:
Given that
Mean effective pressure = 6.4 bar
Speed = 2000 rpm
We know that power is the work done per second.
So
We have to notice one point that we divide by 120 instead of 60, because it is a 4 cylinder engine.
P=167.55 KW
So the power developed by engine is 167.55 KW
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer: The exit temperature of the gas in deg C is .
Explanation:
The given data is as follows.
= 1000 J/kg K, R = 500 J/kg K = 0.5 kJ/kg K (as 1 kJ = 1000 J)
= 100 kPa,
We know that for an ideal gas the mass flow rate will be calculated as follows.
or, m =
=
= 10 kg/s
Now, according to the steady flow energy equation:
= 5 K
= 5 K + 300 K
= 305 K
= (305 K - 273 K)
=
Therefore, we can conclude that the exit temperature of the gas in deg C is .