This notebook contains material from chemeng316_fluids; content is available on Github.
< B.3 Homework 3 | Contents | B.5 Homework 5 >
Getting Started: Here is the code to import the pint
, CoolProp
, numpy
, sympy
, and matplotlib
modules to get you started.
try:
import pint
except:
!pip install pint
import pint
finally:
ur = pint.UnitRegistry()
try:
import CoolProp.CoolProp as CP
except:
!pip install CoolProp
import CoolProp.CoolProp as CP
# 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?
# YOUR SOLUTION HERE
< B.3 Homework 3 | Contents | B.5 Homework 5 >