1. Trang chủ
  2. » Luận Văn - Báo Cáo

tiểu luận Giải tích máy điện nâng cao

22 8 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 22
Dung lượng 2,65 MB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

Trình tự thực hiện và nội dung mô phỏnga Trình tự thực hiện - Xây dựng các khối Khối có được khi khai báo trong file m4.m và run file m4.m.. Figure 6.40 Steady-state characteristics of ¼

Trang 1

BỘ CÔNG THƯƠNG

TRƯỜNG ĐH CÔNG NGHIỆP THỰC PHẨM TP HCM

BÀI TIỂU LUẬN:

GIẢI TÍCH MÁY ĐIỆN NÂNG CAO

GVHD: TS Phan Xuân Lễ Thực hiện: Lê Thành Trí

TP Hồ Chí Minh, năm 2019

Trang 2

a) Determine the speed of the wind turbine:

b) Determine the voltage at the terminals of the induction machine:

The equivalent circuit of the induction machine:

Z

460 3

Trang 4

Figure 2.11 Simulation of series resonant circuit

Vdc = 100; % magnitude of ac voltage = Vdc Volts

iLo = 0; % initial value of inductor current

vCo = 0; % initial voltage of capacitor voltage

tf = 10*(2*pi/wo); % filter time constant

tstop = 25e-4; % stop time for simulation

% set up time and output arrays of repeating sequencefor Pref

Pref_time = [ 0 6e-4 11e-4 11e-4 18e-4 18e-4 tstop ];Pref_value = [ 0 600 600 300 300 600 600 ];

% determine steadystate characteristics of RLC

circuit

we = (0.5*wo: 0.01*wo: 1.5*wo);% set up freq range

wind = 0 % index for w loop

for w = we; % w for loop to compute admittance

Trang 6

Figure 2.13 Responses to changes in the reference power commandKết quả mô phỏng từ Simulink:

Trang 7

3 Trình tự thực hiện và nội dung mô phỏng

a) Trình tự thực hiện

- Xây dựng các khối

Khối có được khi khai báo trong file m4.m và run file m4.m

- Kết nối các khối theo figure 2.11

Ứng dụng simulink trên matlab xây dựng mô phỏng theo Fugure 6.39

1 Xây dựng mô hình Figure 6.39

Trang 8

File m6.m

% M file for Project 6 on single-phase induction

motor

% in Chapter 6 It sets the machine parameters and

% also plots the simulated results when used in

conjunction

% with SIMULINK file s6.m

clear all % clear workspace

% select machine parameter file to enter into Matlab workspace

disp('Enter filename of machine parameter file

without m')

disp('Example: psph')

setX = input('Input machine parameter filename >

eval(setX); % evaluate MATLAB command

% Calculation of torque speed curve

Vqs = Vrated + j*0; % rms phasor voltage of main wdg

Vpds = Nq2Nd*(Vrated + j*0);% rms aux wdg voltage referred to main wdg

T = (1/sqrt(2))*[ 1 -j; 1 j ]; % transformation

V12 = T*[Vqs; Vpds];% transforming qsds to sequence

Trang 9

disp('Select with or without capacitor option')

opt_cap = menu('Machine type? ','No capacitor','With start capacitor only','With start and run capacitor')

if (opt_cap == 1) % Split-phase machine, no capacitor

disp(' Split-phase machine')

zpcstart = 0 +j*eps; % zcrun referred to main wdg

zpcrun = 0 +j*eps; % zcrun referred to main wdg

zC = zpcstart;

Capstart = 0; % set flag

Caprun = 0; % set flag

wrswbywb = we; % cutoff speed to disconnect start cpacitor

if (opt_cap == 2) % Capacitor-start machine

disp(' Capacitor-start machine')

zpcstart = (Nq2Nd^2)*zcstart; % zcrun referred to main wdg

zpcrun = 0 +j*eps; % zcrun referred to main wdg

zC = zpcstart;

Capstart = 1; % set flag

Caprun = 0; % set flag

wrswbywb = 0.75; % rotor speed to disconnect start cpacitor

if (opt_cap == 3) % Capacitor-run machine

disp(' Capacitor-run machine')

zpcstart = (Nq2Nd^2)*zcstart; % zcrun referred to main wdg

zpcrun = (Nq2Nd^2)*zcrun; % zcrun referred to main wdg

zC = zpcrun;

Capstart = 0; % set flag

Caprun = 1; % set flag

wrswbywb = 0.75; % rotor speed to changeover from start to run

Trang 10

Rcstart = real(zpcstart); % referred resistance of start capacitor

Xcstart = imag(zpcstart); % referred reactance of runcapacitor

Cstart = -1/(wb*Xcstart); % referred capacitance of start capacitor

% network parameters of positive and negative

sequence circuit

zqs = rqs + j*xlqs; % self impedance of main wdg

zcross = 0.5*(rpds + real(zC) - rqs) + j*0.5*(xplds +imag(zC) - xlqs);

%set up vector of slip values

s = (1:-0.02:0);

N=length(s);

for n=1:N

s1 = s(n); % positive sequence slip

s2 = 2-s(n); % negative sequence slip

wr(n)=2*we*(1-s1)/P; % rotor speed in mechanical rad/sec

if abs(s1) < eps; s1 = eps; end;

Trang 11

xlabel('Rotor speed in rad/sec')

ylabel('Developed power in Watts')

xlabel('Rotor speed in rad/sec')

ylabel('Iqs and Ipds angle in degree')

hold off

disp('Displaying steady-state characteristics ')fprintf('Referred capacitor impedance is %.4g %.4gj Ohms\n', real(zC), imag(zC))

disp('type ''return'' to proceed on with

simulation');

keyboard

% Transfer to keyboard for simulation

disp('Select loading during run up')

opt_load = menu('Loading? ','No-load','With step changes in loading')

Trang 12

% setting all initial conditions in SIMULINK

wrbywbo = 0; % initial pu rotor speed

% set up repeating sequence Tmech signal

if (opt_load == 2) % Step changes in loading

tstop = 2.5; % simulation run time

tmech_time =[0 1.5 1.5 1.75 1.75 2.0 2.0 2.25 2.25 2.5];

tmech_value =[0 0 -Tb -Tb -Tb/2 -Tb/2 -Tb -Tb 0 0 ];

end

disp('Set for simulation to start from standstill and')

disp('load cycling at fixed frequency,')

disp('return for plots after simulation by typing '' return''');

Trang 13

disp('Save plots in Figs 1, and 2')

disp('before typing return to exit');

Prated = 186.5; % 1/4 hp output power in W

Vrated = 110; % rated rms voltage in V

P = 4; % number of poles

frated = 60; % rated frequency in Hz

wb = 2*pi*frated;% base electrical frequency

Trang 14

Vm = Vrated*sqrt(2); % magnitude of phase voltage

Vb = Vm; % base rms voltage

Tfactor = P/(2*wb); % torque expression coefficient

% 1/4 hp, 4 pole, 110 volts capacitor start,

capacitor run,

% single-phase induction motor parameters in

engineering units from

%

% Krause, P C , "Simulation of Unsymmetrical

Induction

% Machinery," IEEE Trans on Power Apparatus,

% Vol.PAS-84, No.11, November 1965

xlds = 3.22; % aux leakage reactance

rpds=(Nq2Nd^2)*rds;% aux wdg resistance referred to main wdg

xplds=(Nq2Nd^2)*xlds;% aux wdg leakage reactance

J = 1.46e-2; % rotor inertia in kg m2

H = J*wbm*wbm/(2*Sb); % rotor inertia constant in secs

Domega = 0; % rotor damping coefficent

zcstart = 3 - j*14.5; % starting capacitor in Ohms

zcrun = 9 - j*172; % running capacitor in Ohms

wrsw = 0.75*wb; % rotor speed to change over from start to run in rev/min

2 Kết quả mô phỏng

Trang 15

Figure 6.40 Steady-state characteristics of ¼-hp split-phase moto

Figure 6.41 Startup and load response of ¼-hp split-phase moto

Trang 16

Figure 6.42 Startup and load response of ¼-hp split-phase moto

Trang 17

Figure 6.43 Steady-state characteristics of ¼-hp capacitor-start motor

Figure 6.44 Startup and load response of ¼-hp capacitor-start motor

Trang 18

Figure 6.45 Startup and load response of ¼-hp capacitor-start motor

Figure 6.46 Steady-state characteristics of ¼-hp capacitor-run motor

Trang 19

Figure 6.47 Startup and load response of ¼-hp capacitor- run motor

Figure 6.48 Startup and load response of ¼-hp capacitor- run motor

Trang 20

3 Trình tự thực hiện và nội dung mô phỏng

a) Trình tự thực hiện

- Xây dựng các khối ExtConn, Qaxis, Daxis, Rotor Khối ExtConn

Khối Qaxis

Trang 21

b) Nội dung mô phỏng

Run ¼-hp split-phase moto

- Run file m6.m, cửa sổ Command Window thông báo :Enter filename of machine parameter file without mExample: psph

Trang 22

Input machine parameter filename >

- Nhập psph, chọn No cacpacitor trong Machine type sẽ được figure 4.60

- Cửa sổ Command Window, nhập K>> return

Run file s6.m, run file simulink, run again file m6.m sẽ được figure 4.61 và figure 4.62

Run ¼-hp capacitor-start motor

- Run file m6.m, cửa sổ Command Window thông báo :

Enter filename of machine parameter file without m

Example: psph

Input machine parameter filename >

- Nhập psph, chọn With start cacpacitor only trong Machine type sẽ được figure 4.63

- Cửa sổ Command Window, nhập K>> return

Run file s6.m, run file simulink, run again file m6.m sẽ được figure 4.64 và figure 4.65

Run ¼-hp capacitor- run motor

- Run file m6.m, cửa sổ Command Window thông báo :

Enter filename of machine parameter file without m

Example: psph

Input machine parameter filename >

- Nhập psph, chọn With start and run cacpacitor trong Machine type sẽ được figure 4.66

- Cửa sổ Command Window, nhập K>> return

Run file s6.m, run file simulink, run again file m6.m sẽ được figure 4.67 và figure 4.68

Ngày đăng: 12/05/2021, 16:30

TỪ KHÓA LIÊN QUAN

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN

🧩 Sản phẩm bạn có thể quan tâm

w