Home / Expert Answers / Chemical Engineering / as-shown-in-the-figure-below-the-velocity-of-water-v-m-s-pa525

(Solved): As shown in the figure below, the velocity of water v(m/s ...



As shown in the figure below, the velocity of water \( v(\mathrm{~m} / \mathrm{s}) \), discharged from a cylindrical tank thr

And water flow rate through a pipe can be calculated with:
\[
Q=\frac{V}{t}=\frac{A d}{t}=A \bar{v}
\]
Eq. 1.2
where \( \math

(a) plot the velocity function from Eq.1.1 for \( H=0 \mathrm{~m} \) to \( 4 \mathrm{~m} \) (in increments of \( 1 \mathrm{~m

(b) plot the water acoeleration a based on the velocity function of Eq.1.1 for \( \mathrm{H}=0 \mathrm{~m} \) to \( 4 \mathrm

(c) using modular programming create a uniform flow rate branching water network simulation (segment \( \mathrm{A} \) is dire

Uniform branched water network architecture
Using modular programming create functions for:
(i) pipe_velocity(): calculating

Uniform branched water network architecture
Using modular programming create functions for:
(i) pipe_velocity(): calculating

Every pipe segment (A/B/C/D) must be represented with a data structure that stores the following information (use your functi

(d) plot the water velocity in each pipe segment for \( \mathrm{H}=0 \mathrm{~m} \) to \( 4 \mathrm{~m} \) (in increments of

(e) discuss the results you obtained in your own words (one to two paragraphs)

As shown in the figure below, the velocity of water , discharged from a cylindrical tank through a long pipe can be computed as: Eq. 1.1 where initial head pipe length , and elapsed time . And water flow rate through a pipe can be calculated with: Eq. 1.2 where is flowrate in is the pipe coss-sectional area in and is the water velocity in . (a) plot the velocity function from Eq.1.1 for to (in increments of ), over time to 2.5 s and arbitrarily assigned pipe length between and . Make sure to label to plot. For example: (b) plot the water acoeleration a based on the velocity function of Eq.1.1 for to (in hwrements of im) and over time to 2.5 s (keep using the same as before). Make sure to labed to phot For example: (c) using modular programming create a uniform flow rate branching water network simulation (segment is directly fed with the water tank) for each to ) by generating a branching water network with the following parameters: - one feeder pipe (A) - two primary distribution pipes (B) - four to eight (choose one even amount) secondary distribution pipes (C) - fourty to eighty (choose one even tens amount) end-point pipes (D) Uniform branched water network architecture Using modular programming create functions for: (i) pipe_velocity(): calculating the water velocity of a given pipe diameter and water flow rate . Refer to Eq. 1.2 . (ii) pipe_flow_rate(): calculating the water flow rate of a given pipe diameter and water velocity . Refer to Eq. 1.2 . (iii) pipe_diameter(): calculating the pipe diameter of a given water velocity and flow rate . Refer to Eq. 1.2 . (iv) pipe_volume(): calculating the pipe water volume per meter (litres/m) for a given pipe Uniform branched water network architecture Using modular programming create functions for: (i) pipe_velocity(): calculating the water velocity of a given pipe diameter and water flow rate . Refer to Eq. 1.2. (ii) pipe_flow_rate(): calculating the water flow rate of a given pipe diameter and water velocity . Refer to . (iii) pipe_diameter(): calculating the pipe diameter of a given water velocity and flow rate . Refer to Eq. 1.2 . (iv) pipe_volume(): calculating the pipe water volume per meter (litres/m) for a given pipe diameter . (v) vel_change(): calculating the outlet water velocity of a given outlet pipe diameter d_o that is fed from a given inlet pipe diameter with a given water velocity . Assume that the inlet water flow rate and the outlet water flow rate are equal. Every pipe segment (A/B/C/D) must be represented with a data structure that stores the following information (use your functions to calculate the relevant info where possible): - pipe diarneter (mm). - water velocities (for each height of to ) in the pipe . - water flow rates (for each height of to ) in the pipe . - water volume in pipe per meter (litres/m). - amount of these segments in the total branching water network. For example: (d) plot the water velocity in each pipe segment for to (in increments of ) and over pipe diameters and . Make sure to label the plot. For example: (e) discuss the results you obtained in your own words (one to two paragraphs)


We have an Answer from Expert

View Expert Answer

Expert Answer





Here are the functions for the given problem:

(i) `pipe_velocity(diameter, flow_rate)`:

This function calculates the water velocity in a given pipe diameter with a known water flow rate using the following equation:

```
v = (4 * flow_rate) / (math.pi * diameter**2)
```



where `v` is the water velocity, `flow_rate` is the water flow rate in m^3/s and `diameter` is the pipe diameter in mm.

```
import math

def pipe_velocity(diameter, flow_rate):
v = (4 * flow_rate) / (math.pi * diameter**2)
return v
```



(ii) `pipe_flow_rate(diameter, velocity)`:

This function calculates the water flow rate in a given pipe diameter with a known water velocity using the following equation:
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe

A PHP Error was encountered

Severity: Notice

Message: fwrite(): write of 34 bytes failed with errno=28 No space left on device

Filename: drivers/Session_files_driver.php

Line Number: 267

Backtrace:

A PHP Error was encountered

Severity: Warning

Message: session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /home/solutionspile.com/public_html/system/sessions)

Filename: Unknown

Line Number: 0

Backtrace: