diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2741/CH5/EX5.18 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2741/CH5/EX5.18')
-rwxr-xr-x | 2741/CH5/EX5.18/Chapter5_Example18.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2741/CH5/EX5.18/Chapter5_Example18.sce b/2741/CH5/EX5.18/Chapter5_Example18.sce new file mode 100755 index 000000000..0a4ec8a04 --- /dev/null +++ b/2741/CH5/EX5.18/Chapter5_Example18.sce @@ -0,0 +1,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)
|