summaryrefslogtreecommitdiff
path: root/3637/CH1/EX1.11/Ex1_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH1/EX1.11/Ex1_11.sce')
-rw-r--r--3637/CH1/EX1.11/Ex1_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3637/CH1/EX1.11/Ex1_11.sce b/3637/CH1/EX1.11/Ex1_11.sce
new file mode 100644
index 000000000..e0d1cf7e6
--- /dev/null
+++ b/3637/CH1/EX1.11/Ex1_11.sce
@@ -0,0 +1,15 @@
+//Example 11 Page No: 1.86
+//given
+inb2=90e-9;//A
+inb1=70e-9;//A
+a=1e5;//gain
+//determine input offset current
+i1=(inb2+inb1)/2;
+i2=inb2-inb1;
+v1=((inb2-inb1)*1000)*a;
+disp('Input base current = '+string(i1*10^9)+' nA');
+disp('Input offset current = '+string(i2*10^9)+' nA');
+disp('Output offset voltage = '+string(v1)+' V');
+
+
+