summaryrefslogtreecommitdiff
path: root/608/CH9/EX9.15/9_15.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH9/EX9.15/9_15.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '608/CH9/EX9.15/9_15.sce')
-rwxr-xr-x608/CH9/EX9.15/9_15.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/608/CH9/EX9.15/9_15.sce b/608/CH9/EX9.15/9_15.sce
new file mode 100755
index 000000000..f4599dcb7
--- /dev/null
+++ b/608/CH9/EX9.15/9_15.sce
@@ -0,0 +1,12 @@
+//Problem 9.15: The mutual inductance between two coils is 18 mH. Calculate the steady rate of change of current in one coil to induce an e.m.f. of 0.72 V in the other.
+
+//initializing the variables:
+M = 0.018; // in Henry
+N = 2; // no. of coils
+E2 = 0.72; // in Volts
+
+//calculation:
+dI1dt = abs(E2)/M
+
+printf("\n\n Result \n\n")
+printf("\n rate of change of current dI1/dt = %.0f A/s\n", dI1dt) \ No newline at end of file