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 /1847/CH1/EX1.35/Ch01Ex35.sce | |
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 '1847/CH1/EX1.35/Ch01Ex35.sce')
-rwxr-xr-x | 1847/CH1/EX1.35/Ch01Ex35.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1847/CH1/EX1.35/Ch01Ex35.sce b/1847/CH1/EX1.35/Ch01Ex35.sce new file mode 100755 index 000000000..6f23e2853 --- /dev/null +++ b/1847/CH1/EX1.35/Ch01Ex35.sce @@ -0,0 +1,27 @@ +// Scilab Code Ex1.35:: Page-1.46 (2009) +clc; clear; +h = 6.6e-034; // Planck's constant, Js +m = 9.1e-031; // Electronic mass, kg +e = 1.6e-019; // Energy equivalent of 1 eV, J/eV +l = 9.5e-010; // Length of one dimensional potential box, m + +// First energy level +n = 1; // The first energy state of electron +E1 = h^2*n^2/(8*m*l^2); // Energy of the electron in first state, J + +// Second energy level +n = 2; // The second energy state of electron +E2 = h^2*n^2/(8*m*l^2); // Energy of the electron in second state, J + +// Third energy level +n = 3; // The third energy state of electron +E3 = h^2*n^2/(8*m*l^2); // Energy of the electron in third state, J + +printf("\nThe energy of the electron in first state = %4.1e J", E1); +printf("\nThe energy of the electron in second state = %4.1e J", E2); +printf("\nThe energy of the electron in third state = %4.1e J", E3); + +// Result +// The energy of the electron in first state = 6.6e-20 J +// The energy of the electron in second state = 2.7e-19 J +// The energy of the electron in third state = 6.0e-19 J |