diff options
Diffstat (limited to '2459/CH11/EX11.15')
-rw-r--r-- | 2459/CH11/EX11.15/Ex11_15.PNG | bin | 0 -> 5794 bytes | |||
-rw-r--r-- | 2459/CH11/EX11.15/Ex11_15.sce | 27 | ||||
-rw-r--r-- | 2459/CH11/EX11.15/Figure11_15.JPG | bin | 0 -> 27152 bytes |
3 files changed, 27 insertions, 0 deletions
diff --git a/2459/CH11/EX11.15/Ex11_15.PNG b/2459/CH11/EX11.15/Ex11_15.PNG Binary files differnew file mode 100644 index 000000000..587621d73 --- /dev/null +++ b/2459/CH11/EX11.15/Ex11_15.PNG diff --git a/2459/CH11/EX11.15/Ex11_15.sce b/2459/CH11/EX11.15/Ex11_15.sce new file mode 100644 index 000000000..2c34638fe --- /dev/null +++ b/2459/CH11/EX11.15/Ex11_15.sce @@ -0,0 +1,27 @@ +//chapter11
+//example11.15
+//page219
+
+Vcc=12 // V
+Rc=6 // kilo ohm
+
+// we know that Vce=Vcc-Ic*Rc
+// when Ic=0, Vce=Vcc i.e. 12V
+// when Vce=0, Ic=Vcc/Rc i.e.2mA
+
+// so equation of load line becomes Ic=-(1/6)*Vce+2
+x=linspace(0,12,5)
+y=-(1/6)*x+2
+clf()
+xtitle("dc load line","Vce(volts)","Ic(mA)")
+plot2d(x,y,style=3,rect=[0,0,13,6])
+
+
+// for Q point
+Ib=20d-3 // mA
+gain_beta=50
+
+Ic=gain_beta*Ib
+Vce=Vcc-Ic*Rc
+
+printf("Q point = %.3f V and %.3f mA i.e. (%.3f,%.3f) \n",Vce,Ic,Vce,Ic)
diff --git a/2459/CH11/EX11.15/Figure11_15.JPG b/2459/CH11/EX11.15/Figure11_15.JPG Binary files differnew file mode 100644 index 000000000..fe21378dc --- /dev/null +++ b/2459/CH11/EX11.15/Figure11_15.JPG |