summaryrefslogtreecommitdiff
path: root/2672/CH6/EX6.3/Ex6_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2672/CH6/EX6.3/Ex6_3.sce')
-rwxr-xr-x2672/CH6/EX6.3/Ex6_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2672/CH6/EX6.3/Ex6_3.sce b/2672/CH6/EX6.3/Ex6_3.sce
new file mode 100755
index 000000000..3dc90a731
--- /dev/null
+++ b/2672/CH6/EX6.3/Ex6_3.sce
@@ -0,0 +1,17 @@
+//Example 6_3
+clc;
+clear;
+close;
+format('v',5);
+//given data :
+r1BYr2=10000;//multipying factor
+//r=Eta*VT/I0*eps^(-V/Eta/VT)
+//log(r1BYr2)=(-V1/Eta/VT)/(-V2/Eta/VT)=delV/Eta/VT
+VT=26;//mV
+Eta=2;//for silicon
+delV=log(r1BYr2)*Eta*VT;
+disp(delV,"Break region for Si(mV)");
+Eta=1;//for Germenium
+delV=log(r1BYr2)*Eta*VT;
+disp(delV,"Break region for Ge(mV)");
+//Answer in the book is not accurate.