blob: 0f432cac7fed9750cf7289ec2f9a0b74ec57b75b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter 2 Gases
clc;
clear;
//Initialisation of Variables
V= 5.16*10**14 //cm per sec
M2= 28 //gms
M1= 2.02 //gms
//CALCULATIONS
c1= V*sqrt(M2/M1)
//RESULTS
mprintf("Velocity of hydrogen molecule = %.2e cm per sec",c1)
|