diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH12/EX12.4/Ex12_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '2459/CH12/EX12.4/Ex12_4.sce')
-rw-r--r-- | 2459/CH12/EX12.4/Ex12_4.sce | 28 |
1 files changed, 28 insertions, 0 deletions
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)
|