brushlessdca.m

来自「关于电机的.m程序」· M 代码 · 共 66 行

M
66
字号
%   BRUSHLESS DC DRIVE
clc,clear,close all


 inf(1)={'                    Brushless dc motor  '};
 inf(2)={' Rotor pm flux space vector  shown in green.'};   
 inf(3)={' Stator current space vector shown in red. '};
 inf(4)={' Torque is the cross product of these 2 vectors.'};
 inf(5)={' A movie can also be run under Windows Media Player '};
 inf(6)={' by activating the "brushlessmovie.avi" file.' }; 
  
 

h0=figure('units','normalized','Position',[.02 .54 .34 .31,],'Name','BRUSHLESS DC',...
    'numbertitle','off','ToolBar','none');

h1 = uicontrol('Parent',h0, ...
	'Units','normalized', ...
	'BackgroundColor',[0.76 0.76 0.76], ...
	'FontWeight','bold', ...
	'ForegroundColor',[0 0 0.6], ...
	'HorizontalAlignment','left', ...
	'Position',[0.05 0.5 0.9 0.4], ...
	'String',inf, ...
	'Style','text');

h1 = uicontrol('Parent',h0, ...
	'Units','normalized', ...
	'BackgroundColor',[0.76 0.76 0.76], ...
	'FontWeight','bold', ...
	'ForegroundColor',[0 0 0.6], ...
	'HorizontalAlignment','left', ...
	'Position',[0.05 0.3 .4 0.1], ...
	'String','Torque angle (rad) =', ...
	'Style','text');
h2 = uicontrol('Parent',h0, ...
	'Units','normalized', ...
	'BackgroundColor',[1 1 1], ...
	'Position',[0.45 .3 .25 .1], ...
	'String','pi/2', ...
	'Style','edit', ...
	'tag','delta', ...
   'TooltipString','torque angle');
h1 = uicontrol('Parent',h0, ...
   'Units','normalized', ...
   'Style','pushbutton',...
	'Callback','brushlessdcB', ...
	'FontSize',10, ...
    'ForegroundColor','b', ...
	'FontWeight','bold', ...
	'Position',[0.2 0.08 0.15 0.09], ...
	'String','Movie', ...
   'TooltipString','movie');
h1 = uicontrol('Parent',h0, ...
   'Units','normalized', ...
   'Style','pushbutton',...
	'Callback','close', ...
	'FontSize',10, ...
	'FontWeight','bold', ...
	'ForegroundColor','b', ...
	'Position',[0.7 0.08 0.15 0.09], ...
	'String','Close', ...
	'TooltipString','Close');
%

⌨️ 快捷键说明

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