blob: 9d6332655ecd94dc3a5a7fe952471aafb16de288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// To determine the auto tranformer ratio and starting torque
clc;
clear;
V=400;
f=50;
p=4;
sfl=4/100;
Ria=2.5; // Ratio of starting current to full load current (Auto transformer)
Rir=4; // Ratio of starting current to full load current ( For the Rated Voltage)
x=sqrt(Ria/Rir);
Rt=((x*Rir)^2)*sfl; // Ratio of starting torque to full load torque;
printf('The auto-transformer ratio = %g \n',x)
printf('The starting torque at the above transformer ratio = %g percent of full load torque \n',100*Rt)
|