diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3655/CH3/EX3.4/Ex3_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3655/CH3/EX3.4/Ex3_4.sce')
-rw-r--r-- | 3655/CH3/EX3.4/Ex3_4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3655/CH3/EX3.4/Ex3_4.sce b/3655/CH3/EX3.4/Ex3_4.sce new file mode 100644 index 000000000..386820fea --- /dev/null +++ b/3655/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,24 @@ +// Example 3.4 +// Computation for percentage of electrons leaving a tungstan filament which can surmount a barrier of height 1eV// +// Page no.78 + +clc; +clear; +close; + +//Given data ; +Vr=1; +VT=2700/11600;//VT=T/11600 + + +//Calculation for percentage of electrons leaving a tungstan filament at 2700 degree K// +P1=(exp(-Vr/VT))*100;//P1=I/Ith + +//Hence only about 1.4% of the electrons have surface-directed energies in excess of 1eV// + + +//Displaying the result in command window +printf('\n Percentage of electrons leaving a tungstan filament which can surmount a barrier of height 1eV = %0.1f percent',P1); + + +//Answers are varying due to round off error// |