diff options
Diffstat (limited to '3850/CH35/EX35.5/Ex35_5.sce')
-rw-r--r-- | 3850/CH35/EX35.5/Ex35_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH35/EX35.5/Ex35_5.sce b/3850/CH35/EX35.5/Ex35_5.sce new file mode 100644 index 000000000..a926a1884 --- /dev/null +++ b/3850/CH35/EX35.5/Ex35_5.sce @@ -0,0 +1,18 @@ + +//To Calculate the Amount of Current
+
+//Example 35.5
+
+clear;
+
+clc;
+
+B=20*10^-3;//Magnetic field inside the solenoid in Tesla
+
+n=20*10^2;//Number of turns per unit metre
+
+u0=4*%pi*10^-7;//Permiability of Vaccum
+
+i=B/(u0*n);//Current flowing through the solenoid in Amperes
+
+printf("Current flowing through the solenoid = %.1f A",i);
|