Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (9)
Three level three phase diode clamped SPWM inverte
4.0
The model simulates three phase three level diode clamped inverter using sinosoidal pulse width modulation. FFT analysis of output voltage is performed using power GUI.  Switching frequency and output frequency can be adjusted using the  initializing  callback function in the model properties.
alifadaei
2016-08-23
0
1
Three-phase power system and verify the fault on o
no vote
A three-phase power system is simulated and  A system error on one of the phases has been implemented. Different states of the system was evaluated in the presence of errors. Can be seen in Figures
alifadaei
2016-08-23
1
1
Programmable Pulse Generator
no vote
A pulse generator is either an electronic circuit or a piece of electronic test equipment used to generate rectangular pulses. In this simulation has been used to  Programmable Pulse Generator.
alifadaei
2016-08-23
1
1
Basic Voltage Controller With Resistive Load
no vote
AC voltage controller is used to convert fixed AC voltage to a variable AC voltage  without changing the given frequency. in this model the load is resistive and given firing angle is 30 degrees. 
alifadaei
2016-08-23
1
1
Cyclo Converter Three Phase to Three Phase
no vote
Cyclo converter is  Frequency converter. Cyclo converter, convert  Voltage AC with  Certain frequency to the voltage AC with  other frequency. There are The two types of single and three phase cyclo converter.
alifadaei
2016-08-23
1
1
AC Buck-Boost Converter
no vote
Ac buck-boost converter for  Increase and Decrease input voltage is  Used. Also known as the inverting regulator .simulation at the  MATLAB Simulink environment was conducted
alifadaei
2016-08-23
1
1
Synchronous generator with time-symmetric
no vote
Assessment of current and voltage output synchronous generator is simulated target and  The three phase generator feed. Also check the power output and rotor speed changes also checked.
alifadaei
2016-08-23
1
1
Three-phase inverter 180 conduction
no vote
The simulated three-phase inverter voltage and line are provided. 180 ° for each switch.
alifadaei
2016-08-23
1
1
algoritm p&o for mppt at photovoltaic system
no vote
function D = PandO(Param, Enabled, V, I) % MPPT controller based on the Perturb & Observe algorithm. % D output = Duty cycle of the boost converter (value between 0 and 1) % Enabled input = 1 to enable the MPPT controller % V input = PV array terminal voltage (V) % I input = PV array current (A) % Param input: Dinit = Param(1); %Initial value for D output Dmax = Param(2); %Maximum value for D Dmin = Param(3); %Minimum value for D deltaD = Param(4); %Increment value used to increase/decrease the duty cycle D % ( increasing D = decreasing Vref ) persistent Vold Pold Dold; dataType = 'double'; if isempty(Vold) Vold=0; Pold=0; Dold=Dinit; end P= V*I; dV= V - Vold; dP= P - Pold; if dP ~= 0 & Enabled ~=0 if dP < 0 if dV < 0 D = Dold - deltaD; else D = Dold + deltaD; end
alifadaei
2016-08-23
0
1
No more~