summaryrefslogtreecommitdiff
path: root/2870/CH3/EX3.8/Ex3_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2870/CH3/EX3.8/Ex3_8.sce')
-rwxr-xr-x2870/CH3/EX3.8/Ex3_8.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2870/CH3/EX3.8/Ex3_8.sce b/2870/CH3/EX3.8/Ex3_8.sce
new file mode 100755
index 000000000..e4a539d6c
--- /dev/null
+++ b/2870/CH3/EX3.8/Ex3_8.sce
@@ -0,0 +1,20 @@
+clc;clear;
+//Example 3.8
+
+//given values
+T=80;
+P=5;
+
+//from Table A–7
+//at compressed liq given conditions
+u=333.82;
+
+//from Tablw A-4
+//at saturation
+usat=334.97;
+
+//calcualtion
+e=(usat-u)/u*100;
+disp(u,'internal energy of compressed liquid water using data from the compressed liquid table in kJ/kg ');
+disp(usat,'internal energy of compressed liquid water using saturated liquid data in kJ/kg ');
+disp(e,'the % error involved in the second case is ')