summaryrefslogtreecommitdiff
path: root/998/CH29/EX29.63/Ex63.sce
diff options
context:
space:
mode:
Diffstat (limited to '998/CH29/EX29.63/Ex63.sce')
-rwxr-xr-x998/CH29/EX29.63/Ex63.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/998/CH29/EX29.63/Ex63.sce b/998/CH29/EX29.63/Ex63.sce
new file mode 100755
index 000000000..d8cefbe3c
--- /dev/null
+++ b/998/CH29/EX29.63/Ex63.sce
@@ -0,0 +1,14 @@
+//Ex:63
+clc;
+clear;
+close;
+h=35800;//height in km
+r=6364;//earth's radius in km
+r_o=r+h;//orbital radius in km
+i=2;//angle of inclination in degree
+w_m=0.0175;
+y_m=i;//max latitude deviation
+d_m=r_o*i*(3.14/180);//max displacement due to latitude deviation in km
+D_m=d_m*(w_m/y_m);//max displacement due to longitude deviation in km
+printf("max displacement due to latitude deviation=%d km",d_m);
+printf("\n max displacement due to longitude deviation=%f km",D_m); \ No newline at end of file