You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's right, though I guess the convergence problem is due to the boundary conditions. I had the same trouble before when I applied a load force on the clamped end, seems that using UserExpressions and point-wise force assignment, Fenics doesn't accept forces applied on points having already boundary conditions. I added in line 242 in dynamic.py another condition and not(np.equal_array(coords[-1], x)) in order to avoid to apply force on the tip. But this didn't help much...
I think Fenics checks all the unknowns if they have a corresponding boundary condition. In your try there isn't any bc for Omega and Fint. Another thing is that there is a surplus of bcs, 8 vs only 6 unknowns to solve for. I suspect that the lagrangian itself should be modified, particularly L_dFds and L_dMds. I'd be curious to see a solution for this issue, despite the scarcity of 1D element Fenics simulations on the web...
Is it possible to solve this convergence issue when I clamp both ends?
I get
Newton solver did not converge because maximum number of iterations reached.
at the first time step and playing with parameters doesn't help.Thanks
The text was updated successfully, but these errors were encountered: