Dear all,
First of all, I am pretty new to Python/NGSolve/Netgen so please apologise any newbie-error I do.
I have a Mesh, let’s say the points
(0,0),E1=(0.25,0), E2=(0.75,0), (1,0), (1,1), and (0,1), I ordered them counterclockwise
I wanted to solve the Laplace-Equation on it with the following Dirichlet-boundary conditions:
d=disctance to the section E1E2
With some linear algebra I could write the code down with two IfPos. But it took ages to solve, very often it didn’t work at all. Since I never had similar problems with solving the Laplace Equation or others, I assume it was the IfPos(IfPos())
Dear christopher,
thanks for the fast reply. I was writing a minimal example, which was surprisingly solved very fast and I didn’t had the issues I had before. I have to recheck my old example (it contains out of multiple files, thus I didn’t upload them)
Afterwards I added your * and sqrt() tipps!
Thanks for that
However, my solution isn’t drawn. That happens regularly in different examples. Can you see the reason why it is not working here?
Whitespaces are not allowed in the name of the function. It messes up the gui calls.
Use underlines instead of whitespaces. It seems, that you function is singular at some edges (although I haven’t checked your boundary condition - are you sure that you set it correctly?)
Thx! didn’t know that with the whitespace!
And yes, somehow it seems I did an error when copypasting the minimal example together
Will check again the whole example
Thx for the help!