summaryrefslogtreecommitdiff
path: root/863/CH7/EX7.2
diff options
context:
space:
mode:
Diffstat (limited to '863/CH7/EX7.2')
-rw-r--r--863/CH7/EX7.2/Ex7_2.sce13
-rw-r--r--863/CH7/EX7.2/Ex7_2.txt13
-rw-r--r--863/CH7/EX7.2/Result7_2.txt4
3 files changed, 30 insertions, 0 deletions
diff --git a/863/CH7/EX7.2/Ex7_2.sce b/863/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..b933534c5
--- /dev/null
+++ b/863/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,13 @@
+//Caption:Find capacitance
+//Ex7.2
+clc;
+clear;
+close;
+t=250//Pulse width(in micro sec)
+E=9//Input voltage(in volts)
+Vbe=0.7//Base emitter voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+Rb=180//Base resistor(in kilo ohm)
+Eo=-(E-Vbe-Vd)
+C=t*1000/(Rb*log((E-Eo)/E))
+disp(C,'Required capacitance(in pF)=') \ No newline at end of file
diff --git a/863/CH7/EX7.2/Ex7_2.txt b/863/CH7/EX7.2/Ex7_2.txt
new file mode 100644
index 000000000..b933534c5
--- /dev/null
+++ b/863/CH7/EX7.2/Ex7_2.txt
@@ -0,0 +1,13 @@
+//Caption:Find capacitance
+//Ex7.2
+clc;
+clear;
+close;
+t=250//Pulse width(in micro sec)
+E=9//Input voltage(in volts)
+Vbe=0.7//Base emitter voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+Rb=180//Base resistor(in kilo ohm)
+Eo=-(E-Vbe-Vd)
+C=t*1000/(Rb*log((E-Eo)/E))
+disp(C,'Required capacitance(in pF)=') \ No newline at end of file
diff --git a/863/CH7/EX7.2/Result7_2.txt b/863/CH7/EX7.2/Result7_2.txt
new file mode 100644
index 000000000..f93ae2d63
--- /dev/null
+++ b/863/CH7/EX7.2/Result7_2.txt
@@ -0,0 +1,4 @@
+ Required capacitance(in pF)=
+
+ 2268.766
+ \ No newline at end of file