summaryrefslogtreecommitdiff
path: root/2702/CH3/EX3.24/Ex_3_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH3/EX3.24/Ex_3_24.sce')
-rw-r--r--2702/CH3/EX3.24/Ex_3_24.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2702/CH3/EX3.24/Ex_3_24.sce b/2702/CH3/EX3.24/Ex_3_24.sce
new file mode 100644
index 000000000..f279e7dbc
--- /dev/null
+++ b/2702/CH3/EX3.24/Ex_3_24.sce
@@ -0,0 +1,15 @@
+// Exa 3.24
+clc;
+clear;
+close;
+// Given data
+VBE_1= 0.7;// in V
+VBE_2= 0.5;// in V
+V_T= 0.025;// in V
+I_C1= 10;// in mV
+I_C1= I_C1*10^-3;// in A
+// I_C1= I_S*%e^(VBE_1/V_T) (i)
+// I_C2= I_S*%e^(VBE_2/V_T) (ii)
+// Devide equation (ii) by (i)
+I_C2= I_C1*%e^((VBE_2-VBE_1)/V_T);// in A
+disp(I_C2*10^6,"The value of I_C2 in µA is : ")