Answer:
Explanation:
f = 50.0 Hz, L = 0.650 H, π = 3.14
C = 4.80 μF, R = 301 Ω resistor. V = 120volts
XL = wL = 2πfL
= 2×3.14×50* 0.650
= 204.1 Ohm
Xc= 1/wC
Xc = 1/2πfC
Xc = 1/2×3.14×50×4.80μF
= 1/0.0015072
= 663.48Ohms
1. Total impedance, Z = sqrt (R^2 + (Xc-XL)^2)= √ 301^2+ (663.48Ohms - 204.1 Ohm)^2
√ 90601 + (459.38)^2
√ 90601+211029.98
√ 301630.9844
= 549.209
Z = 549.21Ohms
2. I=V/Z = 120/ 549.21Ohms =0.218Ampere
3. P=V×I = 120* 0.218 = 26.16Watt
Note that
I rms = Vrms/Xc
= 120/663.48Ohms
= 0.18086A
4. I(max) = I(rms) × √2
= 0.18086A × 1.4142
= 0.2557
= 0.256A
5. V=I(max) * XL
= 0.256A ×204.1
=52.2496
= 52.250volts
6. V=I(max) × Xc
= 0.256A × 663.48Ohms
= 169.85volts
7. Xc=XL
1/2πfC = 2πfL
1/2πfC = 2πf× 0.650
1/2×3.14×f×4.80μF = 2×3.14×f×0.650
1/6.28×f×4.8×10^-6 = 4.082f
1/0.000030144× f = 4.082×f
1 = 0.000030144×f×4.082×f
1 = 0.000123f^2
f^2 = 1/0.000123048
f^2 = 8126.922
f =√8126.922
f = 90.14 Hz
Answer:
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Explanation:
The distance formula is the difference of the x coordinates squared, plus the difference of the y coordinates squared, all square rooted. For the general case, it appears you simply need to change how you have written the code.
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Note, by moving the 2 inside of the pow function, you have provided the second argument that it is requesting.
You were close with your initial attempt, you just had a parenthesis after x1 and y1 when you should not have.
Cheers.
Answer:
c. an abrupt increase followed by a gradual decrease
Explanation:
At the headwater, the flow gradient starts high but then slowly decreases as the river moves downstream to its mouth.
Answer:

Explanation:
First, we will find actual properties at given inlet and outlet states by the use of steam tables:
AT INLET:
At 4MPa and 350°C, from the superheated table:
h₁ = 3093.3 KJ/kg
s₁ = 6.5843 KJ/kg.K
AT OUTLET:
At P₂ = 125 KPa and steam is saturated in vapor state:
h₂ =
= 2684.9 KJ/kg
Now, for the isentropic enthalpy, we have:
P₂ = 125 KPa and s₂ = s₁ = 6.5843 KJ/kg.K
Since s₂ is less than
and greater than
at 125 KPa. Therefore, the steam is in a saturated mixture state. So:

Now, we will find
(enthalpy at the outlet for the isentropic process):

Now, the isentropic efficiency of the turbine can be given as follows:

A. AFGI is the answer for this question.