I'm currently using the Newton solver to solve my system of coupled nonlinear PDEs like this:
solve(F==0, fullsol, [bc1,bc2,bc3,bc4,bc5,bc6,bc7], solver_parameters={"newton_solver":
{"relative_tolerance": 1e-10, "absolute_tolerance": 1e-10}})
In some cases, the Newton solver fails to converge. Are there other algorithms implemented in Fenics that I could try? How do I change between the algorithms and where can I find a list of them?