summaryrefslogtreecommitdiff
path: root/2219/CH11/EX11.17/Ex11_17.sce
blob: 9c65af80f284820d0bb7454e9467f5fa7a55bc0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Chapter 11 example 17
//------------------------------------------------------------------------------
clc;
clear;
// Given data
r       = 42164;        // orbital radius in kms
Dlamda_max = 500;       // max displacement due to latitude deviation

// Calculations
i   = Dlamda_max/r;     // angle of inclination in radians
i_deg = i*180/%pi       // rad to deg conv

// Output
mprintf('Angle of inclination = %3.2f°',i_deg);
//------------------------------------------------------------------------------