summaryrefslogtreecommitdiff
path: root/3754/CH31/EX31.10/31_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH31/EX31.10/31_10.sce')
-rw-r--r--3754/CH31/EX31.10/31_10.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH31/EX31.10/31_10.sce b/3754/CH31/EX31.10/31_10.sce
new file mode 100644
index 000000000..d875abd78
--- /dev/null
+++ b/3754/CH31/EX31.10/31_10.sce
@@ -0,0 +1,18 @@
+clear//
+
+//Variables
+
+C1 = 100.0 * 10**-12 //Capacitance (in Farad)
+C2 = 7500.0 * 10**-12 //Capacitance (in Farad)
+fomin = 950.0 * 10**3 //Frequency minimum (in Hertz)
+fomax = 2050.0 * 10**3 //Frequency maximum (in Hertz)
+
+//Calculation
+
+C = C1 * C2/ (C1 + C2) //Net capacitance (in Farad)
+L1 = 1.0/(4 * %pi**2*(C*fomin**2)) //Inductance1 (in Henry)
+L2 = 1.0/(4 * %pi**2*(C*fomax**2)) //Inductance2 (in Henry)
+
+//Result
+
+printf("\n The range of inductance required is from %0.0f micro-Henry to %0.0f micro-Henry.",L2*10**6,L1*10**6)