summaryrefslogtreecommitdiff
path: root/1991/CH8/EX8.6/6.sce
blob: 1d0c665de8e55437514a450bd4d1816b23c71eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc
clear
//input
N=250 //number of turns
B=8.6*10^-4 //flux density
I=5 //current
A=16*10^-4//area
t=35
//calculation
c=B*I*A*N*sind(t)//moment of couple
x=c/(B*I*2*A*N)//doubling the area
y=asind(x)
//output
printf("the moment of couple is %3.3e Nm",c)
printf("\n the new angle produced  is %3.3f deg",y)