diff options
Diffstat (limited to '1544/CH5/EX5.6/Ch05Ex6.sce')
-rwxr-xr-x | 1544/CH5/EX5.6/Ch05Ex6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1544/CH5/EX5.6/Ch05Ex6.sce b/1544/CH5/EX5.6/Ch05Ex6.sce new file mode 100755 index 000000000..0bcad0953 --- /dev/null +++ b/1544/CH5/EX5.6/Ch05Ex6.sce @@ -0,0 +1,11 @@ +// Scilab code Ex5.6: Pg 149 (2008)
+clc; clear;
+l = 2.2; // Effective length of conductor, m
+B =38e-06; // Flux density, T
+theta = (%pi/2); // Angle, degrees
+v = 800/36; // Velocity, m^2
+e = B*l*v*sin(theta); // Induced emf, V
+printf("\The emf induced in the axle = %4.2f mV", e/1e-03);
+
+// Result
+// The emf induced in the axle = 1.86 mV
|