Numerous bodies orbiting loop help
Afficher commentaires plus anciens
I've recently finished making a simulation of one body orbiting a stationary one. However I would like to extend it to more than 2 bodies like 50 or more. I would like to use a for loop instead of copying bits of code 50 times over. However this is where I'm stuck. I have an idea of what to do but I don't know how to code it.Any help will be appreciated :)
This is my function code:
function [ de ] = orbit(t,y)
de = zeros(4,1);
%Position
xx=y(1);
yy=y(2);
%Radius
r=(xx.^2+yy.^2).^0.5;
%Constants
M = 4E30; % mass
G = 6.67384E-11;
%dX/dt
de(1) = y(3); %vx
de(3) = (-G.*M.*xx)/(r.^3); %ax
%dY/dt
de(2) = y(4); %vy
de(4) = -G.*M.*yy/(r.^3); %ay
end
and call code:
x0=149.513e9;
y0=0;
vx0=0;
vy0=29.78e3;
trange=[0:1:100]; %time range to be solved for
p0=[x0;y0;vx0;vy0]; %assemble an intial p
[tarray, parray] = ode45(@orbit,trange,p0);
x=parray(:,1);
y=parray(:,2);
plot(x,y)
xlabel('x');
ylabel('y');
title('y=f(x)');
4 commentaires
James Tursa
le 23 Mai 2015
Do you want to store all of the orbit results in one big matrix, or are you only interested in plotting the results (e.g., using hold on) as they are generated?
sweetdreams
le 23 Mai 2015
Walter Roberson
le 23 Mai 2015
Your posting is incomplete for the same reason that your previous exactly-the-same postings were incomplete: you do not indicate what you want to be looped over. For example should exactly the same equations be used each time but you want to use different initial positions? Or do the masses change?
sweetdreams
le 23 Mai 2015
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!