diff options
Diffstat (limited to '620/CH11/EX11.4')
-rw-r--r-- | 620/CH11/EX11.4/example11_4.sce | 24 | ||||
-rw-r--r-- | 620/CH11/EX11.4/example11_4.txt | bin | 0 -> 528 bytes |
2 files changed, 24 insertions, 0 deletions
diff --git a/620/CH11/EX11.4/example11_4.sce b/620/CH11/EX11.4/example11_4.sce new file mode 100644 index 000000000..508aae286 --- /dev/null +++ b/620/CH11/EX11.4/example11_4.sce @@ -0,0 +1,24 @@ +r1=5*10^(-2);
+r2=7*10^(-2);
+r=(r1+r2)/2;
+l=2*%pi*r;
+n=400;
+i=2;
+mu1=2.26*10^(-4);
+disp("Part a");
+d=r2-r1;
+a=%pi*d^2/4;
+rm=l/(mu1*a);
+disp("the reluctance (in At/Wb) of the cast iron toroid is"); disp(rm);
+disp("Part b");
+mmf=n*i;
+phi=mmf/rm;
+disp("the flux (in Wb) set up in the toroidis"); disp(phi);
+disp("Part c");
+mu=4*%pi*10^(-7);
+l1=5*10^(-3);
+rm1=l1/(mu*a);
+mmf1=phi*rm1;
+MMF=mmf+mmf1;
+i1=MMF/n;
+disp("the new value of current required (in A) is"); disp(i1);
\ No newline at end of file diff --git a/620/CH11/EX11.4/example11_4.txt b/620/CH11/EX11.4/example11_4.txt Binary files differnew file mode 100644 index 000000000..6e2e59674 --- /dev/null +++ b/620/CH11/EX11.4/example11_4.txt |