diff options
Diffstat (limited to '2384/CH8/EX8.11/ex8_11.sce')
-rwxr-xr-x | 2384/CH8/EX8.11/ex8_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2384/CH8/EX8.11/ex8_11.sce b/2384/CH8/EX8.11/ex8_11.sce new file mode 100755 index 000000000..a1b942fe3 --- /dev/null +++ b/2384/CH8/EX8.11/ex8_11.sce @@ -0,0 +1,14 @@ +// Exa 8.11
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+l_g = 4;// in mm
+l_g = l_g * 10^-3;// in m
+Bg = 1.3;// in Wb/m^2
+miu_o = 4*%pi*10^-7;
+Hg = Bg/miu_o;
+// Ampere turns for the gap
+AT = Hg*l_g;// in AT
+disp(AT,"The amphere turns in AT is");
|