summaryrefslogtreecommitdiff
path: root/863/CH5/EX5.5/Ex5_5.txt
diff options
context:
space:
mode:
Diffstat (limited to '863/CH5/EX5.5/Ex5_5.txt')
-rw-r--r--863/CH5/EX5.5/Ex5_5.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/863/CH5/EX5.5/Ex5_5.txt b/863/CH5/EX5.5/Ex5_5.txt
new file mode 100644
index 000000000..1454ccb2a
--- /dev/null
+++ b/863/CH5/EX5.5/Ex5_5.txt
@@ -0,0 +1,18 @@
+//Caption:Calculate lowest operating frequency for circuit
+//Ex5.5
+clc;
+clear;
+close;
+V=4//Peak to peak amplitude of output waveform(in volts)
+Vi=10//Input voltage(in volts)
+Vs=15//Supply voltage(in volts)
+Ib=500//Maximum Base current(in nA)
+f=250//Frequency of input waveform(in hz)
+I=1//Circuit current(in mA)
+R1=Vi/I
+R3=20*R1
+R2=(R3*R1)/(R1+R3)
+t=1000/(2*f)
+C=(I*t)/V
+F=20*1000/(2*%pi*C*R3)
+disp(F,'Required frequency(in hz)=') \ No newline at end of file