blob: 45911af54e24cfd186739b4e41bb7d3b023ae7f6 (
plain)
1
2
3
4
5
6
7
8
9
|
//Ex:64
clc;
clear;
close;
u=39.8*10^13;
r=42164*10^3;
i=2*(3.14/180);//angle of inclination in degree
a=(sqrt(u/r))*tan(i);//the magnitude of velocity impulse in m/s
printf("The magnitude of velocity impulse=%d m/s",a);
|