blob: 9032f3e43a6c5fdfa488bb0132edb746dd58d761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
|