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.13 | |
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.13')
-rwxr-xr-x | 2741/CH5/EX5.13/Chapter5_Example13.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2741/CH5/EX5.13/Chapter5_Example13.sce b/2741/CH5/EX5.13/Chapter5_Example13.sce new file mode 100755 index 000000000..6ae29c6a5 --- /dev/null +++ b/2741/CH5/EX5.13/Chapter5_Example13.sce @@ -0,0 +1,11 @@ +clc
+clear
+//Input data
+T=300;//The given temperature in K
+k=1.38*10^-16;//Boltzmann constant in erg/molecule-deg
+
+//Calculations
+E=(3/2)*k*T;//The average Kinetic energy of a molecule in ergs
+
+//Output
+printf('The Average Kinetic energy of a molecule of a gas at 300 K is K.E = %3.4g ergs ',E)
|