summaryrefslogtreecommitdiff
path: root/182/CH3/EX3.1/example3_1.sce
blob: 48265f43801097829c7d64810e340743c15c9cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// To find the Torque on the coil
// example3-1 in page 37
clc;
//Given data
N=100;//Number of turns
B=0.2;//Magnetic flux density of 0.2 tesla
D=0.01; l=0.015; //diameter and length of the coil in meters
I=.001;// current=1 mA
//calculation
T=B*l*I*N*D;// torque in N-m
printf("Torque=%f N-m",T);
//result
//Torque=0.000003 N-m