summaryrefslogtreecommitdiff
path: root/377/CH10/EX10.4/10_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '377/CH10/EX10.4/10_4.sce')
-rw-r--r--377/CH10/EX10.4/10_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/377/CH10/EX10.4/10_4.sce b/377/CH10/EX10.4/10_4.sce
new file mode 100644
index 000000000..728dfbf80
--- /dev/null
+++ b/377/CH10/EX10.4/10_4.sce
@@ -0,0 +1,15 @@
+Iep=2*10^-3;
+Ien=10^-5;
+Icp=1.98*10^-3;
+Icn=10^-6;
+a=Icp/Iep; //say a=α
+printf('\n The value of α is %f',a);
+Ie=Ien+Iep;
+c=Iep/Ie; //say c=γ
+printf('\n The value of γ is %f',c);
+a1=Icp/Ie;
+b=a1/(1-a1); //say b=β
+printf('\n The value of β is %f',b);
+Ic=Icp+Icn;
+Ib=Ie-Ic;
+printf('\n The value of Ib is %fmA',Ib*10^3); \ No newline at end of file