summaryrefslogtreecommitdiff
path: root/2870/CH3/EX3.7/Ex3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2870/CH3/EX3.7/Ex3_7.sce')
-rwxr-xr-x2870/CH3/EX3.7/Ex3_7.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/2870/CH3/EX3.7/Ex3_7.sce b/2870/CH3/EX3.7/Ex3_7.sce
new file mode 100755
index 000000000..5059e61c8
--- /dev/null
+++ b/2870/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,21 @@
+clc;clear;
+//Example 3.7
+
+//given values
+P=0.5;
+h=2890;
+
+//from Table A–6
+//at P=0.5 MPa
+T1=200;
+h1=2855.8;
+T2=250;
+h2=2961.0;
+// we need linear interpolation
+
+//calculatiom
+//by interpolation we cab say that
+//h=h1+(T-T1)/(T2-T1)*(h2-h1)
+//we have to find T
+T=(h-h1)/(h2-h1)*(T2-T1)+T1;
+disp(T,'temperature of water in celcius')