diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3648/CH10/EX10.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3648/CH10/EX10.8')
-rw-r--r-- | 3648/CH10/EX10.8/Ex10_8.sce | 17 | ||||
-rw-r--r-- | 3648/CH10/EX10.8/Ex10_8.txt | 1 |
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 |