⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 m1.m

📁 Gives all the matlab codes for dynamic simulation of electric machinery by Chee-Mun Ong
💻 M
字号:
% M-file for Project 1 on shunt generator in Chapter 8
% loads the following machine parameters of dc machine
% 
clear all % clear workspace
%
Prated = 2*746;  
Vrated = 125;
Iarated = 16;
wmrated = 1750*(2*pi)/60; 
Trated = Prated/wmrated;
Ra = 0.24;
Rf = 111;
Rrh = 25; % ext field rheostat resistance
Laq =  0.018; 
Lf = 10;
Rload = 1e6 % load resistance across armature terminals 
J = 0.8; % rotor inertia in kgm2

%Entering Magnetization curve data:

wmo = 2000*(2*pi)/60; % speed at which mag. curve data was taken
% enter voltage values of mag. curve
SHVP1 = [7.5 12 20 24 32 40 48 59 66 74 86 97 102.5 ...
107.5 112 117 121 125 130 135 140 143 146 152 158 164 168 172 175];

% enter main field current values of mag. curve 
SHIP1 = [0 0.05 0.1 0.13 0.18 0.22 0.26 0.32 0.36 0.4 0.47 0.54 ...
 0.575 0.61 0.64 0.68 0.71 0.74 0.78 0.82 0.86 0.9 0.93 1.0 1.1 ...
 1.2 1.3 1.4 1.5];

plot(SHIP1,SHVP1); % plot mag curve measured at wmo
Ia = [ -40:5:40]; % set up linear array of armature current   
Iar = 0.04*abs(atan(Ia)) + 0.0001*Ia.^2;

disp('Simulation condition set up by m1.m')
disp('Perform simulation and type return for plots')
keyboard
clf;
subplot(3,1,1)
plot(y(:,1),y(:,2),'-')
ylabel('If in A')
title('Field current')
subplot(3,1,2)
plot(y(:,1),y(:,3),'-')
ylabel('Ea in V')
title('Internal voltage Ea')
subplot(3,1,3)
plot(y(:,1),y(:,4),'-')
ylabel('Ia in A')
title('Armature current')
h2=figure;
subplot(3,1,1)
plot(y(:,1),y(:,5),'-')
ylabel('Torque Tem')
title('Developed torque')
subplot(3,1,2)
plot(y(:,1),y(:,6),'-')
ylabel('Va in V')
xlabel('Time in sec')
title('Armature terminal voltage')
disp('Save Figs 1 and 2 plots before typing return to exit')
keyboard
close (h2) % close second figure window

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -