Skip to content

Commit

Permalink
Merge pull request #162 from ICB-DCM/fix_pom
Browse files Browse the repository at this point in the history
fixes #155
  • Loading branch information
yannikschaelte authored Mar 2, 2018
2 parents 695d6b9 + 92017d0 commit 4270623
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions examples/Pom1p_gradient_formation/Models/Pom1p_NLIC_syms.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
%% CVODES OPTIONS

% set the default absolute tolerance
model.atol = 1e-10;
% model.atol = 1e-10;
% set the default relative tolerance
model.rtol = 1e-10;
% model.rtol = 1e-10;
% set the default maximum number of integration steps
model.maxsteps = 1e4;
% model.maxsteps = 1e4;
% set the parametrisation of the problem options are 'log', 'log10' and
% 'lin' (default).
model.param = 'lin';
model.noadjoint = true;
% model.noadjoint = true;

%% PDE discretization
n_grid = 200;
Expand Down
8 changes: 4 additions & 4 deletions examples/Pom1p_gradient_formation/Models/Pom1p_NLIC_syms_eq.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
%% CVODES OPTIONS

% set the default absolute tolerance
model.atol = 1e-10;
% model.atol = 1e-10;
% set the default relative tolerance
model.rtol = 1e-10;
% model.rtol = 1e-10;
% set the default maximum number of integration steps
model.maxsteps = 1e4;
% model.maxsteps = 1e4;
% set the parametrisation of the problem options are 'log', 'log10' and
% 'lin' (default).
model.param = 'log10';
model.noadjoint = true;
% model.noadjoint = true;

%% PDE discretization
n_grid = 200;
Expand Down
8 changes: 4 additions & 4 deletions examples/Pom1p_gradient_formation/Models/Pom1p_NLIC_syms_ft.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
%% CVODES OPTIONS

% set the default absolute tolerance
model.atol = 1e-10;
% model.atol = 1e-10;
% set the default relative tolerance
model.rtol = 1e-10;
% model.rtol = 1e-10;
% set the default maximum number of integration steps
model.maxsteps = 1e4;
% model.maxsteps = 1e4;
% set the parametrisation of the problem options are 'log', 'log10' and
% 'lin' (default).
model.param = 'log10';
model.noadjoint = true;
% model.noadjoint = true;

%% PDE discretization
n_grid = 200;
Expand Down
8 changes: 4 additions & 4 deletions examples/Pom1p_gradient_formation/Models/Pom1p_NLIC_syms_ht.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
%% CVODES OPTIONS

% set the default absolute tolerance
model.atol = 1e-10;
% model.atol = 1e-10;
% set the default relative tolerance
model.rtol = 1e-10;
% model.rtol = 1e-10;
% set the default maximum number of integration steps
model.maxsteps = 1e4;
% model.maxsteps = 1e4;
% set the parametrisation of the problem options are 'log', 'log10' and
% 'lin' (default).
model.param = 'log10';
model.noadjoint = true;
% model.noadjoint = true;

%% PDE discretization
n_grid = 200;
Expand Down

0 comments on commit 4270623

Please sign in to comment.