summaryrefslogtreecommitdiff
path: root/3788/CH2/EX2.1.1/Ex2_1_1.sce
blob: 3d3283b7f09e232c6f1e20668590dd6f757d7551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 2.1.1
// Calculate the Orbital radius for a Geostationary Satellite

//Variable Declaration
T=86164.09  // Time Period for 1 sidereal day in Sec

//Calculation
u=(3.986004418*10^5)
a=((T^2*u)/(4*%pi^2))^(1/3)

//Result
printf("The Radius of the circular orbit with 1 day period is : %d km",a)