summaryrefslogtreecommitdiff
path: root/3850/CH35/EX35.4
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH35/EX35.4')
-rw-r--r--3850/CH35/EX35.4/Ex35_4.sce20
-rw-r--r--3850/CH35/EX35.4/Ex35_4.txt2
2 files changed, 22 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);
diff --git a/3850/CH35/EX35.4/Ex35_4.txt b/3850/CH35/EX35.4/Ex35_4.txt
new file mode 100644
index 000000000..ac8def8f1
--- /dev/null
+++ b/3850/CH35/EX35.4/Ex35_4.txt
@@ -0,0 +1,2 @@
+
+ Magnetic Field at the Centre of Coil = 1.57*10^-3 T \ No newline at end of file