diff options
Diffstat (limited to '1529/CH9/EX9.8/9_08.sce')
-rwxr-xr-x | 1529/CH9/EX9.8/9_08.sce | 9 |
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);
|