Why didn't Turing instability occur?

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?

답변 (1개)

Abhimenyu
Abhimenyu 2023년 9월 26일

0 개 추천

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

카테고리

도움말 센터File Exchange에서 Modeling에 대해 자세히 알아보기

질문:

2023년 9월 19일

답변:

2023년 9월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by