This notebook contains material from chemeng316_fluids; content is available on Github.
< B.5 Homework 5 | Contents | B.7 Homework 7 >
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. Fluid is trapped between two parallel vertical plate that are separated by a distance $L=1$ mm. The plate located at $x=L$ moves vertically with constant velocity $V_0$ (see example 4.3 in the textbook). The fluid is an oil with a density of $\rho=900$ kg/m$^3$ and a viscosity of $\mu=50$ mPa$\cdot$s. The pressure drop, $dP/dy$, is negligible compared with the gravity term, $\rho g$.
# YOUR SOLUTION HERE
< B.5 Homework 5 | Contents | B.7 Homework 7 >