diff options
Diffstat (limited to '174/CH6/EX6.4')
-rwxr-xr-x | 174/CH6/EX6.4/example6_4.sce | 27 | ||||
-rwxr-xr-x | 174/CH6/EX6.4/example6_4.txt | 2 |
2 files changed, 29 insertions, 0 deletions
diff --git a/174/CH6/EX6.4/example6_4.sce b/174/CH6/EX6.4/example6_4.sce new file mode 100755 index 000000000..ff004daa2 --- /dev/null +++ b/174/CH6/EX6.4/example6_4.sce @@ -0,0 +1,27 @@ +// To find the distributed capacitance
+// Modern Electronic Instrumentation And Measurement Techniques
+// By Albert D. Helfrick, William D. Cooper
+// First Edition Second Impression, 2009
+// Dorling Kindersly Pvt. Ltd. India
+// Example 6-4 in Page 162
+
+
+clear; clc; close;
+
+// Given data
+// Frequency measurements in Hz
+f_1 = 2*10^6;
+f_2 = 4*10^6;
+// Value of tuning capacitor in F
+C_1 = 460*10^-12;
+C_2 = 100*10^-12;
+
+//Calculations
+ C_d = (C_1- (4*C_2))/3;
+printf("C_d = %0.0E F\n",C_d);
+printf("i.e The value of the distributed capacitance = %d pF",(C_d*10^12));
+
+//Result
+// C_d = 2E-011 F
+// i.e The value of the distributed capacitance = 20 pF
+
diff --git a/174/CH6/EX6.4/example6_4.txt b/174/CH6/EX6.4/example6_4.txt new file mode 100755 index 000000000..2bc340187 --- /dev/null +++ b/174/CH6/EX6.4/example6_4.txt @@ -0,0 +1,2 @@ +C_d = 2E-011 F
+i.e The value of the distributed capacitance = 20 pF
|