summaryrefslogtreecommitdiff
path: root/409/CH13/EX13.2/Example13_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '409/CH13/EX13.2/Example13_2.sce')
-rwxr-xr-x409/CH13/EX13.2/Example13_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/409/CH13/EX13.2/Example13_2.sce b/409/CH13/EX13.2/Example13_2.sce
new file mode 100755
index 000000000..a73df1f29
--- /dev/null
+++ b/409/CH13/EX13.2/Example13_2.sce
@@ -0,0 +1,12 @@
+clear ;
+clc;
+// Example 13.2
+printf('Example 13.2\n\n');
+//Page No. 405
+// Solution
+
+p =1 ;// Pressure -[atm]
+V = 22415 ;// Molar valume -[cubic centimetre/g mol]
+T = 273.15 ;// Temperature-[K]
+R = (p*V/T);// Universal gas constant-[(cubic centimetre.atm)/(K.g mol)]
+ printf('Universal gas constant is %.2f (cubic centimetre*atm)/(K*g mol). ',R); \ No newline at end of file