diff options
Diffstat (limited to '3850/CH35/EX35.2/Ex35_2.sce')
-rw-r--r-- | 3850/CH35/EX35.2/Ex35_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3850/CH35/EX35.2/Ex35_2.sce b/3850/CH35/EX35.2/Ex35_2.sce new file mode 100644 index 000000000..761ee0ba5 --- /dev/null +++ b/3850/CH35/EX35.2/Ex35_2.sce @@ -0,0 +1,22 @@ + +//To Find Magnetic Field between the wires
+
+//Example 35.2
+
+clear;
+
+clc;
+
+i=10;//Current flowing through wires in Amperes
+
+l=5*10^-2;//Seperation between two wires in metres
+
+d=l/2;//Distance of Point P from both wires in metres
+
+k=2*10^-7;// Constant k=(u0/(2*%pi))
+
+B=k*i/d;//Magnetic Field at point P due to each wire
+
+Bnet=2*B;//Net Magnetic Field at Point P due to both wires
+
+printf("Magnetic Field at point P between the two wires = %.0f uT",Bnet*10^6);
|