Answer:
pneumatic power system
Explanation:
pneumatic power can be used to quietly operate power windows, door locks, power mirrors, and much much more, also negative pressure pneumatics (vacuum) is used to control many engine and fuel systems
Answer:
a) 1253 kJ
b) 714 kJ
c) 946 C
Explanation:
The thermal efficiency is given by this equation
η = L/Q1
Where
η: thermal efficiency
L: useful work
Q1: heat taken from the heat source
Rearranging:
Q1 = L/η
Replacing
Q1 = 539 / 0.43 = 1253 kJ
The first law of thermodynamics states that:
Q = L + ΔU
For a machine working in cycles ΔU is zero between homologous parts of the cycle.
Also we must remember that we count heat entering the system as positiv and heat leaving as negative.
We split the heat on the part that enters and the part that leaves.
Q1 + Q2 = L + 0
Q2 = L - Q1
Q2 = 539 - 1253 = -714 kJ
TO calculate a temperature for the heat sink we must consider this cycle as a Carnot cycle. Then we can use the thermal efficiency equation for the Carnot cycle, this one uses temperatures:
η = 1 - T2/T1
T2/T1 = 1 - η
T2 = (1 - η) * T1
The temperatures must be given in absolute scale (1453 C = 1180 K)
T2 = (1 - 0.43) * 1180 = 673 K
673 K = 946 C
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2