CoefficientFunction from interpolation list

More
4 years 8 months ago #2492 by christopher
I guess in your newton iteration grad(u) is not everywhere nonzero.
you can "fix" this by regularizing the norm:
Code:
def RegNorm(func): return sqrt(func * func + 1e-20)
and use it instead of the norm.
The following user(s) said Thank You: NilsHM
Time to create page: 0.114 seconds