Hi, I am novice user of FEniCS.
I am using solve (F == 0, w, dirichlet_u) , it automatically calls NewtonSolver and defalt tol is 1e-10 , and maxiter = 50, How can i change default tol and max iter ?
solve(F == 0, u, bc, solver_parameters={"newton_solver":{"relative_tolerance":1e-10},"newton_solver":{"maximum_iterations":50}})
Check the Nonlinear Poisson demo.
Thank you so much