diff options
Diffstat (limited to '2006/CH7/EX7.14')
-rwxr-xr-x | 2006/CH7/EX7.14/ex7_14.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2006/CH7/EX7.14/ex7_14.sce b/2006/CH7/EX7.14/ex7_14.sce new file mode 100755 index 000000000..224a6d330 --- /dev/null +++ b/2006/CH7/EX7.14/ex7_14.sce @@ -0,0 +1,9 @@ +clc;
+T1=35; // Temperature of freon 12 before throttling in degree celcius
+T2=5; // Temperature of freon 12 after throttling in degree celcius
+// from property table of freon 12
+h1=69.49;// specific enthalpy in kJ/kg
+hf2=40.66; hfg2=148.86; // specific enthalpy in kJ/kg
+h2=h1; // throttling process
+x2=(h2-hf2)/hfg2; // Quality of Freon 12 vapour
+disp (x2,"Quality of Freon 12 vapour = ");
|