Answer:
the president and mr.white my history teacher lol
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
Answer:
Enthalpy is a function of pressure hence normalized enthalpy departure values will approach zero with reduced pressure approaching zero
Explanation:
On the generalized enthalpy departure chart, the normalized enthalpy departure values seem to approach zero as the reduced pressure PR approaches zero. this is because enthalpy is a function of pressure therefore as the Pressure is reducing towards the zero value, the gas associated with the pressure tends to behave more like an Ideal gas.
For an Ideal gas the Normalized enthalpy departure value will be approaching the zero value.
Answer:
a) 4.1 kw
b) 4.68 tons
c) 4.02
Explanation:
Saturated vapor enters compressor at ( p1 ) = 2.6 bar
Saturated liquid exits the condenser at ( p2 ) = 12 bar
Isentropic compressor efficiency = 80%
Mass flow rate = 7 kg/min
A) Determine compressor power in KW
compressor power = m ( h2 - h1 )
= 7 / 60 ( 283.71 - 248.545 )
= 4.1 kw
B) Determine refrigeration capacity in tons = m ( h1 - h4 )
= 7/60 ( 248.545 - 107.34 )
= 16.47 kw = 4.68 tons
C) coefficient of performance ( COP )
= Refrigeration capacity / compressor power
= 16.47 / 4.1 = 4.02
Attached below is the beginning part of the solution