summaryrefslogtreecommitdiff
path: root/2975/CH23/EX23.1w
diff options
context:
space:
mode:
Diffstat (limited to '2975/CH23/EX23.1w')
-rw-r--r--2975/CH23/EX23.1w/Ex23_1w.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2975/CH23/EX23.1w/Ex23_1w.sce b/2975/CH23/EX23.1w/Ex23_1w.sce
new file mode 100644
index 000000000..9f4d43803
--- /dev/null
+++ b/2975/CH23/EX23.1w/Ex23_1w.sce
@@ -0,0 +1,15 @@
+//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 23_1w
+
+clc;clear;
+//Given Data
+temp=373.15;//Temperature at steam point (Unit Kelvin)
+press=1.5*10^4;//Pressure at steam point(Unit Pascal)
+
+//calculation
+ptr=(273.16*press)/temp;//Calculation of pressure at triple point of water (Unit : pascal)
+
+
+disp(ptr,"Pressure of water at triple is (unit: Pascal)");
+