diff options
Diffstat (limited to '3788/CH2/EX2.1.1')
-rw-r--r-- | 3788/CH2/EX2.1.1/Ex2_1_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3788/CH2/EX2.1.1/Ex2_1_1.sce b/3788/CH2/EX2.1.1/Ex2_1_1.sce new file mode 100644 index 000000000..3d3283b7f --- /dev/null +++ b/3788/CH2/EX2.1.1/Ex2_1_1.sce @@ -0,0 +1,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)
+
|