summaryrefslogtreecommitdiff
path: root/2975/CH23/EX23.3w
diff options
context:
space:
mode:
Diffstat (limited to '2975/CH23/EX23.3w')
-rw-r--r--2975/CH23/EX23.3w/Ex23_3w.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2975/CH23/EX23.3w/Ex23_3w.sce b/2975/CH23/EX23.3w/Ex23_3w.sce
new file mode 100644
index 000000000..eb770f81e
--- /dev/null
+++ b/2975/CH23/EX23.3w/Ex23_3w.sce
@@ -0,0 +1,17 @@
+//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 23_3w
+
+clc;clear;
+//Given Data
+
+p1=80; //Pressure of the gas in melting ice(Unit : cm)
+p2=160; //Pressure of the gas in a liquid (Unit : cm)
+t1=273.15; //Temperature of melting ice in (Unit : kelvin)
+
+// Calculation
+
+t2=(t1*p2)/p1; //Calculation os the temperatue of liquid (Unit: Kelvin)
+
+disp(t2,"The Temperature of liquid is(Unit: Kelvin)");
+