Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
clear
%help see the data folders
mfilename('fullpath');
[PATH, NAME, EXT] = fileparts(mfilename('fullpath'));
cd(PATH);
cd;
%Iterate over combinations of things.
V = 450; %m^3
Diameters = [9.73,10,11]; %diameter values to be tested (m)
es = [10 15 20]; %half-angle values (degrees)
%iterate over half angles
for e=es
theta = 20;
%iterate over Base Diameters
for D_0 = Diameters
EarthLaunch(theta, e, D_0, V) %run sim
end
end