diff options
Diffstat (limited to '863/CH13/EX13.4')
-rw-r--r-- | 863/CH13/EX13.4/Ex13_4.sce | 12 | ||||
-rw-r--r-- | 863/CH13/EX13.4/Ex13_4.txt | 12 | ||||
-rw-r--r-- | 863/CH13/EX13.4/Result13_4.txt | 6 |
3 files changed, 30 insertions, 0 deletions
diff --git a/863/CH13/EX13.4/Ex13_4.sce b/863/CH13/EX13.4/Ex13_4.sce new file mode 100644 index 000000000..18d5deb00 --- /dev/null +++ b/863/CH13/EX13.4/Ex13_4.sce @@ -0,0 +1,12 @@ +//Caption:Determine the capacitance for flip flop design and triggering frequency
+//Ex13.4
+clc;
+clear;
+close;
+R1=15//Resistor(in kilo ohm)
+R2=27//Resistor(in kilo ohm)
+t=250//time(in ns)
+R=R1*R2/(R1+R2)
+C=t/(0.1*R)
+f=10^6/(2.3*C*R)
+disp(f,C,'Capacitance(in pF) and Frequency(in Khz)=')
\ No newline at end of file diff --git a/863/CH13/EX13.4/Ex13_4.txt b/863/CH13/EX13.4/Ex13_4.txt new file mode 100644 index 000000000..18d5deb00 --- /dev/null +++ b/863/CH13/EX13.4/Ex13_4.txt @@ -0,0 +1,12 @@ +//Caption:Determine the capacitance for flip flop design and triggering frequency
+//Ex13.4
+clc;
+clear;
+close;
+R1=15//Resistor(in kilo ohm)
+R2=27//Resistor(in kilo ohm)
+t=250//time(in ns)
+R=R1*R2/(R1+R2)
+C=t/(0.1*R)
+f=10^6/(2.3*C*R)
+disp(f,C,'Capacitance(in pF) and Frequency(in Khz)=')
\ No newline at end of file diff --git a/863/CH13/EX13.4/Result13_4.txt b/863/CH13/EX13.4/Result13_4.txt new file mode 100644 index 000000000..1e0de28b0 --- /dev/null +++ b/863/CH13/EX13.4/Result13_4.txt @@ -0,0 +1,6 @@ + Capacitance(in pF) and Frequency(in Khz)=
+
+ 259.25926
+
+ 173.91304
+
\ No newline at end of file |