summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.1
diff options
context:
space:
mode:
Diffstat (limited to '147/CH8/EX8.1')
-rw-r--r--147/CH8/EX8.1/Example8_1.sce10
-rw-r--r--147/CH8/EX8.1/Result8_1.txt1
2 files changed, 11 insertions, 0 deletions
diff --git a/147/CH8/EX8.1/Example8_1.sce b/147/CH8/EX8.1/Example8_1.sce
new file mode 100644
index 000000000..f33a21df8
--- /dev/null
+++ b/147/CH8/EX8.1/Example8_1.sce
@@ -0,0 +1,10 @@
+close();
+clear;
+clc;
+//initial temperature 'T1', final temperature 'T2', leakage current doubles for 't' increase in temperature
+T1 = 25; //degree C
+T2 = 90; //degree C
+t = 6; //degree C
+Icbo1 = 500*10^(-9); //A
+Icbo2 = Icbo1*2^((T2-T1)/t); //A
+mprintf("Leakage current at %d degree C, Icbo2 = %0.2f uA",T2,Icbo2*10^6) \ No newline at end of file
diff --git a/147/CH8/EX8.1/Result8_1.txt b/147/CH8/EX8.1/Result8_1.txt
new file mode 100644
index 000000000..513e7208e
--- /dev/null
+++ b/147/CH8/EX8.1/Result8_1.txt
@@ -0,0 +1 @@
+Leakage current at 90 degree C, Icbo2 = 912.28 uA \ No newline at end of file