-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiss_plot_sim.m
76 lines (62 loc) · 2.32 KB
/
iss_plot_sim.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
%%
% Copyright 2014 Jacek B. Krawczyk and Alastair Pharo
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
function SimulatedValue = iss_plot_sim(ProblemFile, InitialCondition, varargin)
%% Load settings from file.
[DeltaFunction, StageReturnFunction, StateLB, StateUB, Conf] = ...
iss_load_conf(ProblemFile);
ODM = iss_load_solution(Conf);
%% Augment configuration.
Conf = iss_conf(StateLB, StateUB, Conf, varargin{:});
%% Extract options
Dimension = Conf.Dimension;
Time=Conf.Time;
SimTime=Conf.SimTime;
ControlTime=Conf.ControlTime;
ControlDimension = Conf.Options.ControlDimension;
LineSpec = Conf.Options.LineSpec;
LineWidth = Conf.Options.LineWidth;
TimepathOfInterest = Conf.Options.TimepathOfInterest;
NumberOfSimulations = Conf.Options.NumberOfSimulations;
%% Run iss_sim
[SimulatedValue, StateEvolution, DeltaEvolution, Control] = ...
iss_sim(InitialCondition, ODM, ...
DeltaFunction, StageReturnFunction, ...
StateLB, StateUB, Conf);
% The values are returned in a cell array by iss_sim.
SimulatedValue = cell2mat(SimulatedValue);
%% Plot trajectories
% These features came from the old code, but I don't think they work.
VariableMin = 0;
VariableMax = 0;
VariableStateStep = 0;
% Plot variable state bounds, if any.
hold on;
for i=1:Dimension
subplot(Dimension+ControlDimension,1,i);
if VariableMin
plot([0,Time],StateLB(:,i),'k');
end
hold on;
if VariableMax
plot([0,Time],StateUB(:,i),'k');
end
ylabel(['x',int2str(i)]);
end; % for i=1:Dimension
for i = 1:length(StateEvolution)
PlotTraj(Dimension,ControlDimension,VariableMin,VariableMax,...
Time,StateLB,StateUB,SimTime,ControlTime,StateEvolution{i},...
Control{i},LineSpec,LineWidth,TimepathOfInterest);
end
end