summaryrefslogtreecommitdiff
path: root/680/CH4/EX4.01/4_01.sce
blob: 668a51aeed4fe35d00f8c30999b3f746fc5efbf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Problem 4.01:

//initializing the variables:
mdt = 0.15; // in kg/sec
v = 420; // in m/sec

//calculation:
vxin = v
vxout = 0
vyin = 0
vyout = v
Fxgc = mdt*(vxout - vxin)
Fygc = mdt*(vyout - vyin)

printf("\n\nResult\n\n")
printf("\n The x-direction supporting force is %.1f N and The y-direction supporting force is %.1f N",Fxgc,Fygc)