diff --git a/@Ternary_model/create_mesh.m b/@Ternary_model/create_mesh.m
index 0a1b0f42baeb50594f1874b5c9dd4551c5263d1d..74c139ca8389f4896d933f3cb482f336a27fc9ca 100644
--- a/@Ternary_model/create_mesh.m
+++ b/@Ternary_model/create_mesh.m
@@ -2,7 +2,7 @@ function create_mesh(T)
 %CREATE_MESH creates mesh for solving Ternary_model.
 %   Mesh density larger for steeper gradients.
 
-if strcmp(T.mode, 'Constituent')
+if strcmp(T.mode, 'Constituent') | T.v == 0
 % Start with left side of mesh, at r=0/x=0, with a given step size
     x = linspace(0, 0.75, 40);
     x = [x, x(end)+0.001/T.precision];
@@ -29,7 +29,7 @@ if strcmp(T.mode, 'Constituent')
                                        ceil((T.x(ind+20)-T.x(ind-20))*200)),...
                T.x(ind+21:end)];
     end
-elseif strcmp(T.mode, 'Client')
+elseif strcmp(T.mode, 'Client') && T.v ~= 0
     T.x = linspace(0, T.system_size, 24000);
 end
 end
diff --git a/prob_laplace.m b/prob_laplace.m
index 1ae5a47400186c8138d28d282cee553642dde8de..685f2071516c6d7d3100a3cf23e8145c5ab52dfd 100644
--- a/prob_laplace.m
+++ b/prob_laplace.m
@@ -155,11 +155,13 @@ si_t = size(t_snap);
 x0 = sort(10-T_mov.v*t_snap-direction*repmat(0:0.02:4.01, [si_t(1), 1]), 2);
 %% Run simulations for 'delta' IC across outside
 F = {};
+t = linspace(0, 10, 101);
 v = T_mov.v;
+params = params_mov_bound;
+params{end-1} = 0;
 for i = 1:si_t(2)
     tic
     parfor j = 1:si_t(1)
-    F{i, j} = Ternary_model(0, 'Gauss', params_mov_bound, t, 0);
     F{i, j} = Ternary_model(0, 'Gauss', params, t, 0.1);
     F{i, j}.x0 = x0(j, i);
     F{i, j}.a = -10+v*t_snap(i);