There is a great old post, but since MMA greatly improves the ability of solving differential equations, especially the Region can be used to define the range of variables. So I ask it again. As the Lagrange's Equation: $$(1+f_y^2)f_{xx}+(1+f_x^2)f_{yy}=2f_xf_yf_{xy}$$So we can make expression in MMA:
NDSolve[{(1+D[u[x,y],y]^2)D[u[x,y],{x,2}]+(1+D[u[x,y],x]^2)D[u[x,y],{y,2}]==2D[u[x,y],x]D[u[x,y],y]D[u[x,y],x,y],
DirichletCondition[u[x,y]==2,x^2+y^2==4 Cosh[1]^2],
DirichletCondition[u[x,y]==-2,x^2+y^2==4 Cosh[1]^2]},u[x,y],{x,-2,2},{y,-2,2}]
But it doesn't look like MMA can solve this differential equation. Did I make a mistake? I don't want to get the exact solution, I just want to get the numerical solution and plot it.
I actually know the solution of this differential equation, and I can plot it with this code:
a=2;
RevolutionPlot3D[{a*Cosh[z/a],z},{z,-2,2}]




NDSolve. And finally, the solution that you presented is not in the form you asked for. – yarchik Feb 14 '23 at 11:24NDSolvegives a hint "NDSolve::femnlmdor: The maximum derivative order of the nonlinear PDE coefficients for the Finite Element Method is larger than 1. It may help to rewrite the PDE in inactive form." .Did you try to rewrite the pde? – Ulrich Neumann Feb 14 '23 at 14:52