SlideShare a Scribd company logo
%%%Spencer Minder
%%%0420537
%%%EE 551
%HW 6
% Develop a program to plot the reactive power at the terminals of the
induction
% generator versus speed. Test your program using the following data:
%
% ns=1200 rpm
% r2'=0.01 ohm
% r1=0.01 ohm
% x1=0.1 ohm
% x2'=0.1 ohm
% xm=5 ohm
%
% Va1=690 V (line-to-line). Use Va1 as a reference vector
%
% Plot the reactive power for the three injected voltages:
%
% va2'= 20V at 100 degree lagging
% va2'=0 V
% va2'=20 at 80 degree leading
%
% the speed range should be from 0.8 ns to 1.3 ns
%Slip will vary depending on the speed
%Speed of the rotor will vary from 960rpm to 1560rpm
ns=1200;
nr=960:1:1560;
s=(ns-nr)/ns;
%Finding the Thevenin circuit values
r2prime=0.01;
r1=0.01;
x1=0.1;
x2prime=0.1;
xm=5;
Vll=690;
Va1_LN=690/sqrt(3);
%Finding thevenin impedance Zth
zth=((xm*1j)*(r1+x1*1j))/(r1+(x1+xm)*1j);
%Finding thevenin reactance xth
xth=imag(zth);
%Finding thevenin resistance Rth
rth=real(zth);
%Finding equivalent reactance Xeq
xequiv=xth+x2prime;
%Finding thevenin voltage Vth
vth=((xm*1j)*(Va1_LN))/(r1+(x1+xm)*1j);
%Solving for the Three different cases of Va2'
%First injected voltage 20V <100degrees lagging (converting to phasor form)
%Note: cosd and sind allows the use of degrees instead of radians
va2prime1=20*(cosd(-100)+sind(-100)*1j);
%second injected voltage 0V (converting to phasor form)
va2prime2=0;
%Third injected voltage 20V <80degrees leading (converting to phasor form)
va2prime3=20*(cosd(80)+sind(80)*1j)
%Finding the currents and Voltages needed to solve for reactive power
%Note have to find these values for each different case
%%%%Case 1
%Found on page 25 of chapter 8 in the book Ia2' is as follows
Ia2prime1=((va2prime1./s)-vth)./((rth+(r2prime./s))+xequiv*1j);
%Magnetizing voltage was found on page 49 of chapter 8
Vm1=(va2prime1./s)-(Ia2prime1.*((r2prime./s)+x2prime*1j));
Im1=Vm1/(xm*1j);
Ia1=Ia2prime1-Im1;
%Solving for reactive power Qt
%complex conjugate of Ia1
Ia1conj=conj(Ia1);
%Solving for terminal voltage of Va1
%Using the equation on page 27 of chapter 8
%Ia1=Ia2'+(Va1/jxm)
%Finding the reactive power
Qt1=3*imag(Va1_LN.*Ia1conj);
%%%%Case 2
Ia2prime2=((va2prime2./s)-vth)./((rth+(r2prime./s))+xequiv*1j);
%Magnetizing voltage was found on page 49 of chapter 8
Vm2=(va2prime2./s)-(Ia2prime2.*((r2prime./s)+x2prime*1j));
Im2=Vm2/(xm*1j);
Ia1_2=Ia2prime2-Im2;
%Solving for reactive power Qt
%complex conjugate of Ia1
Ia1_2conj=conj(Ia1_2);
%Solving for terminal voltage of Va1
%Using the equation on page 27 of chapter 8
%Ia1=Ia2'+(Va1/jxm)
%Finding the reactive power
Qt2=3*imag(Va1_LN.*Ia1_2conj);
%%%%Case 3
Ia2prime3=((va2prime3./s)-vth)./((rth+(r2prime./s))+xequiv*1j);
%Magnetizing voltage was found on page 49 of chapter 8
Vm3=(va2prime3./s)-(Ia2prime3.*((r2prime./s)+x2prime*1j));
Im3=Vm3/(xm*1j);
Ia1_3=Ia2prime3-Im3;
%Solving for reactive power Qt
%complex conjugate of Ia1
Ia1_3conj=conj(Ia1_3);
%Solving for terminal voltage of Va1
%Using the equation on page 27 of chapter 8
%Ia1=Ia2'+(Va1/jxm)
%Finding the reactive power
Qt3=3*imag(Va1_LN.*Ia1_3conj);
%Scaling the reactive power and putting it in terms of MVar we divide by
%10^6
plot(Qt1/10^6,nr,Qt2/10^6,nr,Qt3/10^6,nr);
grid on
title('Reactive power vs Rotor speed for injected Voltages');
xlabel('Reactive Power (MVAr)');
ylabel('Speed(rpm)');
(20 <‐100⁰) V 
(20 <80⁰) V
(0<0⁰) V
Results:
Reactive power control from type 3 systems adds a huge amount of flexibility
to power grid. First off there is no need for Var compensation like in other
types of wind turbines(type I & II). Also this allows the wind farm to
either supply reactive power or consume unwanted reactive power to the grid.
Looking at the graphical results of the 3 different test cases we can get an
idea of what happens to the reactive power as different voltages are injected
into the system and at what speeds. For 20V <80deg(leading) the system is
consuming reactive power below synchronous speed(1200rpm) and supplying
reactive power above this speed. For the cases 0V<0deg the system consumes
reactive power with the max at synchronous speed(1200rpm).
In the case of 20V <-100deg(lagging), the Machine is consuming reactive power
and more so in the when the speed of the machine is above 1200 rpm.
By changing the value of the injected voltage into the type 3 system, this
changes the reactive power generated by the induction machine. This is done
by either changing the magnitude of the injected voltage (ie 20V or 0V) or
changing the angle between the Voltage and the current from leading to
lagging(Va1 and Ia1*). This allows more ranges of operation for the machine
whether you want to generate more reactive power or to consume reactive power
(ie where reactive power is positive). This has distinct advantages over
type I and type II wind turbines.
 

More Related Content

What's hot

Practice questions
Practice questionsPractice questions
Practice questions
Abha Tripathi
 
Unit v
Unit vUnit v
EEP303 Cycle ii exp-1
EEP303 Cycle ii exp-1EEP303 Cycle ii exp-1
EEP303 Cycle ii exp-1
Umang Gupta
 
Unit1 And 2 Sample Solutions
Unit1 And 2 Sample SolutionsUnit1 And 2 Sample Solutions
Unit1 And 2 Sample Solutions
Abha Tripathi
 
EEP303: Cycle ii exp 4
EEP303: Cycle ii   exp 4EEP303: Cycle ii   exp 4
EEP303: Cycle ii exp 4
Umang Gupta
 
Questions From 1st Unit Nagrath
Questions From 1st Unit NagrathQuestions From 1st Unit Nagrath
Questions From 1st Unit NagrathAbha Tripathi
 
EEP303: Cycle ii exp 2
EEP303: Cycle ii   exp 2EEP303: Cycle ii   exp 2
EEP303: Cycle ii exp 2
Umang Gupta
 
EEP301: Dc modular servo motor
EEP301: Dc modular servo motorEEP301: Dc modular servo motor
EEP301: Dc modular servo motor
Umang Gupta
 
Unit1 and 2 sample solutions
Unit1 and 2 sample solutionsUnit1 and 2 sample solutions
Unit1 and 2 sample solutionsAbha Tripathi
 
EEP303: Exp5
EEP303: Exp5EEP303: Exp5
EEP303: Exp5
Umang Gupta
 
Unsymmetrical Fault
Unsymmetrical FaultUnsymmetrical Fault
Unsymmetrical Fault
Mohd Zahid Mohammad Ali
 
Unit 1, Power system Analysis
Unit 1, Power system AnalysisUnit 1, Power system Analysis
Unit 1, Power system Analysis
Abha Tripathi
 
Symmetrical component method for 3 phase power representation
Symmetrical component method for 3 phase power representationSymmetrical component method for 3 phase power representation
Symmetrical component method for 3 phase power representation
Nisarg Amin
 
Unit 3 Part 1
Unit 3 Part 1Unit 3 Part 1
Unit 3 Part 1
guest67994e4
 
Practice questions for unit ii
Practice questions for unit iiPractice questions for unit ii
Practice questions for unit ii
Abha Tripathi
 
Symmetrical components
Symmetrical componentsSymmetrical components
Symmetrical components
Sirat Mahmood
 
EEP301: linear system simulator
EEP301: linear system simulatorEEP301: linear system simulator
EEP301: linear system simulator
Umang Gupta
 
Unsymmetrical fault analysis
Unsymmetrical fault analysisUnsymmetrical fault analysis
Unsymmetrical fault analysis
Revathi Subramaniam
 
EEP301: Analog control of DC motor
EEP301: Analog control of DC motorEEP301: Analog control of DC motor
EEP301: Analog control of DC motor
Umang Gupta
 
Unit 2 Questions_Nagrath kothari
Unit 2 Questions_Nagrath kothariUnit 2 Questions_Nagrath kothari
Unit 2 Questions_Nagrath kothari
Abha Tripathi
 

What's hot (20)

Practice questions
Practice questionsPractice questions
Practice questions
 
Unit v
Unit vUnit v
Unit v
 
EEP303 Cycle ii exp-1
EEP303 Cycle ii exp-1EEP303 Cycle ii exp-1
EEP303 Cycle ii exp-1
 
Unit1 And 2 Sample Solutions
Unit1 And 2 Sample SolutionsUnit1 And 2 Sample Solutions
Unit1 And 2 Sample Solutions
 
EEP303: Cycle ii exp 4
EEP303: Cycle ii   exp 4EEP303: Cycle ii   exp 4
EEP303: Cycle ii exp 4
 
Questions From 1st Unit Nagrath
Questions From 1st Unit NagrathQuestions From 1st Unit Nagrath
Questions From 1st Unit Nagrath
 
EEP303: Cycle ii exp 2
EEP303: Cycle ii   exp 2EEP303: Cycle ii   exp 2
EEP303: Cycle ii exp 2
 
EEP301: Dc modular servo motor
EEP301: Dc modular servo motorEEP301: Dc modular servo motor
EEP301: Dc modular servo motor
 
Unit1 and 2 sample solutions
Unit1 and 2 sample solutionsUnit1 and 2 sample solutions
Unit1 and 2 sample solutions
 
EEP303: Exp5
EEP303: Exp5EEP303: Exp5
EEP303: Exp5
 
Unsymmetrical Fault
Unsymmetrical FaultUnsymmetrical Fault
Unsymmetrical Fault
 
Unit 1, Power system Analysis
Unit 1, Power system AnalysisUnit 1, Power system Analysis
Unit 1, Power system Analysis
 
Symmetrical component method for 3 phase power representation
Symmetrical component method for 3 phase power representationSymmetrical component method for 3 phase power representation
Symmetrical component method for 3 phase power representation
 
Unit 3 Part 1
Unit 3 Part 1Unit 3 Part 1
Unit 3 Part 1
 
Practice questions for unit ii
Practice questions for unit iiPractice questions for unit ii
Practice questions for unit ii
 
Symmetrical components
Symmetrical componentsSymmetrical components
Symmetrical components
 
EEP301: linear system simulator
EEP301: linear system simulatorEEP301: linear system simulator
EEP301: linear system simulator
 
Unsymmetrical fault analysis
Unsymmetrical fault analysisUnsymmetrical fault analysis
Unsymmetrical fault analysis
 
EEP301: Analog control of DC motor
EEP301: Analog control of DC motorEEP301: Analog control of DC motor
EEP301: Analog control of DC motor
 
Unit 2 Questions_Nagrath kothari
Unit 2 Questions_Nagrath kothariUnit 2 Questions_Nagrath kothari
Unit 2 Questions_Nagrath kothari
 

Similar to EE551_HW6

Generator protection calculations settings
Generator protection calculations settingsGenerator protection calculations settings
Generator protection calculations settings
michaeljmack
 
Symmetrical Components Fault Calculations
Symmetrical Components Fault CalculationsSymmetrical Components Fault Calculations
Symmetrical Components Fault Calculations
michaeljmack
 
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptxCHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
LiewChiaPing
 
Q0104398104
Q0104398104Q0104398104
Q0104398104
IOSR Journals
 
protection Training.pptx
protection Training.pptxprotection Training.pptx
protection Training.pptx
MAHMOUDMOHAMED431205
 
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
Power System Operation
 
Computer Science Homework Help
Computer Science Homework HelpComputer Science Homework Help
Computer Science Homework Help
Edu Assignment Help
 
Chapter two Part two.pptx
Chapter two Part two.pptxChapter two Part two.pptx
Chapter two Part two.pptx
AbdalleAidrous
 
SWINBURNE’S TEST
SWINBURNE’S TESTSWINBURNE’S TEST
SWINBURNE’S TEST
suresh shindhe
 
06 -synchronous_machine_parameter_measurement
06  -synchronous_machine_parameter_measurement06  -synchronous_machine_parameter_measurement
06 -synchronous_machine_parameter_measurement
Ellixies Fair
 
Power-System-Slide-1.pptx
Power-System-Slide-1.pptxPower-System-Slide-1.pptx
Power-System-Slide-1.pptx
ssuser99d6551
 
06 current -__voltage_transformers
06 current -__voltage_transformers06 current -__voltage_transformers
06 current -__voltage_transformersKrishna Das
 
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
International Journal of Power Electronics and Drive Systems
 
Percentage Impedance of Transformer
Percentage Impedance of TransformerPercentage Impedance of Transformer
Percentage Impedance of Transformer
Ashish Ganguli
 
Electrical Engineering Assignment Help
Electrical Engineering Assignment HelpElectrical Engineering Assignment Help
Electrical Engineering Assignment Help
Edu Assignment Help
 
Performance Characteristics of SEIGUsed In Wind Energy Conversion System
Performance Characteristics of SEIGUsed In Wind Energy Conversion SystemPerformance Characteristics of SEIGUsed In Wind Energy Conversion System
Performance Characteristics of SEIGUsed In Wind Energy Conversion System
IJSRD
 
gas turbine generator set operation and maintenance
gas turbine generator set operation and maintenancegas turbine generator set operation and maintenance
gas turbine generator set operation and maintenance
AmrSherif54
 
Blackout avoidance & under voltage loadshedding
Blackout avoidance & under voltage loadsheddingBlackout avoidance & under voltage loadshedding
Blackout avoidance & under voltage loadshedding
Power System Operation
 
DFIG use with combined strategy in case of failure of wind farm
DFIG use with combined strategy in case of failure of wind farm DFIG use with combined strategy in case of failure of wind farm
DFIG use with combined strategy in case of failure of wind farm
IJECEIAES
 

Similar to EE551_HW6 (20)

Generator protection calculations settings
Generator protection calculations settingsGenerator protection calculations settings
Generator protection calculations settings
 
Symmetrical Components Fault Calculations
Symmetrical Components Fault CalculationsSymmetrical Components Fault Calculations
Symmetrical Components Fault Calculations
 
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptxCHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
CHAPTER 3 Voltage Drop and Short Circuit Analysis.pptx
 
Q0104398104
Q0104398104Q0104398104
Q0104398104
 
protection Training.pptx
protection Training.pptxprotection Training.pptx
protection Training.pptx
 
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
Short Circuit Calculation Symmetrical & Asymmetrical Fault Currents ?
 
Computer Science Homework Help
Computer Science Homework HelpComputer Science Homework Help
Computer Science Homework Help
 
Chapter two Part two.pptx
Chapter two Part two.pptxChapter two Part two.pptx
Chapter two Part two.pptx
 
SWINBURNE’S TEST
SWINBURNE’S TESTSWINBURNE’S TEST
SWINBURNE’S TEST
 
06 -synchronous_machine_parameter_measurement
06  -synchronous_machine_parameter_measurement06  -synchronous_machine_parameter_measurement
06 -synchronous_machine_parameter_measurement
 
Power-System-Slide-1.pptx
Power-System-Slide-1.pptxPower-System-Slide-1.pptx
Power-System-Slide-1.pptx
 
06 current -__voltage_transformers
06 current -__voltage_transformers06 current -__voltage_transformers
06 current -__voltage_transformers
 
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
A Novel Control Strategy for Compensation of Voltage Quality Problem in AC Dr...
 
Percentage Impedance of Transformer
Percentage Impedance of TransformerPercentage Impedance of Transformer
Percentage Impedance of Transformer
 
Electrical Engineering Assignment Help
Electrical Engineering Assignment HelpElectrical Engineering Assignment Help
Electrical Engineering Assignment Help
 
Performance Characteristics of SEIGUsed In Wind Energy Conversion System
Performance Characteristics of SEIGUsed In Wind Energy Conversion SystemPerformance Characteristics of SEIGUsed In Wind Energy Conversion System
Performance Characteristics of SEIGUsed In Wind Energy Conversion System
 
gas turbine generator set operation and maintenance
gas turbine generator set operation and maintenancegas turbine generator set operation and maintenance
gas turbine generator set operation and maintenance
 
Ad598
Ad598Ad598
Ad598
 
Blackout avoidance & under voltage loadshedding
Blackout avoidance & under voltage loadsheddingBlackout avoidance & under voltage loadshedding
Blackout avoidance & under voltage loadshedding
 
DFIG use with combined strategy in case of failure of wind farm
DFIG use with combined strategy in case of failure of wind farm DFIG use with combined strategy in case of failure of wind farm
DFIG use with combined strategy in case of failure of wind farm
 

More from Spencer Minder

EE_503_FinalProject_Combined_finaler.docx
EE_503_FinalProject_Combined_finaler.docxEE_503_FinalProject_Combined_finaler.docx
EE_503_FinalProject_Combined_finaler.docxSpencer Minder
 
Digital_Logic_FinalProj
Digital_Logic_FinalProjDigital_Logic_FinalProj
Digital_Logic_FinalProjSpencer Minder
 
Electric_Drives_FinalProj
Electric_Drives_FinalProjElectric_Drives_FinalProj
Electric_Drives_FinalProjSpencer Minder
 
PowerElectronics_FinalDesign
PowerElectronics_FinalDesignPowerElectronics_FinalDesign
PowerElectronics_FinalDesignSpencer Minder
 

More from Spencer Minder (6)

Pg1_merged
Pg1_mergedPg1_merged
Pg1_merged
 
Final_project_Matlab
Final_project_MatlabFinal_project_Matlab
Final_project_Matlab
 
EE_503_FinalProject_Combined_finaler.docx
EE_503_FinalProject_Combined_finaler.docxEE_503_FinalProject_Combined_finaler.docx
EE_503_FinalProject_Combined_finaler.docx
 
Digital_Logic_FinalProj
Digital_Logic_FinalProjDigital_Logic_FinalProj
Digital_Logic_FinalProj
 
Electric_Drives_FinalProj
Electric_Drives_FinalProjElectric_Drives_FinalProj
Electric_Drives_FinalProj
 
PowerElectronics_FinalDesign
PowerElectronics_FinalDesignPowerElectronics_FinalDesign
PowerElectronics_FinalDesign
 

EE551_HW6

  • 1. %%%Spencer Minder %%%0420537 %%%EE 551 %HW 6 % Develop a program to plot the reactive power at the terminals of the induction % generator versus speed. Test your program using the following data: % % ns=1200 rpm % r2'=0.01 ohm % r1=0.01 ohm % x1=0.1 ohm % x2'=0.1 ohm % xm=5 ohm % % Va1=690 V (line-to-line). Use Va1 as a reference vector % % Plot the reactive power for the three injected voltages: % % va2'= 20V at 100 degree lagging % va2'=0 V % va2'=20 at 80 degree leading % % the speed range should be from 0.8 ns to 1.3 ns %Slip will vary depending on the speed %Speed of the rotor will vary from 960rpm to 1560rpm ns=1200; nr=960:1:1560; s=(ns-nr)/ns; %Finding the Thevenin circuit values r2prime=0.01; r1=0.01; x1=0.1; x2prime=0.1; xm=5; Vll=690; Va1_LN=690/sqrt(3); %Finding thevenin impedance Zth zth=((xm*1j)*(r1+x1*1j))/(r1+(x1+xm)*1j); %Finding thevenin reactance xth xth=imag(zth); %Finding thevenin resistance Rth rth=real(zth); %Finding equivalent reactance Xeq xequiv=xth+x2prime; %Finding thevenin voltage Vth vth=((xm*1j)*(Va1_LN))/(r1+(x1+xm)*1j); %Solving for the Three different cases of Va2' %First injected voltage 20V <100degrees lagging (converting to phasor form) %Note: cosd and sind allows the use of degrees instead of radians va2prime1=20*(cosd(-100)+sind(-100)*1j);
  • 2. %second injected voltage 0V (converting to phasor form) va2prime2=0; %Third injected voltage 20V <80degrees leading (converting to phasor form) va2prime3=20*(cosd(80)+sind(80)*1j) %Finding the currents and Voltages needed to solve for reactive power %Note have to find these values for each different case %%%%Case 1 %Found on page 25 of chapter 8 in the book Ia2' is as follows Ia2prime1=((va2prime1./s)-vth)./((rth+(r2prime./s))+xequiv*1j); %Magnetizing voltage was found on page 49 of chapter 8 Vm1=(va2prime1./s)-(Ia2prime1.*((r2prime./s)+x2prime*1j)); Im1=Vm1/(xm*1j); Ia1=Ia2prime1-Im1; %Solving for reactive power Qt %complex conjugate of Ia1 Ia1conj=conj(Ia1); %Solving for terminal voltage of Va1 %Using the equation on page 27 of chapter 8 %Ia1=Ia2'+(Va1/jxm) %Finding the reactive power Qt1=3*imag(Va1_LN.*Ia1conj); %%%%Case 2 Ia2prime2=((va2prime2./s)-vth)./((rth+(r2prime./s))+xequiv*1j); %Magnetizing voltage was found on page 49 of chapter 8 Vm2=(va2prime2./s)-(Ia2prime2.*((r2prime./s)+x2prime*1j)); Im2=Vm2/(xm*1j); Ia1_2=Ia2prime2-Im2; %Solving for reactive power Qt %complex conjugate of Ia1 Ia1_2conj=conj(Ia1_2); %Solving for terminal voltage of Va1 %Using the equation on page 27 of chapter 8 %Ia1=Ia2'+(Va1/jxm) %Finding the reactive power Qt2=3*imag(Va1_LN.*Ia1_2conj); %%%%Case 3 Ia2prime3=((va2prime3./s)-vth)./((rth+(r2prime./s))+xequiv*1j); %Magnetizing voltage was found on page 49 of chapter 8 Vm3=(va2prime3./s)-(Ia2prime3.*((r2prime./s)+x2prime*1j)); Im3=Vm3/(xm*1j); Ia1_3=Ia2prime3-Im3; %Solving for reactive power Qt
  • 3. %complex conjugate of Ia1 Ia1_3conj=conj(Ia1_3); %Solving for terminal voltage of Va1 %Using the equation on page 27 of chapter 8 %Ia1=Ia2'+(Va1/jxm) %Finding the reactive power Qt3=3*imag(Va1_LN.*Ia1_3conj); %Scaling the reactive power and putting it in terms of MVar we divide by %10^6 plot(Qt1/10^6,nr,Qt2/10^6,nr,Qt3/10^6,nr); grid on title('Reactive power vs Rotor speed for injected Voltages'); xlabel('Reactive Power (MVAr)'); ylabel('Speed(rpm)'); (20 <‐100⁰) V  (20 <80⁰) V (0<0⁰) V
  • 4. Results: Reactive power control from type 3 systems adds a huge amount of flexibility to power grid. First off there is no need for Var compensation like in other types of wind turbines(type I & II). Also this allows the wind farm to either supply reactive power or consume unwanted reactive power to the grid. Looking at the graphical results of the 3 different test cases we can get an idea of what happens to the reactive power as different voltages are injected into the system and at what speeds. For 20V <80deg(leading) the system is consuming reactive power below synchronous speed(1200rpm) and supplying reactive power above this speed. For the cases 0V<0deg the system consumes reactive power with the max at synchronous speed(1200rpm). In the case of 20V <-100deg(lagging), the Machine is consuming reactive power and more so in the when the speed of the machine is above 1200 rpm. By changing the value of the injected voltage into the type 3 system, this changes the reactive power generated by the induction machine. This is done by either changing the magnitude of the injected voltage (ie 20V or 0V) or changing the angle between the Voltage and the current from leading to lagging(Va1 and Ia1*). This allows more ranges of operation for the machine whether you want to generate more reactive power or to consume reactive power (ie where reactive power is positive). This has distinct advantages over type I and type II wind turbines.