summaryrefslogtreecommitdiff
path: root/3876/CH2/EX2.7/Ex2_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH2/EX2.7/Ex2_7.sce')
-rw-r--r--3876/CH2/EX2.7/Ex2_7.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH2/EX2.7/Ex2_7.sce b/3876/CH2/EX2.7/Ex2_7.sce
new file mode 100644
index 000000000..0869d0c99
--- /dev/null
+++ b/3876/CH2/EX2.7/Ex2_7.sce
@@ -0,0 +1,15 @@
+//Chapter 2 Gases
+
+clc;
+clear;
+
+//Initialisation of Variables
+t= 20 //min
+t1= 19.4 //min
+M= 32 //gms
+
+//CALCULATIONS
+x= M*t1**2/t**2
+
+//RESULTS
+mprintf("Molecular Weight of Ethane = %.1f gms",x)