A right circular cylinder of radius 1 and height 2 is submerged underneath a body of fluid. The cylinder's center is at ( x , y , z ) = ( 0 , 0 , − 3 ) and its central axis (perpendicular to its disk ends) points in the direction ( N x , N y , N z ) = ( 1 , 1 , 1 ) . The fluid has 1 unit of mass per unit volume, and the ambient gravitational acceleration is 1 0 in the − z direction. The fluid pressure is zero at z = 0 .
Let the force on the bottom disk face be F b , let the force on the top disk face be F t , and let the force on the cylinder side be F s . The combination of these three forces is the total force exerted by the fluid on the cylinder.
Determine the following ratio:
∣ F b ∣ + ∣ F t ∣ + ∣ F s ∣ ∣ F b ∣ ∣ F t ∣ ∣ F s ∣
Note: ∣ ⋅ ∣ denotes the magnitude of a vector
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Attached below is a heavily commented simulation code. I may update this solution with analytical steps later, but the comments should provide some explanation of the steps. Any line or figment of code followed by '%' is a comment for the reader.
It was satisfying to get this problem right on the first try. This is a good one
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
Nice job. For these, I like to explicitly calculate the forces for all sides as a check on my code and reasoning. Although it certainly is more efficient to calculate the forces for all but one side.
Log in to reply
This is precisely why I am so pleased with myself after solving this. Cause it is so easy to make a mistake here that if I got my first try wrong, I would have had to code up this additional check.
Problem Loading...
Note Loading...
Set Loading...
The force F t is equal to the pressure at the center of the top times the area.
The coordinates of the center of the top is ( 0 , 0 , − 3 ) + 3 1 ( 1 , 1 , 1 )
Therefore, the force on the top is F t = ( π ( 1 ) 2 ) ρ g ( 3 − 3 1 ) = 1 0 π ( 3 − 3 1 ) ) ( − 1 , − 1 , − 1 ) / 3
Similarly, the force on the bottom is F b = 1 0 π ( 3 + 3 1 ) ( 1 , 1 , 1 ) / 3
The total force on the cylinder is the weight of the displaced water (Archimedes' principle), and it is pointing upward.
F Total = ρ g V cylinder = 2 0 π ( 0 , 0 , 1 )
From this, we can find F s = F Total − F t − F b = ( 3 2 0 π , 3 2 0 π , 3 4 0 π )
Thus ∣ F t ∣ = 1 0 π ( 3 − 3 1 ) , ∣ F b ∣ = 1 0 π ( 3 + 3 1 ) , and ∣ F s ∣ = 2 0 π 3 2
And the required ratio follows from the above three figures.
∣ F t ∣ + ∣ F b ∣ + ∣ F s ∣ ∣ F t ∣ ∣ F b ∣ ∣ F s ∣ = 1 8 2 9 . 9 6