summaryrefslogtreecommitdiff
path: root/2741/CH5/EX5.18/Chapter5_Example18.sce
blob: 0a4ec8a043aa6bdcbac36865a828740bba3b0fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc
clear
//Input data 
T=300;//The given temperature in K 
M=32;//Molecular weight of oxygen 
R=8.3*10^7;//The Universal gas constant in ergs/g mol-K 

//Calculations 
E=(3/2)*R*T;//Total random kinetic energy of 1 g molecule of oxygen in ergs 
v=((E)*(2/M))^(1/2);//The required speed of one gram molecule of oxygen in cm/s 

//Output
printf('The required speed of one gram molecule of oxygen is v = %3.2g cm/s ',v)