Sfmassignment2 PDF
Sfmassignment2 PDF
from 500 km to 1200 km. Plot your result and discuss. Include your code also.
Governing equation:
(
Graph:
Observations:
Inclination angle for any circular orbit altitudes is greater than 90 degrees.
This is expected as then only cos(i) will be negative to ensure orbit has an a
nodal regression rate which is equals to Earths orbital rotation speed
around the Sun.
Variation of circular orbit altitude with inclination angle is almost linear in
nature. Inclination angle increases with altitude.
Coding:
1
2
3
4
5
6
7
8
9
i=180*i/pi;
%converting radian to degrees
plot(i,h);
%plotting inclination angle vs altitude
xlabel('inclinations in degrees');
ylabel('altitudes in km');
title('Variation of sun synchronous orbit inclinations with
circular orbit altitudes ');
grid on;
inclination angle
10
11
12
Graphs:
Observations:
From graph2.1, it is clear that the total impulse required to be provided
decreases with intermediate orbital radius and variation is not linear in
nature but somewhat quadratic.
From graph 2.2, it is evident that period of impulse increases with
intermediate orbital radius and that too nature is quadratic to some extent.
This is obvious because as the size of orbit becomes larger, the time taken
to traverse along elliptic path will increase.
In practical situations, we want low velocity impulse as well as least period of
transfer. But from above graphs, both are inversely proportional to each other
hence, both low values are difficult to obtain. So, optimization design is used to
achieve the objective.
Sometimes, this can be achieved by minimizing
where
is impulse
velocity, P is period of transfer and m, n are constant. Accordingly, the
intermediate orbital radius is chosen.
Coding(2):
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
clc;
clear all;
h=[200000:1000:500000];
30
31
32
33