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

📄 simple_orbit.m

📁 Dispersion de Rutherford en Matlab
💻 M
字号:
%simple_orbit.m - plots the orbit for a zero force case, u=1.5AU*sin(theta)=1/r
th=[0.35:0.01:pi-0.35];% angle range
r=1.5*csc(th);         % distance versus angle
subplot(1,2,1);plot(th,r);
axis([0 pi 0 5]),
xlabel('\theta (rad)','FontSize',14)
ylabel('r(\theta) (AU)','FontSize',14);
title('r(\theta) in the absence of a force','FontSize',14)
subplot(1,2,2);polar(th,r,'r')
title('Zero Force Straight Line Motion','FontSize',14)
xlabel('Distance in AU','FontSize',14)

⌨️ 快捷键说明

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