summaryrefslogtreecommitdiff
path: root/3850/CH35/EX35.5/Ex35_5.sce
blob: a926a188464124344f445ac15556287feacb063b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);