summaryrefslogtreecommitdiff
path: root/2444/CH7/EX7.7/ex7_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2444/CH7/EX7.7/ex7_7.sce')
-rwxr-xr-x2444/CH7/EX7.7/ex7_7.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2444/CH7/EX7.7/ex7_7.sce b/2444/CH7/EX7.7/ex7_7.sce
new file mode 100755
index 000000000..8e68ad26f
--- /dev/null
+++ b/2444/CH7/EX7.7/ex7_7.sce
@@ -0,0 +1,18 @@
+// Exa 7.7
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+L1 = 1;// in mH
+L1 = L1 * 10^-3;// in H
+L2 = 100;// in µH
+L2 = L2 * 10^-6;// in H
+M = 50;// in µH
+M = M * 10^-6;// in H
+C = 100;// in pF
+C = C * 10^-12;// in F
+L = L1+L2+(2*M);// in H
+f_o = 1/(2*%pi*(sqrt( L*C )));// in Hz
+f_o = f_o * 10^-3;// in kHz
+disp(f_o,"The oscillation frequency in kHz is");