diff options
Diffstat (limited to '3850/CH35/EX35.4/Ex35_4.sce')
-rw-r--r-- | 3850/CH35/EX35.4/Ex35_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH35/EX35.4/Ex35_4.sce b/3850/CH35/EX35.4/Ex35_4.sce new file mode 100644 index 000000000..0ca384aab --- /dev/null +++ b/3850/CH35/EX35.4/Ex35_4.sce @@ -0,0 +1,20 @@ + +//To Calculate the Magnetic Field at the Centre of Coil
+
+//Example 35.4
+
+clear;
+
+clc;
+
+i=1.5;//Current Carried by the Circular Coil in Amperes
+
+n=25;//Number of turns in the coil
+
+a=1.5*10^-2;//Radius of the Circular coil in metres
+
+u0=4*%pi*10^-7;//Permeability of Vaccum
+
+B=u0*i*n/(2*a);//formula for finding the magnetic field at the centre
+
+printf("Magnetic Field at the Centre of Coil = %.2f*10^-3 T",B*10^3);
|