summaryrefslogtreecommitdiff
path: root/3630/CH7/EX7.1/Ex7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH7/EX7.1/Ex7_1.sce')
-rw-r--r--3630/CH7/EX7.1/Ex7_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3630/CH7/EX7.1/Ex7_1.sce b/3630/CH7/EX7.1/Ex7_1.sce
new file mode 100644
index 000000000..38e6b795d
--- /dev/null
+++ b/3630/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,11 @@
+clc;
+Vcc=12; //volt
+Vceoff=12; //volt
+Rc=2000; //ohm
+Icsat=Vceoff/Rc; //Ampere//v=r*i
+disp('mA',Icsat*1000,"Icsat=");//The answers vary due to round off error
+T1=0:2:12; // T1 axes is for voltage axes
+T2=6:-1:0 // T2 axes is for Ic mA And T2(max)=Icsat=6 mA
+plot(T1,T2)
+xlabel('Vce(V)')
+ylabel('Ic(mA)')