Generate system files for predator-prey system with constant rate harvesting¶
In this script the system files for the predator-prey system given by
are generated. These are used in the predator prey demo.
Add MatCont path and load sym package if GNU Octave is used¶
matcontpath = '../';
addpath(matcontpath);
addpath([matcontpath, '/Utilities']);
if isOctave
pkg load symbolic % for GNU Octave
end
Set the system name¶
system_name = 'PredatorPrey';
Create coordinates and parameter names as strings¶
coordsnames = {'x', 'y'};
parnames = {'d', 'h'};
Create symbols for coordinates and parameters¶
The array par
is the array of symbols in the same order as parnames.
Due to the following two lines we may, for example, use either alpha
or
par(1)
. There should no changes be need of this code.
syms(parnames{:}); % create symbol for alpha and delta
par=cell2sym(parnames); % now alpha1 is par(1) etc
syms(coordsnames{:}); % create symbol for alpha and delta
coords=cell2sym(coordsnames); % create 1 x n vector for coordinates
Define fixed parameters¶
r = 1;
e = 1;
k = 2;
Define the system¶
dx_dt = r*x*(1-x/k) - y*x/(e+x);
dy_dt = y*(-d+x/(e+x)) - h;
system = [dx_dt; dy_dt];
In general there are no modifications needed after this line.
Differentiate and generate code (directional derivatives)¶
Exporting it to <system_name>.m
. This method uses directional derivatives.
Then using polarization identities derivatives can be calculated in arbitrary
direction.
suc = generate_directional_derivatives(...
system,... % n x 1 array of derivative symbolic expressions
coords,... % 1 x n array of symbols for states
par,... % 1 x np array of symbols used for parameters
system_name,... % argument specifying the system name
[matcontpath, 'Systems/']... % directory to save to file
);
Higher-order parameter-dependent multi-linear form.¶
Exporting it to <system_name>_multilinearforms.m
. These multi-linear forms are
currently only used in the computation of the parameter-dependent center
manifold for the codimension two Bogdanov-Takens bifurcation.
order = 3;
suc = generate_multilinear_forms(system_name, system, coords, par, order, ...
[matcontpath, 'Systems/']);