diff options
Diffstat (limited to '854/CH9/EX9.3/Example9_3.sce')
-rwxr-xr-x | 854/CH9/EX9.3/Example9_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/854/CH9/EX9.3/Example9_3.sce b/854/CH9/EX9.3/Example9_3.sce new file mode 100755 index 000000000..173c8f903 --- /dev/null +++ b/854/CH9/EX9.3/Example9_3.sce @@ -0,0 +1,18 @@ +//clear//
+//Caption: Program to calculate the total torque acting on a planar rectangular current loop
+//Example9.3
+//page 271
+clc;
+ax = sym('ax');
+ay = sym('ay');
+az = sym('az');
+x = 1;//length in metre
+y = 2; //wide in metre
+S = [0,0,x*y]; //area of current loop in square metre
+I = 4e-03; //current in Amps
+B = [0,-0.6,0.8];
+T = I*cross_product(S,B);
+Tx = float(T(1));
+disp(Tx*ax*1e03,'Total Torque acting on the rectangular current loop in milli N/m=')
+//Result
+//Total Torque acting on the rectangular current loop in milli N/m = 4.8*ax
|