Answer:
See explaination and attachment.
Explanation:
Iteration method is a repetitive method applied until the desired result is achieved.
Let the given equation be f(x) = 0 and the value of x to be determined. By using the Iteration method you can find the roots of the equation. To find the root of the equation first we have to write equation like below
x = pi(x)
Let x=x0 be an initial approximation of the required root α then the first approximation x1 is given by x1 = pi(x0).
Similarly for second, thrid and so on. approximation
x2 = pi(x1)
x3 = pi(x2)
x4 = pi(x3)
xn = pi(xn-1).
please go to attachment for the step by step solution.
Answer:
80.7lbft/hr
Explanation:
Flow rate of water in the system = 3.6x10^-6
The height h = 100
1s = 1/3600h
This implies that
Q = 3.6x10^-6/[1/3600]
Q = 0.0000036/0.000278
Q = 0.01295
Then the power is given as
P = rQh
The specific weight of water = 62.3 lb/ft³
P = 62.3 x 0.01295 x 100
P = 80.675lbft/h
When approximated
P = 80.7 lbft/h
This is the average power that could be generated in a year.
This answers the question and also corresponds with the answer in the question.
Answer:
Yes, the flow is turbulent.
Explanation:
Reynolds number gives the nature of flow. If he Reynolds number is less than 2000 then the flow is laminar else turbulent.
Given:
Diameter of pipe is 10mm.
Velocity of the pipe is 1m/s.
Temperature of water is 200°C.
The kinematic viscosity at temperature 200°C is
m2/s.
Calculation:
Step1
Expression for Reynolds number is given as follows:

Here, v is velocity,
is kinematic viscosity, d is diameter and Re is Reynolds number.
Substitute the values in the above equation as follows:


Re=64226.07579
Thus, the Reynolds number is 64226.07579. This is greater than 2000.
Hence, the given flow is turbulent flow.
Answer:
74,4 litros
Explanation:
Dado que
W = nRT ln (Vf / Vi)
W = 3000J
R = 8,314 JK-1mol-1
T = 58 + 273 = 331 K
Vf = desconocido
Vi = 25 L
W / nRT = ln (Vf / Vi)
W / nRT = 2.303 log (Vf / Vi)
W / nRT * 1 / 2.303 = log (Vf / Vi)
Vf / Vi = Antilog (W / nRT * 1 / 2.303)
Vf = Antilog (W / nRT * 1 / 2.303) * Vi
Vf = Antilog (3000/1 * 8,314 * 331 * 1 / 2,303) * 25
Vf = 74,4 litros
Answer:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0