Clear Filters
Clear Filters

Why didn't Turing instability occur?

6 views (last 30 days)
Bode
Bode on 19 Sep 2023
Answered: Abhimenyu on 26 Sep 2023
Why isn't Turing instability occurring even though the conditions for it are met at these parameters? I feel it's not quite reasonable. Could I have made a mistake somewhere?

Answers (1)

Abhimenyu
Abhimenyu on 26 Sep 2023
Hi Bode,
I understand that you want to check Turing instability using your code. It is my understanding that in your file, “turing_condition.m”, the formula for “H2” is wrong. For Turing instability with diffusion, “H2” <0. The correction is as follows:
function [H1,H2]=turing_condition(d1,d2,jaco_matrix)
j=jaco_matrix;
H1=(d1)*(j(2,2))+(d2)*(j(1,1));
H2=(-(H1)^2)+4*(d1)*(d2)*(det(j));
This gives “H2” <0 which shows Turing instability. Follow the link on Turing conditions for better understanding,
Thank you,
Abhimenyu

Categories

Find more on Numerical Integration and Differential Equations in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!