How to develop a method to know if my box can pass around a corner?

2.1k Views Asked by At

[EDIT2]

Following the help I got in the comments + answers I found

$$\begin{align} a &\leq \sqrt{H^2-b^2} \\[4pt] a &\leq \sqrt{h^2-b^2} \end{align}$$

as the answer with this process https://i.stack.imgur.com/Z6mwd.jpg

I need to develop a method to know if the box can pass or not enter image description here]

I need to find a method to know if I can turn my box to keep moving in the hallways, when I give $a$, $b$, $h$ and $H$ (in meter) can show if it will pass or not.

For example $a=3, b=1.5, h=2.1, H=2.1$

I'm really stuck with that and I though that someone here could help me (if you want to do it with voice call or anything I can give you my Discord in private)

I tried to draw a isosceles triangle with the side a of my box to calculate his height of the triangle but I'm stuck with the $h$ and $H$

2

There are 2 best solutions below

5
On BEST ANSWER

The problem can be solved if you think what is the condition that the box is just stuck. That means that the box cannot be translated or rotated. Say you have the pivot point $P$ next to the $90^\circ$ label. Your upper corner of the box is just touching the top side of hallway with the width $h$. Then you cannot translate any longer in the upper direction. Similarly, the left most corner will touch the left wall of hallway $H$. The condition of just barely being able to rotate is that the top corner is right above $P$, and the left corner is exactly left of $P$. You now get two right angle triangles. Using Pythagoras' theorem you can calculate the length from $p$ to the right most corner and to the bottom corner. You can then rotate/move the box if the sum is less than $a$. $$\sqrt{H^2-b^2}+\sqrt{h^2-b^2}\le a$$

3
On

It is much simpler when $H$ and $h$ are the same, as in your example. The limiting case is then when the box is at $45^\circ$. If you extend the inner edge of the box to hit the outer wall it is $a+2b$ long so the inner edge will be $\frac {a+2b}{ 2}$ from the corner. The distance between the corners is $H\sqrt 2$ so you need $$\frac {a+2b}{ 2} \le H\sqrt 2\\a+2b \le 2\sqrt 2H$$ which is not the case with your data but you are close. This is asking $6 \le 5.93$

For the general case with $h \neq H$ refer to the drawing below. It shows the box going around the corner rotated by an angle $\theta$. We need to have the point on the box in line with the bottom wall of the horizontal hallway clear the corner. The point where the extension of the inside edge of the box hits the top wall is $a \sin \theta +\frac b{\cos \theta}$ out from the corner. To have the box clear the corner we need $$a \sin \theta + \frac b{\cos \theta}-h \tan \theta \lt H$$ as $\theta$ goes from $0$ to $90^\circ$. This calls for taking the derivative, setting to zero, and so on. I don't see a nice form that we can just

enter image description here