This notebook contains material from chemeng316_fluids; content is available on Github.

< B.3 Homework 3 | Contents | B.5 Homework 5 >

Open in Colab

B.4 Homework 4¶

ChE 316 – Chem Eng. Fluid Mechanics – Spring 2024

DUE 5 Feb 2024

Getting Started: Here is the code to import the pint, CoolProp, numpy, sympy, and matplotlib modules to get you started.

In [ ]:
try:
    import pint
except:
    !pip install pint
    import pint
finally:
    ur = pint.UnitRegistry()
In [ ]:
try:
    import CoolProp.CoolProp as CP
except:
    !pip install CoolProp
    import CoolProp.CoolProp as CP
In [ ]:
# we need numpy for constants like pi
# https://numpy.org/doc/stable/reference/constants.html
import numpy as np

# we often use sympy to solve equations
import sympy as sp

# for plotting we need
import matplotlib.pyplot as plt

# For nice plotting I include ...
plt.rcParams['mathtext.default'] = 'rm'
plt.rcParams['mathtext.fontset'] = 'stix'
plt.rcParams['font.family'] = 'Times New Roman'

Problem 1. Air flows at 4.0 ft^3/min through a 1/2-inch Schedule 40 pipe at 30 deg. C and 5 bar. (a) Determine the Reynolds number. (b) Is the flow laminar or turbulent?

In [ ]:
# YOUR SOLUTION HERE

< B.3 Homework 3 | Contents | B.5 Homework 5 >

Open in Colab