summaryrefslogtreecommitdiff
path: root/608/CH9/EX9.09/9_09.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.09/9_09.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.09/9_09.sce')
-rwxr-xr-x608/CH9/EX9.09/9_09.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/608/CH9/EX9.09/9_09.sce b/608/CH9/EX9.09/9_09.sce
new file mode 100755
index 000000000..90a6252fd
--- /dev/null
+++ b/608/CH9/EX9.09/9_09.sce
@@ -0,0 +1,12 @@
+//Problem 9.09: An e.m.f. of 1.5 kV is induced in a coil when a current of 4 A reduced to 0 A in a 8 ms. find the inductance of the coil.
+
+//initializing the variables:
+E = 1500; // in Volts
+dt = 0.008; // Change of time in sec
+dI = 4; // change of current in A/s
+
+//calculation:
+L = abs(E)*dt/dI
+
+printf("\n\n Result \n\n")
+printf("\n Inductance L = %.0f H\n",L) \ No newline at end of file