Results 1 to 3 of 3
Hello everyone
i v just joined the forum and i would like u to give me some sort of help in my induction motor project
i am using matlab to ...
- 10-27-2009 #1Just Joined!
- Join Date
- Oct 2009
- Posts
- 2
matlab problem, help me experts plz
Hello everyone
i v just joined the forum and i would like u to give me some sort of help in my induction motor project
i am using matlab to carry out the value for torque and then plot the torque Vs speed graph using matlab
so torque should be calculated for different speeds and slips
(Not only different values of speed!)
So
given the following parameters
R2=.8ohm
Rt=1.2ohm
Lt=2.2ohm
L2=3 ohm
v=225v
s = (ws-wr) / ws , where ws=synchronous speed and wr=rotor speed
i2= as in attachment
torque=(3./wr)*(I2^2)*(R2/s)*(1-s)
Also current cannot be one constant value
It should be calculated accordingly to slip values, so for each slip value we should have a value for current
To sum up , I think that we should use for loop to carry out values of slip ,corresponding speed ,and corresponding current on a range of values to create the proper plot
If the code is correct we must end up with the graph shown in the attachment
I will be thankful if u would help me
Many thanks
- 10-28-2009 #2
I don't understand. You have the equation, and you have the necessary values to calculate the parameters you need. All you need to do is code it in Matlab. So why do you need our help?
Also, why are you posting a Matlab problem in a Linux forum?Registered Linux user #388328 || Registered LFS user #15880
AMD 64 X2 4600+ :: 2X1GB DDR2 800 :: GeForce 9400 GT 512MB :: ASUS M2N32 Deluxe :: 4X250GB SATAII
Need instant help? Try us on IRC -- #linuxforums on freenode
- 10-28-2009 #3Just Joined!
- Join Date
- Oct 2009
- Posts
- 2
hi
again
i think that i am nearly there
here is my attempt
vt=225;
rt=1.2;
f=50;
r2=.8;
ws=157;
Lt=2.2;
L2=3;
s=2:.001:-1.2;
wr=(1-s).*ws;
Z=sqrt(((rt+(r2./s))^2)+((Lt+L2)^2));
i2=vt/Z;
torque=(3./wr)*(i2^2)*(r2/s)*(1-s);
plot(s,torque);


Reply With Quote