summaryrefslogtreecommitdiff
path: root/629/CH6/EX6.10
diff options
context:
space:
mode:
Diffstat (limited to '629/CH6/EX6.10')
-rw-r--r--629/CH6/EX6.10/ex6_10.txt3
-rw-r--r--629/CH6/EX6.10/example6_10.sce10
2 files changed, 13 insertions, 0 deletions
diff --git a/629/CH6/EX6.10/ex6_10.txt b/629/CH6/EX6.10/ex6_10.txt
new file mode 100644
index 000000000..84df14937
--- /dev/null
+++ b/629/CH6/EX6.10/ex6_10.txt
@@ -0,0 +1,3 @@
+
+ The frictional force acting on the block = 313 N.
+ \ No newline at end of file
diff --git a/629/CH6/EX6.10/example6_10.sce b/629/CH6/EX6.10/example6_10.sce
new file mode 100644
index 000000000..1d9a468f5
--- /dev/null
+++ b/629/CH6/EX6.10/example6_10.sce
@@ -0,0 +1,10 @@
+clear
+clc
+//Example 6.10 JET IMPINGING ON MOVING BLOCK
+A=5*10^-4; //area[m^2]
+rho=1000; //density[kg/m^3]
+vj=50; //[m/s]
+vb=25; //[m/s]
+//Force on cart
+F=rho*A*(vj-vb)^2 //[N]
+printf("\n The frictional force acting on the block = %.f N.\n",F) \ No newline at end of file