主要包含输出转速,感应转矩,磁场变化,感应电压,感应电流等6个参数变化曲线图!!
完整程序如下:
clc;
clear;
close all;
warning off;
addpath(genpath(pwd));
%電機參數設定
r_stat_in=15;%stator內圈半徑
r_stat_out=17;%stator外圈半徑
width_rot=2;%rotor細部寬度
length_rot=14;%rotor細部長度
r=1.5;%rotor半圓半徑
x=r*cosd(0:1:180);%rotor半圓的x軸分量
y=r*sind(0:1:180);%rotor半圓的y軸分量
r_rot=length_rot/2+r;%rotor半徑
theta=0;%rotor初始角度
%stator設定
Bs=12;%stator磁場純量
ang_freq=2*pi;%角頻率(設定定部磁場轉一圈一秒)
dt=0.01%時間片段長度
t=0:dt:25;%總時間長度
%設定stator座標
xy_stat_in=[r_stat_in*cosd(0:4:360);r_stat_in*sind(0:4:360)];%stator內圈xy座標
xy_stat_out=[r_stat_out*cosd(0:4:3