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 /1979/CH9/EX9.4/Ex9_4.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 '1979/CH9/EX9.4/Ex9_4.sce')
-rwxr-xr-x | 1979/CH9/EX9.4/Ex9_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1979/CH9/EX9.4/Ex9_4.sce b/1979/CH9/EX9.4/Ex9_4.sce new file mode 100755 index 000000000..496733d30 --- /dev/null +++ b/1979/CH9/EX9.4/Ex9_4.sce @@ -0,0 +1,20 @@ +//chapter-9 page 411 example 9.4
+//==============================================================================
+clc;
+clear;
+
+es=12.5;//Relative Dielectric constant
+e0=8.854*10^(-12);//Permittivity in Free Space in F/m
+N=3.2*10^22;//Donor Concentration per m^3
+L=8*10^(-6);//Length of Si BARITT diode in m
+q=1.6*10^(-19);//Charge of an Electron in C
+
+//CALCULATION
+Vc=((q*N*L^2)/(2*es*e0))/10^3;//Critical Voltage in kV
+Vbd=2*Vc;//Breakdown Voltage in kV
+Ebd=(Vbd/L)/100;//Breakdown Electric Field in kV/cm
+
+//OUTPUT
+mprintf('\nCritical Voltage is Vc=%1.2f kV \nBreakdown Voltage is Vbd=%1.2f kV \nBreakdown Electric Field is Ebd=%6.2f kV/cm',Vc,Vbd,Ebd);
+
+//=========================END OF PROGRAM===============================
|