diff options
Diffstat (limited to '3754/CH28/EX28.1/28_1.sce')
-rw-r--r-- | 3754/CH28/EX28.1/28_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH28/EX28.1/28_1.sce b/3754/CH28/EX28.1/28_1.sce new file mode 100644 index 000000000..3e6b05039 --- /dev/null +++ b/3754/CH28/EX28.1/28_1.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+L = 150.0 * 10**-6 //Inductance (in Henry)
+C = 100.0 * 10**-12 //Capacitance (in Farad)
+
+//Calculation
+
+fo = 0.159 / (L * C)**0.5 //Resonant frequency (in Hertz)
+
+//Result
+
+printf("\n The resonant frequency is %0.1f MHz.",fo * 10**-6)
|