diff options
Diffstat (limited to '3792/CH3/EX3.9/Ex3_9.sce')
-rw-r--r-- | 3792/CH3/EX3.9/Ex3_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3792/CH3/EX3.9/Ex3_9.sce b/3792/CH3/EX3.9/Ex3_9.sce new file mode 100644 index 000000000..38136a4c9 --- /dev/null +++ b/3792/CH3/EX3.9/Ex3_9.sce @@ -0,0 +1,11 @@ +// SAMPLE PROBLEM 3/9
+clc;clear;funcprot(0);
+// Given data
+h=200;// The altitude in mi
+R=3959;// mi
+g=32.234;// The acceleration due to gravity in ft/sec^2
+
+// Calculation
+// SigmaF_n=ma_n;
+v=(R*5280)*sqrt(g/((R+h)*5280));// ft/sec
+printf("\nThe velocity required for the spacecraft,v=%5.0f ft/sec",v);
|