summaryrefslogtreecommitdiff
path: root/2534/CH4/EX4.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2534/CH4/EX4.1
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 '2534/CH4/EX4.1')
-rwxr-xr-x2534/CH4/EX4.1/Ex4_1.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2534/CH4/EX4.1/Ex4_1.sce b/2534/CH4/EX4.1/Ex4_1.sce
new file mode 100755
index 000000000..d961a9151
--- /dev/null
+++ b/2534/CH4/EX4.1/Ex4_1.sce
@@ -0,0 +1,24 @@
+//Ex4_1
+clc
+Irs = 0.2*10^-6
+Vf = 0.1
+VT = 26*10^-3
+eta = 1//for germanium
+I = Irs*(exp(Vf/eta/VT)-1)
+disp("Irs = "+string(Irs)+"A")//reverse saturation current
+disp("Vf = "+string(Vf)+"V")//applied voltage
+disp("VT = "+string(VT)+"V")//voltage at room temperature
+disp("eta = "+string(eta))
+disp("I = Irs*(exp(Vf/eta/VT)-1)")//current at room temperature
+disp("I = "+string(I)+"A")
+
+//current in silicon:
+eta = 2//for silicon
+disp("eta = "+string(eta))
+I = Irs*(exp(Vf/eta/VT)-1)
+disp("I = "+string(I)+"A")
+
+
+
+
+// note: incomplete solution in textbook for above question.