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.3 | |
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.3')
-rw-r--r-- | 863/CH4/EX4.3/Ex4_3.sce | 18 | ||||
-rw-r--r-- | 863/CH4/EX4.3/Ex4_3.txt | 18 | ||||
-rw-r--r-- | 863/CH4/EX4.3/Result4_3.txt | 16 |
3 files changed, 52 insertions, 0 deletions
diff --git a/863/CH4/EX4.3/Ex4_3.sce b/863/CH4/EX4.3/Ex4_3.sce new file mode 100644 index 000000000..e6af0b9ff --- /dev/null +++ b/863/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,18 @@ +//Caption:Calculate Vce (a)Before input pulse is applied (b)at end of delay time (c)at end of turn on time (d)Total time
+//Ex4.3
+clc;
+clear;
+close;
+Vcc=12//Collector voltage(in volts)
+Rc=3.3//Collector resistor(in Kilo ohm)
+pw=5//Pulse width of input voltage(in micro sec)
+Ix=50//Collector cutoff current(in nA)
+t=250//Switch off time(nA)
+Vce=Vcc-(Ix*Rc*10^(-6))
+disp(Vce,'(a)Collector emitter voltage before input pulse is applied(in volts)=')
+Vce2=Vcc-(0.1*Vcc)
+disp(Vce2,'(b)Collector emittter voltage at end of delay time(in volts)=')
+Vce3=Vcc-(0.9*Vcc)
+disp(Vce3,'(c)Collector emitter voltage at end of turn on time(in volts)=')
+T=(t*10^(-3))+pw
+disp(T,'(d)Total time from commencement of input to transistor switch off(in micro sec)=')
\ No newline at end of file diff --git a/863/CH4/EX4.3/Ex4_3.txt b/863/CH4/EX4.3/Ex4_3.txt new file mode 100644 index 000000000..e6af0b9ff --- /dev/null +++ b/863/CH4/EX4.3/Ex4_3.txt @@ -0,0 +1,18 @@ +//Caption:Calculate Vce (a)Before input pulse is applied (b)at end of delay time (c)at end of turn on time (d)Total time
+//Ex4.3
+clc;
+clear;
+close;
+Vcc=12//Collector voltage(in volts)
+Rc=3.3//Collector resistor(in Kilo ohm)
+pw=5//Pulse width of input voltage(in micro sec)
+Ix=50//Collector cutoff current(in nA)
+t=250//Switch off time(nA)
+Vce=Vcc-(Ix*Rc*10^(-6))
+disp(Vce,'(a)Collector emitter voltage before input pulse is applied(in volts)=')
+Vce2=Vcc-(0.1*Vcc)
+disp(Vce2,'(b)Collector emittter voltage at end of delay time(in volts)=')
+Vce3=Vcc-(0.9*Vcc)
+disp(Vce3,'(c)Collector emitter voltage at end of turn on time(in volts)=')
+T=(t*10^(-3))+pw
+disp(T,'(d)Total time from commencement of input to transistor switch off(in micro sec)=')
\ No newline at end of file diff --git a/863/CH4/EX4.3/Result4_3.txt b/863/CH4/EX4.3/Result4_3.txt new file mode 100644 index 000000000..b102cfcd8 --- /dev/null +++ b/863/CH4/EX4.3/Result4_3.txt @@ -0,0 +1,16 @@ +(a)Collector emitter voltage before input pulse is applied(in volts)=
+
+ 11.999835
+
+ (b)Collector emittter voltage at end of delay time(in volts)=
+
+ 10.8
+
+ (c)Collector emitter voltage at end of turn on time(in volts)=
+
+ 1.2
+
+ (d)Total time from commencement of input to transistor switch off(in micro sec)=
+
+ 5.25
+
\ No newline at end of file |