summaryrefslogtreecommitdiff
path: root/1529/CH9/EX9.8/9_08.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1529/CH9/EX9.8/9_08.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 '1529/CH9/EX9.8/9_08.sce')
-rwxr-xr-x1529/CH9/EX9.8/9_08.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1529/CH9/EX9.8/9_08.sce b/1529/CH9/EX9.8/9_08.sce
new file mode 100755
index 000000000..d541c7c3c
--- /dev/null
+++ b/1529/CH9/EX9.8/9_08.sce
@@ -0,0 +1,9 @@
+//Chapter 9, Problem 8
+clc;
+N=150;
+//Since the flux reverses, the flux changes from+400 μWb to −400 μWb,
+// a total change of flux of 800 μWb.
+dphi=800*10^-6; //change in flux
+dt=40*10^-3; //change in time
+E=-N*(dphi/dt); //calculating induced emf
+printf("Induced emf = %f V",E);