Sep 2019 CSAT mock test, Physics I #20

As shown in the picture, an L \rm L -shaped container has a hole with area 3 S , 3S, and contains liquid with density ρ . \rho. Two objects A , B \rm A,~B are at rest, connected with a string, and their bottom surface touches the liquid. B \rm B is closing off the hole with area 3 S . 3S. The same liquid is slowly poured into the open part of the container, and the moment the height difference gets bigger than h , h, B \rm B moves, letting the liquid out of the hole. A \rm A has cross section S , S, height H , H, and density 4 5 ρ , \dfrac{4}{5}\rho, and the mass of B \rm B is twice as that of A . \rm A.

Find 60 h H . \dfrac{60h}{H}.


Assumptions

  • B \rm B does not rotate, and moves only vertically.

  • Atmospheric pressure, the mass of the string, and all friction are negligible.


The answer is 24.

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.

2 solutions

Mass of the object A is m A = 4 5 ρ S H m_A=\dfrac{4}{5}\rho SH and of the object B is twice this. Then force acting on A in equilibrium is m A g h ρ g S m_Ag-h\rho gS and on B at that instant is m B g 3 h ρ g S m_Bg-3h\rho gS . Hence using force balance we get h H = 2 5 \dfrac{h}{H}=\dfrac{2}{5} . So 60 h H = 24 \dfrac{60h}{H}=\boxed{24}

Interestingly, when I simulate the rising fluid level, the normal reaction force at the hole goes to zero before the string tension does.

Steven Chase - 1 year, 8 months ago
Steven Chase
Sep 18, 2019

For a given height ( h ) (h) , there are two unknown values: The string tension ( T ) (T) and the normal reaction force ( N ) (N) at the edge of the hole upon which block B B rests. My process is therefore:

1) Sweep the height ( h ) (h) of the fluid upwards from zero
2) For each height value, calculate T T and N N based on force-balance equations
3) Continue sweeping until either T T or N N becomes negative. When one of them becomes negative, that means that the physical configuration has to change (ex: block B lifting up)

Code below (with extensive comments)

 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
import math

H = 1.0     # Height of block A
rho = 1.7   # Density of reservoir fluid
S = 0.4     # Base area of block A
g = 10.0    # gravitational acceleration

rhoA = 0.8*rho  # density of block A

mA = S*H*rhoA  # mass of block A
mB = 2.0*mA    # mass of block B

###########################

dh = 10.0**(-6.0)  # infinitesimal change in height "h"

h = dh

N = 0.01  # Junk initialization numbers for normal force and tension
T = 0.01

while (N >= 0.0) and (T >= 0.0):  # run while N and T are both positive

    # mA*g = T + S*h*rho*g       # Force balance for block A

    T = mA*g - S*h*rho*g        # Solve this for the string tension

    # mB*g = T + N + rho*g*h*(3.0*S)  # Force balance for block B

    N = mB*g - T - rho*g*h*(3.0*S)   # Solve this for the normal force

    h = h + dh


###########################

print h
print (60.0*h)/H
#0.400001999996
#24.0001199998

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...