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 /863/CH4/EX4.7 | |
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 '863/CH4/EX4.7')
-rw-r--r-- | 863/CH4/EX4.7/Ex4_7.sce | 20 | ||||
-rw-r--r-- | 863/CH4/EX4.7/Ex4_7.txt | 20 | ||||
-rw-r--r-- | 863/CH4/EX4.7/Result4_7.txt | 8 |
3 files changed, 48 insertions, 0 deletions
diff --git a/863/CH4/EX4.7/Ex4_7.sce b/863/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..3de515299 --- /dev/null +++ b/863/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,20 @@ +//Caption:Design a transistor by determining Rc,Rb and amplitude of output waveform
+//Ex4.7
+clc;
+clear;
+close;
+E=10//Input voltage(in volts)
+Vcc=15//Collector voltage(in volts)
+R=100//Load resistance(in kilo ohm)
+Vce=0.2//Saturted collector emitter voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+hfe=35
+Vbe=0.7//Base emitter voltage(in volts)
+Rc=R/10
+Ic=(Vcc-Vce-Vd)/Rc
+Ib=Ic/hfe
+Rb=(E-Vbe-Vd)/Ib
+Vmin=Vd+Vce
+Vmax=(Vcc*R)/(R+Rc)
+Vo=Vmax-Vmin
+disp(Vo,Rb,Rc,'Rc,Rb(in kilo ohm),and amplitude of output waveform(in volts)=')
\ No newline at end of file diff --git a/863/CH4/EX4.7/Ex4_7.txt b/863/CH4/EX4.7/Ex4_7.txt new file mode 100644 index 000000000..3de515299 --- /dev/null +++ b/863/CH4/EX4.7/Ex4_7.txt @@ -0,0 +1,20 @@ +//Caption:Design a transistor by determining Rc,Rb and amplitude of output waveform
+//Ex4.7
+clc;
+clear;
+close;
+E=10//Input voltage(in volts)
+Vcc=15//Collector voltage(in volts)
+R=100//Load resistance(in kilo ohm)
+Vce=0.2//Saturted collector emitter voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+hfe=35
+Vbe=0.7//Base emitter voltage(in volts)
+Rc=R/10
+Ic=(Vcc-Vce-Vd)/Rc
+Ib=Ic/hfe
+Rb=(E-Vbe-Vd)/Ib
+Vmin=Vd+Vce
+Vmax=(Vcc*R)/(R+Rc)
+Vo=Vmax-Vmin
+disp(Vo,Rb,Rc,'Rc,Rb(in kilo ohm),and amplitude of output waveform(in volts)=')
\ No newline at end of file diff --git a/863/CH4/EX4.7/Result4_7.txt b/863/CH4/EX4.7/Result4_7.txt new file mode 100644 index 000000000..d383a9ea7 --- /dev/null +++ b/863/CH4/EX4.7/Result4_7.txt @@ -0,0 +1,8 @@ +Rc,Rb(in kilo ohm),and amplitude of output waveform(in volts)=
+
+ 10.
+
+ 213.47518
+
+ 12.736364
+
\ No newline at end of file |