summaryrefslogtreecommitdiff
path: root/3754/CH7/EX7.5
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH7/EX7.5')
-rw-r--r--3754/CH7/EX7.5/7_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH7/EX7.5/7_5.sce b/3754/CH7/EX7.5/7_5.sce
new file mode 100644
index 000000000..fcfab761c
--- /dev/null
+++ b/3754/CH7/EX7.5/7_5.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+L1 = 40.0 //Inductance (in micro-Henry)
+L2 = 80.0 //Inductance (in micro-Henry)
+M = 11.3 //Mutual Inductance (in micro-Henry)
+
+//Calculation
+
+k = M/(L1 * L2)**0.5 //Coefficient of Coupling
+
+//Result
+
+printf("\n Coefficient of coupling is %0.2f .",k)