Commit 08dea154 by Jigyasa Watwani

parameters with/without morphogen

parents ddc9067b 7519b35d
{
"morphogen" : true,
"resolution" : 64,
"system_size_by_2PI" : 1 ,
"elasticity" : 0.0,
"viscosity" : 1.0,
"friction" : 1.0,
"lamda": 1.75,
"diffusion_rho" : 1.0,
"turnover_rho" : 0.0,
"average_rho" : 1.0,
"saturation_rho" : 1.0,
"diffusion_c" : 1.0,
"turnover_c" : 0.0,
"average_c" : 1.0,
"noise_level": 0.1,
"timestep" : 0.05,
"maxtime" : 200.0
}
...@@ -10,13 +10,13 @@ import progressbar ...@@ -10,13 +10,13 @@ import progressbar
Lx = 2*np.pi Lx = 2*np.pi
Nx = 200 Nx = 200
T = 100 T = 100
dt = 0.1 dt = 0.01
Nt = int(T/dt) Nt = int(T/dt)
times = np.linspace(0,T,Nt) times = np.linspace(0,T,Nt)
K = 1 K = 1
eta = 1 eta = 1
lamda = 1 lamda = 5.0
krho = 1 krho = 1
rho0 = 1 rho0 = 1
Drho = 1 Drho = 1
......
...@@ -19,13 +19,13 @@ ax.set_xlabel(r'$q$') ...@@ -19,13 +19,13 @@ ax.set_xlabel(r'$q$')
ax.set_ylabel(r'$Re[\, \lambda(q) \, ]_{\rm max}$') ax.set_ylabel(r'$Re[\, \lambda(q) \, ]_{\rm max}$')
ax.axhline(y=0, color='black') ax.axhline(y=0, color='black')
lamda0 = 6.0 lamda0 = 2.6
K0 = 4.0 K0 = 1.0
krho0 = 1.0 krho0 = 1.0
eta0 = 4.0 eta0 = 1.0
rho00 = 1.0 rho00 = 1.0
Dc0 = 1.0 Dc0 = 1.0
Drho0 = 0.0 Drho0 = 1.0
kc0 = 1.0 kc0 = 1.0
c00 = 1.0 c00 = 1.0
gamma0 = 1.0 gamma0 = 1.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment