Computing the area of a circular segment (green part below) from a distance along the radius axis (like $h$, the sagitta distance) is well-known.
What could be the inverse function, that is the $f$ function: $h=f(A)$, or an approximation of it ?
In other words: The circle is filled with a known quantity of a liquid ($A$) - what is the resulting liquid level ($h$) ?
EDIT 1
Considering that:
$h=R(1-\cos(\theta/2))$
and
$A=R^2/2.(\theta - \sin(\theta))$
I would simply need to express $\theta$ as a function of $A$, that is finding the invert function of $(x-\sin(x))$.
EDIT 2
According to this other question pointed out by Saad, it seems an algebraical expression of the inverse function cannot be obtained. An approximation would however be welcome.
EDIT 3
See the motivation behind this question here: https://observablehq.com/@jgaffuri/striped-circle



Exact inversion is not possible because the equation is transcendental, so we have to resort to numerical methods.
We approximate the exact curve, in blue,
$$y=x-\sin x$$
in the range $[0,\pi]$. Other ranges follow by symmetry/periodicity.
Using the first two terms of the Taylor development, we get the green curve
$$y\approx \frac{x^3}6,$$ which matches the function well for small $x$.
For larger $x$, we can fix the deviation (up to $\dfrac{\pi^3}6$ instead of $\pi$) by adding a damping factor such that the function value is exact at $0$ and $\pi$. We also require that for small $x$, the formula remains asymptotically exact. For convenience, we chose the form $1-ax^3$ and obtained the magenta curve
$$y\approx\frac{x^3}6\left(1-\left(1-\dfrac6{\pi^2}\right)\frac{x^3}{\pi^3}\right).$$
As you can notice, both
$$y=ax^3$$ and $$y=ax^3(1-bx^3)$$ are easily inverted (for the second, solve the quadratic equation in $x^3$).
From these inital approximations, you can start Newton's iterations,
$$x_{n+1}=x_n-\frac{x_n-\sin x_n-y}{1-\cos x_n}.$$