diff options
Diffstat (limited to '2459/CH12/EX12.4')
-rw-r--r-- | 2459/CH12/EX12.4/Ex12_4.PNG | bin | 0 -> 5791 bytes | |||
-rw-r--r-- | 2459/CH12/EX12.4/Ex12_4.sce | 28 | ||||
-rw-r--r-- | 2459/CH12/EX12.4/Figure12_4.jpg | bin | 0 -> 52651 bytes |
3 files changed, 28 insertions, 0 deletions
diff --git a/2459/CH12/EX12.4/Ex12_4.PNG b/2459/CH12/EX12.4/Ex12_4.PNG Binary files differnew file mode 100644 index 000000000..4fddb0039 --- /dev/null +++ b/2459/CH12/EX12.4/Ex12_4.PNG diff --git a/2459/CH12/EX12.4/Ex12_4.sce b/2459/CH12/EX12.4/Ex12_4.sce new file mode 100644 index 000000000..6874d8acd --- /dev/null +++ b/2459/CH12/EX12.4/Ex12_4.sce @@ -0,0 +1,28 @@ +//chapter12
+//example12.4
+//page241
+
+Vcc=6 // V
+Rb=530 // kilo ohm
+Rc=2 // kilo ohm
+gain_beta=100
+Vbe=0.7 // V
+
+// when Ic=0, Vce=Vcc i.e. Vce=6 and when Vce=0, Ic=Vcc/Rc i.e. Ic=6/2
+// so equation of load line becomes Ic=-0.5*Vce+3
+
+x=linspace(0,6,5)
+y=-0.5*x+3
+plot2d(x,y,style=3,rect=[0,0,7,4])
+xtitle("dc load line","Vce(volts)","Ic(mA)")
+
+// since Vcc=Ib*Rb+Vbe we get
+Ib=(Vcc-Vbe)/Rb
+Ic=Ib*gain_beta
+Vce=Vcc-Ic*Rc
+
+printf("the operating point is %.3f V and %.3f mA \n",Vce,Ic)
+
+stability_factor=gain_beta+1
+
+printf("stability factor=%.1f \n",stability_factor)
diff --git a/2459/CH12/EX12.4/Figure12_4.jpg b/2459/CH12/EX12.4/Figure12_4.jpg Binary files differnew file mode 100644 index 000000000..429da3527 --- /dev/null +++ b/2459/CH12/EX12.4/Figure12_4.jpg |