diff options
Diffstat (limited to '608/CH9/EX9.08/9_08.sce')
-rwxr-xr-x | 608/CH9/EX9.08/9_08.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/608/CH9/EX9.08/9_08.sce b/608/CH9/EX9.08/9_08.sce new file mode 100755 index 000000000..0da1613ea --- /dev/null +++ b/608/CH9/EX9.08/9_08.sce @@ -0,0 +1,12 @@ +//Problem 9.08: Calculate the e.m.f. induced in a coil of inductance 12 H by a current changing at the rate of 4 A/s
+
+//initializing the variables:
+L = 12; // in Henry
+u0 = 4*%pi*1E-7;
+dIdt = 4; // change of current with change in time in A/s
+
+//calculation:
+E = -1*L*dIdt
+
+printf("\n\nResult\n\n")
+printf("\n Induced e.m.f. = %.0f V\n",E)
\ No newline at end of file |