diff options
Diffstat (limited to '998/CH29/EX29.55/Ex55.sce')
-rwxr-xr-x | 998/CH29/EX29.55/Ex55.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/998/CH29/EX29.55/Ex55.sce b/998/CH29/EX29.55/Ex55.sce new file mode 100755 index 000000000..9c8474445 --- /dev/null +++ b/998/CH29/EX29.55/Ex55.sce @@ -0,0 +1,13 @@ +//Ex:55
+clc;
+clear;
+close;
+a=50000*1000/2;//semi major axis in km
+G=6.67*10^(-11);//Gravitation const in N-m^2/kg^2
+m=5.98*10^24;//mass of earth in kg
+u=G*m;
+st=sqrt((a^3)/u);
+s_t=6.25*10^3;
+t=2*(3.14)*s_t;
+printf("The period of a satellite=%f s",t);
+printf("\n The period of a satellite is 10 hours 54 minutes");
\ No newline at end of file |