summaryrefslogtreecommitdiff
path: root/1223/CH10/EX10.1/Ex10_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH10/EX10.1/Ex10_1.sce')
-rwxr-xr-x1223/CH10/EX10.1/Ex10_1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1223/CH10/EX10.1/Ex10_1.sce b/1223/CH10/EX10.1/Ex10_1.sce
new file mode 100755
index 000000000..4c174d2c6
--- /dev/null
+++ b/1223/CH10/EX10.1/Ex10_1.sce
@@ -0,0 +1,12 @@
+clear;
+clc;
+//Example 10.1
+Vbe=0.6;//(V)
+b=100;
+V1=5;
+Io=200;//micro A
+Iref=Io*(1+2/b);
+printf('\nreference current=%.2f microA\n',Iref)
+Iref=Iref*0.001;//mA
+R1=(V1-Vbe)/Iref;
+printf('\nR1=%.2f KOhm\n',R1)