t=0:0.01:6*pi
v0x=1
v0y=1
a1=1
y1=v0y*t+0.5*a1*t.*t
x1= v0x*t
a2=cos(t)
y2=v0y*t+0.5*a2.*t.*t
x2= v0x*t
subplot(2,2,3)
plot(x1,y1,'g',x2,y2,'r')
grid on
title('叠加')
legend('匀强电场','周期变化电场',3)
x3=t
y3=cos(t)
z3=sin(t)
for i=1:length(t)
subplot(2,2,1)
plot(x1(1:i),y1(1:i))
axis([0,8,0,30])
grid on
hold on
subplot(2,2,1)
plot(x1(i),y1(i),'r.','markersize',20)
title('匀强电场')
grid on
hold off
subplot(2,2,2)
plot(x2(1:i),y2(1:i))
axis([0,8,-30,30])
title('周期变化电场')
grid on
hold on
subplot(2,2,2)
plot(x2(i),y2(i),'r.','markersize',20)
grid on
hold off
subplot(2,2,4)
plot3(x3(1:i),y3(1:i),z3(1:i))
hold on
grid on
axis([0,10,-1,1,-1,1])
title('匀强电场和磁场')
subplot(2,2,4)
plot3(x3(i),y3(i),z3(i),'r.','markersize',20)
view(-100,500)
hold off
M(i)=getframe
end
movie(M,1)
方法/步骤如下
1、首先打开matlab软件,点击Simulink按钮打开Simulink仿真环境(需要一点时间),如下图所示:
2、打开Simulink后,主界面如下所示:
3、点击Simulink界面中的File/New/Model,如下图所示建立并保存模型文件:
4、在Simulink的左侧资源栏拖拽控件到model文件内并设置连线,完成后如下图所示:
5、检查系统框图无误后点击运行按钮(如下图箭头所指),大概几秒后仿真结束:
6、双击图中的示波器就可以查看系统仿真输出,如下图所示:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)