summaryrefslogtreecommitdiff
path: root/3754/CH31/EX31.9/31_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH31/EX31.9/31_9.sce')
-rw-r--r--3754/CH31/EX31.9/31_9.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3754/CH31/EX31.9/31_9.sce b/3754/CH31/EX31.9/31_9.sce
new file mode 100644
index 000000000..16fb58bcc
--- /dev/null
+++ b/3754/CH31/EX31.9/31_9.sce
@@ -0,0 +1,16 @@
+clear//
+
+//Variables
+
+C1 = 0.1 * 10**-6 //Capacitance (in Farad)
+C2 = 1.0 * 10**-6 //Capacitance (in Farad)
+L = 470.0 * 10**-6 //Inductance (in Henry)
+
+//Calculation
+
+C = C1 * C2/ (C1 + C2) //Net capacitance (in Farad)
+fo = 1 /(2*%pi*(L * C)**0.5) //Frequency (in Hertz)
+
+//Result
+
+printf("\n Frequency of oscillation is %0.2f kHz.",fo * 10**-3)