diff options
Diffstat (limited to '3689/CH3/EX3.2')
-rw-r--r-- | 3689/CH3/EX3.2/3_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3689/CH3/EX3.2/3_2.sce b/3689/CH3/EX3.2/3_2.sce new file mode 100644 index 000000000..2ba24b5fe --- /dev/null +++ b/3689/CH3/EX3.2/3_2.sce @@ -0,0 +1,13 @@ +//////Variable Declaration
+betaOH = 11.2e-4 //Thermal exapnasion coefficient of ethanol, °C
+betagl = 2.00e-5 //Thermal exapnasion coefficient of glass, °C
+kOH = 11.0e-5 //Isothermal compressibility of ethanol, /bar
+dT = 10.0 //Increase in Temperature, °C
+
+//Calcualtions
+vfbyvi = (1+ betagl*dT)
+dP = betaOH*dT/kOH-(1./kOH)*log(vfbyvi)
+
+//Results
+printf("\n Pressure increase in capillary %4.1f bar",dP)
+
|