Why cant I get a stable Cranck Nicolson discretization?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all,
For a project we try to design a reactor with a diffusion-convection-reaction mechanism before it reaches a steady state. Now, we are using the Cranck Nicoloson discretization for this reaction. However this does not seem to work properly. We get an unstable system, because we have a low diffusion coefficient. We have been playing around, but we cannot find how we can make this system more stable.
Attached is the code we are using right now.
Do you maybe have suggestions on how to make the discretization more stable? Many thanks!
edit: the initial mass balance we are trying to solve is dx/dt = D*d^2x/da^2+v_av*void*dx/da-k*void*x
We use a Dirichet boundary condition so that x=0 for t = 0 and a = 0.
4 commentaires
Réponses (2)
Bjorn Gustavsson
le 26 Jan 2023
(caveat: I didn't run your code or analyze it, but speak from my experience with CN) Most likely you take too long steps in time. Even for CN-methods one has to obey the CFL-condition when selecting the time-steps. You might have to read up on the Courant-Friedrichs-Levy condition: wiki-on-CFL-condition.
That was my experience, didn't think I needed to bother because CN is stable, but first solutions were not good, when the CFL-condition on dt was adhered to all was good.
HTH
0 commentaires
Torsten
le 26 Jan 2023
Déplacé(e) : Torsten
le 26 Jan 2023
We use a Dirichet boundary condition so that x=0 for t = 0 and a = 0.
And which conditions at a = a_end ?
Try "pdepe".
If the convection term v_av*void*dx/da is too strong compared to the diffusion term, discretize dx/da using an upwind method, not central differences.
0 commentaires
Voir également
Catégories
En savoir plus sur Geometry and Mesh dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!