summaryrefslogtreecommitdiff
path: root/2102/CH3/EX3.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2102/CH3/EX3.5
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2102/CH3/EX3.5')
-rwxr-xr-x2102/CH3/EX3.5/exa_3_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH3/EX3.5/exa_3_5.sce b/2102/CH3/EX3.5/exa_3_5.sce
new file mode 100755
index 000000000..5d87282c1
--- /dev/null
+++ b/2102/CH3/EX3.5/exa_3_5.sce
@@ -0,0 +1,15 @@
+// Exa 3.5
+clc;
+clear;
+close;
+// Given data
+T=300;// in K
+V_T= T/11600;// in V
+n=1;// assuming value
+Jd=10^5;// in A/m^2
+Jo=250;// in mA/m^2
+Jo= Jo*10^-3;// in A/m^2
+//Formula Id= Io*(%e^(Vd/V_T)-1) and after dividing both the sides by area of the junction, we have
+// Jd= Jo*(%e^(Vd/V_T));// approx by neglecting 1
+Vd= V_T*log(Jd/Jo);// in volt
+disp(Vd,"Voltage to be applied across a p-n junction in volt is : ")