diff options
Diffstat (limited to '1544/CH5/EX5.18/Ch05Ex18.sce')
-rwxr-xr-x | 1544/CH5/EX5.18/Ch05Ex18.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1544/CH5/EX5.18/Ch05Ex18.sce b/1544/CH5/EX5.18/Ch05Ex18.sce new file mode 100755 index 000000000..322f6ca67 --- /dev/null +++ b/1544/CH5/EX5.18/Ch05Ex18.sce @@ -0,0 +1,10 @@ +// Scilab code Ex5.18: Pg 176 (2008)
+clc; clear;
+L = 0.25; // Self-inductance, H
+delta_I = 250e-03; // Change in current, A
+delta_t = 25e-03; // Time, s
+e = ((-L)*delta_I)/(delta_t); // Induced emf, V
+printf("\nThe value of emf induced = %3.1f V", e);
+
+// Result
+// The value of emf induced = 2.5 V
|