-
Notifications
You must be signed in to change notification settings - Fork 0
/
plotTrajZ.m
executable file
·233 lines (219 loc) · 17.9 KB
/
plotTrajZ.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
function plotTraj(name, step1, step2, step3, mission, scales)
%% Earth and Launch Site Inputs
g0 = 9.80665; %m/s^2 Local Gravity at S.L.
R_earth = 6378000; %m Radius of Earth
h0 = 7640; %m Scale Height (Wikipedia: https://en.wikipedia.org/wiki/Scale_height)
rho0 = 1.225; %kg/m^3 Air Density at S.L.
%% Initial Conditions
t0 = 0; %s %Initial Time
dt = 1; %s %Change in Time
gamma0 = pi/2; %rad %Initial Flight Path Angle
gamma_dot0 = 0; %rad/s %Initial Change in Flight Path Angle
drag0 = 0; %N %Initial Drag
x0 = 0; %m %Initial Downrange Distance
xdot0 = 0; %m/s %Initial Downrange Speed
h00 = 0; %m %Initial Vertical Distance (Launch Site Altitude)
hdot0 = 0; %m/s %Initial Vertical Speed
v0 = 0; %m/s %Initial Speed
q0 = 0; %Pa %Initial Dynamic Pressure
%% Simulation
for scale_factor_1 = scales(1)
for scale_factor_2 = scales(2)
for scale_factor_3 = scales(3)
for pitch_kick = scales(4)
for mleft_1 = scales(5)
for mleft_2 = scales(6)
for mleft_3 = scales(7)
%% Array Initialization
t = zeros(600, 1);
t(1) = t0;
gamma_dot = zeros(600, 1);
gamma_dot(1) = gamma_dot0;
gamma = zeros(600, 1);
gamma(1) = gamma0;
xdot = zeros(600, 1);
xdot(1) = xdot0;
x = zeros(600, 1);
x(1) = x0;
hdot = zeros(600, 1);
hdot(1) = hdot0;
h = zeros(600, 1);
h(1) = h00;
rho = zeros(600, 1);
rho(1) = rho0;
drag = zeros(600, 1);
drag(1) = drag0;
g = zeros(600, 1);
g(1) = g0;
v = zeros(600, 1);
v(1) = v0;
q = zeros(600, 1);
q(1) = q0;
%% LV Configuration Data
stage1_Cd = step1(1); %Stage 1 Coefficient of Drag
stage1_Radius = step1(2); %m %Stage 1 Radius
stage1_mi = step1(3)+step2(3)+step3(3); %kg %Stage 1 Initial Mass (Stage l Struct, Stage 1 Fuel, Stage 2 Struct, Stage 2 Fuel)
stage1_S = pi*stage1_Radius^2; %m^2 %Stage 1 Cross-Sectional Area
stage1_Thrust = scale_factor_1*step1(5); %N %Stage 1 Thrust
stage1_Isp = step1(6); %s %Stage 1 Isp
stage1_mdot = stage1_Thrust/(stage1_Isp*g0); %kg/s %Stage 1 Mass Flow
stage1_mf = step1(4)+step2(3)+step3(3); %kg %Stage 1 Final Mass (Stage 1 Struct, Stage 2 Fuel, Stage 2 Struct)
stage2_Cd = step2(1); %Stage 2 Coefficient of Drag
stage2_Radius = step2(2); %m %Stage 2 Radius
stage2_mi = step2(3)+step3(3); %kg %Stage 2 Initial Mass (Stage l Struct, Stage 1 Fuel, Stage 2 Struct, Stage 2 Fuel)
stage2_mf = step2(4)+step3(3); %kg %Stage 2 Final Mass (Stage 1 Struct, Stage 2 Fuel, Stage 2 Struct)
stage2_S = pi*stage2_Radius^2; %m^2 %Stage 2 Cross-Sectional Area
stage2_Thrust = scale_factor_2*step2(5); %N %Stage 2 Thrust
stage2_Isp = step2(6); %s %Stage 2 Isp
stage2_mdot = stage2_Thrust/(stage2_Isp*g0); %kg/s %Stage 2 Mass Flow
stage3_Cd = step3(1); %Stage 3 Coefficient of Drag
stage3_Radius = step3(2); %m %Stage 3 Radius
stage3_mi = step3(3); %kg %Stage 3 Initial Mass (Stage l Struct, Stage 1 Fuel, Stage 2 Struct, Stage 2 Fuel)
stage3_mf = step3(4); %kg %Stage 3 Final Mass (Stage 1 Struct, Stage 2 Fuel, Stage 2 Struct)
stage3_S = pi*stage3_Radius^2; %m^2 %Stage 3 Cross-Sectional Area
stage3_Thrust = scale_factor_3*step3(5); %N %Stage 3 Thrust
stage3_Isp = step3(6); %s %Stage 3 Isp
stage3_mdot = 0; %kg/s %Stage 3 Mass Flow
a0 = (stage1_Thrust/stage1_mi) - g0*sin(gamma0); %m/s^2 %Initial Acceleration
a = zeros(600, 1);
a(1) = a0;
m = zeros(600, 1);
m(1) = stage1_mi;
count = 1; %Begin Count Here
while gamma(count) > deg2rad(1)
t(count+1) = t(count)+1;
if m(count) > stage1_mf+(mleft_1*(stage1_mi-stage1_mf))%The Order of calculating these terms are important
v(count+1) = v(count) + a(count)*dt;
m(count+1) = m(count) - stage1_mdot*dt;
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
if h(count) >= 400 && h(count) <= 600
gamma(count+1) = -pitch_kick + gamma(count) + gamma_dot(count)*dt;
else
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
end
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = .5*stage1_Cd*stage1_S*rho(count+1)*v(count+1)^2;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1)) - (v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = stage1_Thrust/m(count+1) - drag(count+1)/m(count+1) - (g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = drag(count+1)/(stage1_Cd*stage1_S);
elseif m(count) > stage2_mi && m(count) <= stage1_mf+(mleft_1*(stage1_mi-stage1_mf))
ttemp = t(count);
for j = 1:5
v(count+1) = v(count) + a(count)*dt;
m(count+1) = stage2_mi;
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = .5*stage2_Cd*stage2_S*rho(count+1)*v(count+1)^2;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1))-(v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = (-drag(count+1))/m(count+1) - (g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = drag(count)/(stage2_Cd*stage2_S);
t(count+1) = ttemp + j;
end
elseif m(count) > stage2_mf+(mleft_2*(stage2_mi-stage2_mf))
v(count+1) = v(count) + a(count)*dt;
m(count+1) = m(count) - stage2_mdot*dt;
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = .5*stage2_Cd*stage2_S*rho(count+1)*v(count+1)^2;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1))-(v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = (stage2_Thrust-drag(count+1))/m(count+1) - (g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = drag(count+1)/(stage2_Cd*stage2_S);
elseif m(count) > stage3_mi && m(count) <= stage2_mf && stage3_mi ~= 0
ttemp = t(count);
for j = 1:5
v(count+1) = v(count) + a(count)*dt;
m(count+1) = stage3_mi;
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = .5*stage3_Cd*stage3_S*rho(count+1)*v(count+1)^2;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1))-(v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = (-drag(count+1))/m(count+1) - (g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = drag(count+1)/(stage3_Cd*stage3_S);
t(count+1) = ttemp + j;
end
elseif m(count) > stage3_mf+(mleft_3*(stage3_mi-stage3_mf)) && stage3_mi ~= 0
v(count+1) = v(count) + a(count)*dt;
m(count+1) = m(count) - stage3_mdot*dt;
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = .5*stage3_Cd*stage3_S*rho(count+1)*v(count+1)^2;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1))-(v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = (stage3_Thrust-drag(count+1))/m(count+1) - (g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = drag(count)/(stage3_Cd*stage3_S);
else
v(count+1) = v(count) + a(count)*dt;
m(count+1) = m(count);
h(count+1) = h(count) + hdot(count)*dt;
x(count+1) = x(count) + xdot(count)*dt;
gamma(count+1) = gamma(count) + gamma_dot(count)*dt;
rho(count+1) = rho0*exp(-h(count+1)/h0);
drag(count+1) = 0;
g(count+1) = g0/((1+(h(count+1)/R_earth))^2);
gamma_dot(count+1) = -((g(count+1)/v(count+1))-(v(count+1)/(R_earth+h(count+1))))*cos(gamma(count+1));
a(count+1) = -(g(count+1)*sin(gamma(count+1)));
xdot(count+1) = v(count+1)*cos(gamma(count+1))*R_earth/(R_earth+h(count+1));
hdot(count+1) = v(count+1)*sin(gamma(count+1));
q(count+1) = 0;
end
if count >= 3000
break
else
count = count + 1;
end
end
yyaxis left
plot(t(1:count), h(1:count)/1000, t(1:count), rad2deg(gamma(1:count)), t(1:count), a(1:count), '-.')
xlabel('Time (s)')
ylabel('Altitude (km), Flight Path Angle (Deg), Acceleration (m/s^2)')
ylim([0 inf])
yyaxis right
plot(t(1:count), v(1:count), t(1:count), q(1:count)/10)
ylabel('Velocity (m/s), dynamic pressure (Pa/10)')
legend('altitude', 'gamma', 'acceleration', 'velocity', 'dynamic pressure', 'Location', 'northwest')
title(strcat(name, {' '}, string(mission), ' Trajectory'))
ylim([0 inf])
grid on
[~, ind] = max(q);
xline(t(ind))
if mission == 2 && strcmp(name, 'Latona')
T = {'Time (s)', 'Thrust (N)', 'Max-q (Pa)', 'Velocity (m/s)', 'Mass Burned (kg)', 'Stap-on Booster Masses (kg)', 'Main Booster Mass (kg)', 'Height (m)', 'Gamma (rad)', 'Air Density (kg/m^3)';...
t(ind), stage1_Thrust, q(ind), v(ind), m(1) - m(ind), stage1_Booster_mass_indv(ind), stage1_Main_mass(ind), h(ind), gamma(ind), rho(ind)};
else
T = {'Time (s)', 'Thrust (N)', 'Max-q (Pa)', 'Velocity (m/s)', 'Mass Burned (kg)', 'Height (m)', 'Gamma (rad)', 'Air Density (kg/m^3)';...
t(ind), stage1_Thrust, q(ind), v(ind), m(1) - m(ind), h(ind), gamma(ind), rho(ind)};
end
writecell(T, "LVMasses\Max Q Conditions" + "_" + string(name) + '-' + mission + ".csv")
name = name + " " + string(mission);
saveas(figure(1), strcat(name, '.png'))
end
end
end
end
end
end
end
end