diff options
Diffstat (limited to '1529/CH9/EX9.1/9_01.sce')
-rwxr-xr-x | 1529/CH9/EX9.1/9_01.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1529/CH9/EX9.1/9_01.sce b/1529/CH9/EX9.1/9_01.sce new file mode 100755 index 000000000..58f916fc9 --- /dev/null +++ b/1529/CH9/EX9.1/9_01.sce @@ -0,0 +1,13 @@ +//Chapter 9, Problem 1
+clc;
+B=1.25; //flux density
+v=4; //conductor velocity
+l=300*10^-3; //conductor length
+R=20; //resistance
+E=B*l*v; //calculating emf
+I=E/R; //calculating current from ohms law
+disp("(a)");
+disp("If the ends of the conductor are open circuited, no current will flow.");
+disp("(b)");
+disp("If its ends are connected to a load of 20ohm resistance, then");
+printf("Current = %f A",I);
|