summaryrefslogtreecommitdiff
path: root/3871/CH5/EX5.11/Ex5_11.sce
blob: 9b47481e0ad11deed921acc41ea04301adcdde47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===========================================================================
//chapter 5 example 11
clc;clear all;

//variable declaration
V     = 300;		//voltage in V
R     = 12000;	//coil resistance in  Ω
B     = 6*10^-2;	//flux density in Wb/m**2
l       = 0.04;	//length in m 
r      = 0.03;		//width in m
N    = 100;
Tc    = 25*10^-7;		//torque in Nm per degree

//calculations
i    = V/(R);		//current in A
Td   = N*B*i*l*r;		//deflecting Torque in Nm
//Tc=Td;
//Tc =(25*10^-7)*theta
theta = Td/(Tc);		//defelction in °

//result
mprintf('defelction = %3.0f °",theta);