What I want to get is the following picture, with a difference that the curve is an arc, not parabola or other curve. One way to achieve this is to make a path of circle and use intersections library, to find intersections of two lines(y=0, y=2). However, there is a problem since large bounding box will be generated since a path of full circle was drawn virtually. What I want is to draw an arc, while not making any margins. How can I do this?
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[auto, scale=1.5]
\draw[fill=gray!50] (0,1.6) -- (0,0) -- (2,0);
\draw[densely dashed] (0,1.6) |- (2, 2.7) -- (2, 1.1);
\coordinate (a) at (0,1.6);
\coordinate (b) at (2,1.1);
\coordinate (o) at (1.4, 2.7);
\draw[|<->|] (0.08, 1.6) -- node {$H$} (0.08, 0);
\draw[|<->|] (1.4, 0.93) -- node {$h$} (1.4, 0);
\end{tikzpicture}
\end{document}



