Problems with time-step convergence #30312
Unanswered
TLWise
asked this question in
Q&A Modules: General
Replies: 2 comments 9 replies
-
|
Hello These coefficients are tiny. And if not then it gets complicated. The right way to do this is to use matrix exponentiation techniques iirc. |
Beta Was this translation helpful? Give feedback.
8 replies
-
|
ok this took me a while but I think this should work.
Please let me know if you made progress on a custom predictor or a custom preconditioner |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am attempting to model the following coupled equations:
dN1/dt = -1e-18 * N1
dN2/dt = 1e-18 * N1 - 1e-7 * N2
The solution iterations of the problem do not converge for the Newton method timesteps. Would you happen to have a recommendation for how I should formulate the timestepper for this type of problem?
Beta Was this translation helpful? Give feedback.
All reactions