summaryrefslogtreecommitdiff
path: root/863/CH6/EX6.3/Ex6_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '863/CH6/EX6.3/Ex6_3.sce')
-rw-r--r--863/CH6/EX6.3/Ex6_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/863/CH6/EX6.3/Ex6_3.sce b/863/CH6/EX6.3/Ex6_3.sce
new file mode 100644
index 000000000..9b2c433b3
--- /dev/null
+++ b/863/CH6/EX6.3/Ex6_3.sce
@@ -0,0 +1,13 @@
+//Caption:Determine Largest speed up capacitance
+//Ex6.3
+clc;
+clear;
+close;
+f=1//Frequency(in Mhz)
+R1=22//Resistance(in kilo ohm)
+R2=22//Resistance(in kilo ohm)
+Rc1=4.7//Resistance(in kilo ohm)
+R=R1*(Rc1+R2)/(R1+Rc1+R2)
+t=1/f
+C=t*1000/(2.3*R)
+disp(C,'Required Capacitance(in pF)=') \ No newline at end of file