Answer:
-50.005 KJ
Explanation:
Mass flow rate = 0.147 KJ per kg
mass= 10 kg
Δh= 50 m
Δv= 15 m/s
W= 10×0.147= 1.47 KJ
Δu= -5 kJ/kg
ΔKE + ΔPE+ ΔU= Q-W
0.5×m×(30^2- 15^2)+ mgΔh+mΔu= Q-W
Q= W+ 0.5×m×(30^2- 15^2) +mgΔh+mΔu
= 1.47 +0.5×1/100×(30^2- 15^2)-9.7×50/1000-50
= 1.47 +3.375-4.8450-50
Q=-50.005 KJ
R01= 14.1 Ω
R02= 0.03525Ω
<h3>Calculations and Parameters</h3>
Given:
K= E2/E1 = 120/2400
= 0.5
R1= 0.1 Ω, X1= 0.22Ω
R2= 0.035Ω, X2= 0.012Ω
The equivalence resistance as referred to both primary and secondary,
R01= R1 + R2
= R1 + R2/K2
= 0.1 + (0.035/9(0.05)^2)
= 14.1 Ω
R02= R2 + R1
=R2 + K^2.R1
= 0.035 + (0.05)^2 * 0.1
= 0.03525Ω
Read more about resistance here:
brainly.com/question/17563681
#SPJ1
Answer:
Web Browser
Explanation:
Because you dont use a messaging app or presentation software to look up stuff its common knowledge
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