summaryrefslogtreecommitdiff
path: root/3673/CH10/EX10.11/Ex10_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH10/EX10.11/Ex10_11.sce')
-rw-r--r--3673/CH10/EX10.11/Ex10_11.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3673/CH10/EX10.11/Ex10_11.sce b/3673/CH10/EX10.11/Ex10_11.sce
new file mode 100644
index 000000000..d17bf7472
--- /dev/null
+++ b/3673/CH10/EX10.11/Ex10_11.sce
@@ -0,0 +1,20 @@
+//Example 10_11 page no:462
+clc;
+//given
+N=1000;
+I=2;
+mu=4*%pi*10^-7;
+A=0.025*10^-4;
+//calculating the mmf
+mmf=N*I;
+disp(mmf,"the mmf of the cirucit is (in AT)");
+//calculating magnetic intensity
+H=mmf/I;
+disp(H,"the magnetic field intensity is (in AT/m)");
+//calculating flux density
+B=mu*H;
+b=B*1000;//converting to milli weber
+disp(b,"the flux density is (in mWb/m^2)");
+//calculating total flux
+phi=B*A;
+disp(phi,"the total flux density is (in Wb)");