I would like to solve this equation respect to $\phi$. How can I do it?
$$\begin{align} 0 &= -zMg \sin\phi \\ &+T_2l_d\sin\left(\phi-\arctan\left(\frac{(l_d-R)\sin\phi-y_q}{(l_d-R)\cos\phi-x_q}\right)\right)\\ &+T_3l_d\sin\left(-\phi+\arctan\left(\frac{-(l_d+R)\sin\phi+y_r}{-(l_d+R)\cos\phi+x_r}\right)\right)\\ &+2y\left(pA-k\left(\left(y\cos\phi-x_d\right)^2+\left(y\sin\phi-y_d\right)^2\right)^{\frac{1}{2}}-c_{eq}\right)\sin\left(\arctan\left(\frac{y\sin\phi-y_d}{y\cos\phi-x_d}\right)-\phi\right) \end{align}$$
I would like to have some tips about possible solving methods. Thanks
Not an answer, but a preliminary pass at simplification. First, we'll reduce a lot of visual clutter with some convenient definitions:
$$s_1 := -z M g \qquad s_2 := T_2 \qquad s_3 = T_3$$ $$m := l_D \qquad r := R \qquad h := p A - c_{eq}$$ $$a := \phantom{-}( m - r ) \sin\phi - y_q \qquad b := \phantom{-}( m - r ) \cos\phi - x_q$$ $$c := -( m + r ) \sin\phi + y_r \qquad d := -( m + r ) \cos\phi + x_r$$ $$e := y \sin\phi - y_d \qquad f := y \cos\phi - x_d$$
With these, the equation becomes $$\begin{align} 0 &= s_1 \sin\phi + s_2 m \sin\left( \phi - \operatorname{atan}\frac{a}{b} \right) + s_3 m \sin\left(-\phi + \operatorname{atan}\frac{c}{d} \right) \\ &+ 2 y \left( h - k \sqrt{e^2+f^2} \right) \sin\left( \operatorname{atan}\frac{e}{f} - \phi \right) \\ &= s_1 \sin\phi + \frac{s_2 m ( b \sin\phi - a \cos\phi )}{\sigma_{ab}} + \frac{s_3 m (c \cos\phi-d\sin\phi)}{\sigma_{cd}} \\ &+ \frac{2y(h-k\sigma_{ef})(e \cos\phi-f\sin\phi)}{\sigma_{ef}} \end{align}$$ where $\sigma_{xy} := \sqrt{x^2+y^2}$. Clearing fractions gives $$\begin{align} 0 &= s_1\;\sigma_{ab}\;\sigma_{cd}\sigma_{ef}\;\sin\phi \\ &+ s_2 m\;\sigma_{cd}\;\sigma_{ef}\;( b \sin\phi - a \cos\phi ) \\ &+ s_3 m\;\sigma_{ab}\;\sigma_{ef}\;(c \cos\phi-d\sin\phi) \\ &+ 2y\;\sigma_{ab}\;\sigma_{cd}\;(h-k\sigma_{ef})(e \cos\phi-f\sin\phi) \end{align}$$
Still ugly. Now, observe that
$$\begin{align} b \sin\phi - a \cos\phi &= y_q \cos\phi - x_q \sin\phi \\ c \cos\phi - d \sin\phi &= y_r \cos\phi - x_r \sin\phi \\ e \cos\phi - f \sin\phi &= x_d \sin\phi - y_d \cos\phi \end{align}$$
so that we have
Still ugly, but it has to get worse before there's any hope of getting better. In particular, the "$\sigma_{xy}$" square roots need to be eliminated, via a sequence of squaring and further expansion. I'll save that for later, since I'm not entirely sure I haven't made an error up to this point.