blob: b4fb82dc1eba8c0d34eb04a7ab3b0a0dd620c359 (
plain)
1
2
3
4
5
6
7
8
9
|
// Example 7// Ch 3
clc;
clear;
close;
// given data
N = 178*10^-3 //gas density in kg/m^3
p = 1.01*10^5 //pressure
v = sqrt((3*p)/N); //mean square velosity of helium atoms
printf("mean square velosity of helium atoms %f m/s",v)
|