summaryrefslogtreecommitdiff
path: root/3745/CH1/EX1.44/Ex1_44.sce
blob: 992d918068f9a8d5dd524c0ff7a54f49251cc5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Ex 44 Page 388

clc;clear;close;
// Given
zo=1+%i*1;//ohm
zi=0.2+%i*4;//ohm
Ri=real(zi) ;//ohm
Ro=real(zo) ;//ohm

//at standstill
s=1;//% at standstill
Zo=sqrt(real(zo)**2+imag(zo)**2);//ohm
Zi=sqrt(real(zi)**2+imag(zi)**2);//ohm
ToBYTi=Ro/Ri*(Zi/Zo)**2;//torque ratio
printf("(a) at standstill, To:Ti = %d:1",ToBYTi)

//at s=0.5
s=0.05;//%
Zo=sqrt(real(zo)**2/s**2+imag(zo)**2);//ohm
Zi=sqrt(real(zi)**2/s**2+imag(zi)**2);//ohm
ToBYTi=Ro/Ri*(Zi/Zo)**2;//torque ratio
printf("\n (b) at s=0.05, To:Ti = %.1f:1",ToBYTi)