summaryrefslogtreecommitdiff
path: root/608/CH9/EX9.14/9_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '608/CH9/EX9.14/9_14.sce')
-rwxr-xr-x608/CH9/EX9.14/9_14.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/608/CH9/EX9.14/9_14.sce b/608/CH9/EX9.14/9_14.sce
new file mode 100755
index 000000000..5cd2fdfe1
--- /dev/null
+++ b/608/CH9/EX9.14/9_14.sce
@@ -0,0 +1,12 @@
+//Problem 9.14: Calculate the mutual inductance between two coils when a current changing at 200 A/s in one coil induces an e.m.f. of 1.5 V in the other.
+
+//initializing the variables:
+dI1dt = 200; // change of current with change in time in A/s
+N = 2; // no. of coils
+E2 = 1.5; // in Volts
+
+//calculation:
+M = abs(E2)/dI1dt
+
+printf("\n\n Result \n\n")
+printf("\n mutual inductance, M = %.4f H\n", M) \ No newline at end of file