Answer:
Explanation:
The pressures given are relative
p1 = 2000 psi
P1 = 2014 psi = 13.9 MPa
p2 = 4 psi
P2 = 18.6 psi = 128 kPa
Values are taken from the steam pressure-enthalpy diagram
h2 = 2500 kJ/kg
If the output of the turbine has a quality of 85%:
t2 = 106 C
I consider the expansion in the turbine to adiabatic and reversible, therefore, isentropic
s1 = s2 = 6.4 kJ/(kg K)
h1 = 3500 kJ/kg
t2 = 550 C
The work in the turbine is of
w = h1 - h2 = 3500 - 2500 = 1000 kJ/kg
The thermal efficiency of the cycle depends on the input heat.
η = w/q1
q1 is not a given, so it cannot be calculated.
Juicers nb 345676 at that rate it will be amazing
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:
the action or process of differentiating or distinguishing between two or more things or people.