S= d/t
Speed= distance/time
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration
Answer:Prepare plans with detailed drawings that include project specifications and cost estimates.
Design and execute engineering experiments to create workable solutions.
Develop engineering calculations, diagrams and technical reports.
Explanation:
Answer:
The velocity in the pipe is 5.16m/s. The pipe diameter for the second fluid should be 6.6 mm.
Explanation:
Here the first think you have to consider is the definition of the Reynolds number (
) for flows in pipes. Rugly speaking, the Reynolds number is an adimensonal parameter to know if the fliud flow is in laminar or turbulent regime. The equation to calculate this number is:

where
is the density of the fluid,
is the viscosity, D is the pipe diameter and v is the velocity of the fluid.
Now, we know that Re=2100. So the velocity is:

For the second fluid, we want to keep the Re=2100 and v=5.16m/s. Therefore, using the equation of Reynolds number the diameter is:

Answer:
100 cm
Explanation:
...........................