summaryrefslogtreecommitdiff
path: root/3876/CH2/EX2.7/Ex2_7.sce
blob: 0869d0c9947479fb53b47e6aaa879ac720dc4294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)