Thank you for your replies,
I will try to modify the control values of the convergence-criterium.
Currently i am "constraining" a DOF by having a row in my element-tangent-matrix consists of all 0s, except for the DOF i want to constrain, which has a 1. In the residual of my element i put the desired value i want my constrained DOF to have.
So my element tangent matrix S would look like this:
N1,T N1,P, N2,T N2,P ... Nnel,T Nnel,P
N1,T <normal linear heat-flow>
N1,P 0 1 0 0 0 0
N2,T <normal linear heat-flow>
N2,P 0 0 1 0 0 0
...
Nnel,T <normal linear heat-flow>
Nnel,P 0 0 0 0 0 1
where T is my DOF corresponding to the Temperature and P is the DOF corresponding to the evaporation counter.
In this example I would want to constrain the Temperature of N2 because it has reached the evaporation temperature, and constrain the evaporation counter of N1 because it has not yet reached the evaporation temperature.
The physical unit of the equation of the 2nd ndf changes, (from Kelvin when constraining the Temperature to unit-less when constraining the evaporation counter)
So I can imagine this causing problems for the Convergence-Criterium if i switch during the Newton-method.
Kind regards