Download (right-click, save target as ...) this page as a Jupyterlab notebook from: ES-1
LAST NAME, FIRST NAME
R00000000
Apply definition of density. Apply the ideal gas law under isothermal conditions. Use compressibility to relate pressure change to volume change.
Completion, results plausible, format correct, calculations (Jupyter Notebook) are shown.
The tank contains a liquid with density of 1.22 $\frac{slug}{ft^3}$.
Determine:
You may wish to use a Jupyter Notebook to create a script to handle the computations and show the results of the script. Upload your completed Notebook as a PDF to Blackboard. You can print the notebook to a PDF file, and upload that; if that method fails export the notebook as
HTML
then use the on-line https://html2pdf.com/ converter
sketch
list known quantities
list unknown quantities
governing principles
solution (step-by-step)
length = 4 #ft
width = 2 #ft
height = 3-1 #ft
volume = length*width*height
rho_l = 1.22 #slug/ft^3
mass = rho_l * volume
gravity = 32.2 #ft/s^2
weight = mass * gravity
print("Weight of : ",round(float(volume),0)," ft^3 of liquid is : ",round(weight,0)," pounds-force")
discussion
The tank has a volume of 0.35$m^3$ and contains 40 kg of nitrogen at a temperature of 40$^oC$.
Determine:
sketch here
list known quantities
list unknown quantities
governing principles
solution (step-by-step)
R = 0.0821 #l-atm/K-mol
m = 40*1000 #grams - given
MW = 14*2 #grams/mol - diatomic gas
V = 0.35*1000 #liters
T = 40+273 #Kelvin
p = ((m/MW)*R*T)/V
print("Pressure in tank :",round(p,2)," atmospheres")
p = p*101.325
print("Pressure in tank :",round(p,2)," kiloPascals")
discussion
A solid has a specific weight of 310 lb/ft$^3$. When a pressure of 650 psi is applied the specific weight increases to 312 lb/ft$^3$.
Determine:
sketch here
Mass is constant, volume smaller as pressure bigger.
list known quantities
list unknown quantities
governing principles
solution (step-by-step)
gamma1 = 310 #lb/ft^3
gamma2 = 312 #lb/ft^3
dpress = 650 #lb/in^2
dp = dpress*144 #lb/ft^2
dVoverV = ((1/gamma2)-(1/gamma1))/(1/gamma1)
bulkmodulus = -dp/dVoverV
print("Bulk Modulus : ",round(bulkmodulus,3)," lbf/ft^2 ")
print("Bulk Modulus : ",round(bulkmodulus/144,3)," psi ")
discussion