diff options
Diffstat (limited to '3814/CH2/EX2.14/Ex2_14.sce')
-rw-r--r-- | 3814/CH2/EX2.14/Ex2_14.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3814/CH2/EX2.14/Ex2_14.sce b/3814/CH2/EX2.14/Ex2_14.sce new file mode 100644 index 000000000..773925ec0 --- /dev/null +++ b/3814/CH2/EX2.14/Ex2_14.sce @@ -0,0 +1,14 @@ +// mass flow rate is calculated on velocity
+clc
+vr1=5 //m/s
+p=1000
+A=0.02*0.4
+m=vr1*p*A
+mprintf('m= pAVr1= %d kg/s',m)
+vrlx=5
+vr2=5
+Fx=m*(vrlx-vr2*cosd(30))
+mprintf('\n Fx= %f N',Fx)
+vly=0// given vrly=0
+Fy=-m*vr2*sind(30)
+mprintf('\n Fy= %f N',Fy)
|