summaryrefslogtreecommitdiff
path: root/3648/CH10/EX10.8
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH10/EX10.8')
-rw-r--r--3648/CH10/EX10.8/Ex10_8.sce17
-rw-r--r--3648/CH10/EX10.8/Ex10_8.txt1
2 files changed, 18 insertions, 0 deletions
diff --git a/3648/CH10/EX10.8/Ex10_8.sce b/3648/CH10/EX10.8/Ex10_8.sce
new file mode 100644
index 000000000..928c3448f
--- /dev/null
+++ b/3648/CH10/EX10.8/Ex10_8.sce
@@ -0,0 +1,17 @@
+//Example 10_8
+clc();
+clear;
+//To find the final volume of gas
+
+t1=27 //Units in Centigrade
+t1=t1+273 //Units in Kelvin
+t2=547 //Units in Centigrade
+t2=t2+273 //Units in Kelvin
+t1=27 //Units in Centigrade
+t1=t1+273 //Units in Kelvin
+t1=27 //Units in Centigrade
+t1=t1+273 //Units in Kelvin
+p2=3700 //units in cm Hg
+p1=74 //units in cm Hg
+v1_v2=1/((t1/t2)*(p2/p1)) //In terms of V1
+printf("The final volume of gas in terms of original volume is V2=%.5f*V1",v1_v2)
diff --git a/3648/CH10/EX10.8/Ex10_8.txt b/3648/CH10/EX10.8/Ex10_8.txt
new file mode 100644
index 000000000..a50ec07f0
--- /dev/null
+++ b/3648/CH10/EX10.8/Ex10_8.txt
@@ -0,0 +1 @@
+The final volume of gas in terms of original volume is V2=0.05467*V1 \ No newline at end of file