Plotting a parker spiral?

3 次查看(过去 30 天)
Hello,
Does anyone possibly know how to plot a Parker (Archimedean) spiral in reference to heliospheric current sheets studied in space physics. If so, could anyone point me in the right direction of where to begin plotting it on Matlab?
Thank you!

采纳的回答

Image Analyst
Image Analyst 2016-11-21
Do you have an equation for it? Maybe you should look at quiver()? Or check out the MATLAB Plot Gallery
  3 个评论
Image Analyst
Image Analyst 2016-11-21
Try this:
t = 1 : 1000; % A thousand points.
u = 0.10;
r0 = 50;
% Compute radius as a function of time.
r = r0 + u * t;
omega = .060
phi0 = 3
phi = -omega*t+phi0
x = r .* cos(phi);
y = r .* sin(phi);
plot(x, y, 'LineWidth', 2);
grid on;
Zoe Zontos
Zoe Zontos 2016-11-21
Thank you so much!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 App Building 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by