diff options
Diffstat (limited to '1466/CH6/EX6.1/6_1.sce')
-rwxr-xr-x | 1466/CH6/EX6.1/6_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1466/CH6/EX6.1/6_1.sce b/1466/CH6/EX6.1/6_1.sce new file mode 100755 index 000000000..26e6cd065 --- /dev/null +++ b/1466/CH6/EX6.1/6_1.sce @@ -0,0 +1,15 @@ +
+clc
+//initialisation of variables
+w= 62.4 //Lbsec/ft^3
+d= 2 //in
+V= 100 //ft/sec
+g= 32.2 //ft/sec^2
+a= 60 //degrees
+//CALCULATIONS
+W= w*(%pi/4)*(d/12)^2*V
+F= W*V/g
+N= W*V*sind(a)/g
+//RESULTS
+printf (' Normalforce on the plate when the jet is normal = %.1f Lb',F)
+printf ('.\n Normalforce on the plate when the jet is inclines at 60 degrees = %.f Lb',N)
|