-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStep_4_run_analyse_H_LC.m
46 lines (38 loc) · 1.25 KB
/
Step_4_run_analyse_H_LC.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
% Copyright 2021 Aix-Marseille Université
% "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements; and to You under the Apache License, Version 2.0. "
%% get the path
currentFile = mfilename( 'fullpath' );
[path,~,~] = fileparts( currentFile );
path = strcat(path,"/H_LC/");
if ~exist(path, 'dir')
mkdir(path)
end
%% initialise parameters
nb_variable = 17;
%% H low
% step too small
folder = "low";
file = "EQ_High/cont_1/external_input_E_E_b.mat";
nb_H = 10;
MaxStepsize=1e-10;
MaxNumPoints_forward =200;
MaxNumPoints_backward=0;
MinStepsize = 1e-20;
Hopf_Limit_Circle(path,folder,file,nb_variable,nb_H,MaxStepsize,MinStepsize,MaxNumPoints_forward)
%% H middle
folder = "middle";
file = "EQ_High/cont_1/external_input_E_E_b.mat";
nb_H = 11;
MaxStepsize=1e-8;
MaxNumPoints_forward =2000;
MinStepsize = 1e-50;
Hopf_Limit_Circle(path,folder,file,nb_variable,nb_H,MaxStepsize,MinStepsize,MaxNumPoints_forward)
%% H high
% No circle for this point => go in negative values
folder = "H_LC_high";
file = "EQ_High/cont_1/external_input_E_E_b.mat";
nb_H = 15;
MaxStepsize=1e-6;
MaxNumPoints_forward =0;
MinStepsize = 1e-20;
Hopf_Limit_Circle(path,folder,file,nb_variable,nb_H,MaxStepsize,MinStepsize,MaxNumPoints_forward)