summaryrefslogtreecommitdiff
path: root/3876/CH2/EX2.4/Ex2_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH2/EX2.4/Ex2_4.sce')
-rw-r--r--3876/CH2/EX2.4/Ex2_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH2/EX2.4/Ex2_4.sce b/3876/CH2/EX2.4/Ex2_4.sce
new file mode 100644
index 000000000..9032f3e43
--- /dev/null
+++ b/3876/CH2/EX2.4/Ex2_4.sce
@@ -0,0 +1,17 @@
+//Chapter 2 Gases
+
+clc;
+clear;
+
+//Initialisation of Variables
+P= 752 //mm
+V= 0.2 //lit
+T= 21 //C
+R= 0.0821 //lit atm mole^-1
+m= 0.980 //gms
+
+//CALCULATIONS
+M= m*R*(T+273)*760/(V*P)
+
+//RESULTS
+mprintf("Molecular Weight of Chloroform = %.1f gms per mole",M)