summaryrefslogtreecommitdiff
path: root/3830/CH1/EX1.36/Ex1_36.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH1/EX1.36/Ex1_36.sce')
-rw-r--r--3830/CH1/EX1.36/Ex1_36.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3830/CH1/EX1.36/Ex1_36.sce b/3830/CH1/EX1.36/Ex1_36.sce
new file mode 100644
index 000000000..ba88357b2
--- /dev/null
+++ b/3830/CH1/EX1.36/Ex1_36.sce
@@ -0,0 +1,21 @@
+// Exa 1.36
+
+clc;
+clear;
+
+// Given
+
+f1 = 1*10^6; // first resonant frequency in Hz
+C1 = 480*10^-12; // Capacitor value at f1 in Farad
+f2 = 2*10^6; // second resonant frequency in Hz
+C2 = 120*10^-12; // Capacitor value at f2 in Farad
+R = 10; // Resistance in Ohms
+
+// Solution
+
+Cd = (C1-4*C2)/3; // Distributive capacitor
+Q = 1/((2*%pi*f1)*R*(C1+Cd));
+
+printf('The value of Cd and Q of the coil are %.1f pf and %.2f respectively',Cd*10^12,Q);
+
+//The answer provided in the textbook cannot be confirmed(The formulae for Cd mentions L2 variable whose value is not given in problem statement)