diff options
Diffstat (limited to '863/CH5/EX5.5')
-rw-r--r-- | 863/CH5/EX5.5/Ex5_5.sce | 18 | ||||
-rw-r--r-- | 863/CH5/EX5.5/Ex5_5.txt | 18 | ||||
-rw-r--r-- | 863/CH5/EX5.5/Result5_5.txt | 4 |
3 files changed, 40 insertions, 0 deletions
diff --git a/863/CH5/EX5.5/Ex5_5.sce b/863/CH5/EX5.5/Ex5_5.sce new file mode 100644 index 000000000..1454ccb2a --- /dev/null +++ b/863/CH5/EX5.5/Ex5_5.sce @@ -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 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 diff --git a/863/CH5/EX5.5/Result5_5.txt b/863/CH5/EX5.5/Result5_5.txt new file mode 100644 index 000000000..248d43ec4 --- /dev/null +++ b/863/CH5/EX5.5/Result5_5.txt @@ -0,0 +1,4 @@ +Required frequency(in hz)=
+
+ 31.830989
+
\ No newline at end of file |