Skip to content
Commits on Source (13)
  • Matthew Dawson's avatar
    Update version number. · e3a02fac
    Matthew Dawson authored
    
    git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@10907 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
    e3a02fac
  • Matthew Dawson's avatar
    Avoid unnecessary changes to the Simulink block on saving. · 2e39f03e
    Matthew Dawson authored
    When the table is closed, there is lots of unnecessary data being stored in
    the block, all of which changes on the next load.  Remove that data before
    closing, to try and avoid changing the underlying storage, making the TET
    friendlier to SCMs.
    2e39f03e
  • Matthew Dawson's avatar
    Create a mechanism to upgrade the TET's data structures, and do some cleanup. · 423efd72
    Matthew Dawson authored
    The TET now has a mechanism to upgrade TE blocks to the latest data structures,
    though backwards compatibility is not currently dealt with.
    Also clear unneeded cell arrays that held text.  I'm not sure why that existed,
     and at least the quadratic example has both cell and non-cell arrays for
    holding the text, speaking to the uselessness of the array.  Thus remove the
    array as an upgrade mechanism.  This shrinks down the size of the TE blocks
    some too!
    423efd72
  • Matthew Dawson's avatar
    Update the examples against the new upgrade/purge code. · 866f5873
    Matthew Dawson authored
    Since the storage format has changed, update the examples to match.
    Also downgrade all samples to work against MATLAB 2010a, since they
    seem to have been originally created for it.
    866f5873
  • Matthew Dawson's avatar
    Update version numbers for release. · 543c6389
    Matthew Dawson authored
    Update all version numbers to 0.7.2 for release.  Also update my copyright
    to the current year.
    543c6389
  • Mark Lawford's avatar
    Merge branch 'purge_and_sanitize' into 'master' · 710fcdfa
    Mark Lawford authored
    Purge and sanitize table storage format
    
    This is a patch against the latest stable to prepare it for the SimCheck work.  Currently the table has a mixture of how text entries are stored, for no apparent reason.  Examples include this mixture, so it does appear to be a useless difference.  This version introduces a way to upgrade tables, and makes use of that to remove a redundant cell array for TE's generated with the tool.  There should be no functional difference.
    
    Also, this includes a commit to remove changes that would occur to the table upon an open/close cycle, even though the table wouldn't actually change.  This just makes the table behave better in the context of a SCM.
    
    I've updated the version numbers, and it would be good to get this out there now so that the SimCheck work can be used against tables sooner, without having to re-save as many tables.
    710fcdfa
  • Matthew Dawson's avatar
    Fix critical bug that would mis-align port numbers. · e8118f0f
    Matthew Dawson authored
    When adding new inputs to a TET block, it was possible that the port numbers
    would no longer line up between the code block and the outer input ports on
    the TET block.  This would cause Simulink models to appear to be hooked up
    correctly, but misbehave when actually run.
    
    Fix by ensuring ports are always correct on save.  Both existing ports and
    new ports are always numbered to match the internal port numbers on the code
    block.  Existing connections are maintained as expected.
    
    Due to this change, it is possible that on saving a TET block connections will
    be re-arranged.  Note that these connections will have been incorrect and need
    adjustment anyways.
    e8118f0f
  • Matthew Dawson's avatar
    Update version to 0.7.3 · e16aee40
    Matthew Dawson authored
    Update version numbers for critical update to 0.7.3.
    e16aee40
  • Matthew Dawson's avatar
    Stop trying to clip text boxes. · 87fe6290
    Matthew Dawson authored
    Clipping is used to avoid having text spill on axes, clipping text boxes
    does nothing as text boxes always clip their contents.  This fixes
    MATLAB R2015a (and possibly R2014b).
    87fe6290
  • Matthew Dawson's avatar
    Update version numbers to 0.7.4 · df68c56b
    Matthew Dawson authored
    Release 0.7.4, fixing MATLAB R2014b/R2015a
    df68c56b
  • Abdulrahman elgendy's avatar
  • Abdulrahman elgendy's avatar
  • Matthew Dawson's avatar
    Merge branch 'fix_port_assignments' into 'master' · dc0f1445
    Matthew Dawson authored
    Fix some minor issues (output port misalignment + GUI errors)
    
    Closes #9 and #10
    
    See merge request !7
    dc0f1445
......@@ -87,6 +87,8 @@ for i=1:size(inports,1)
for j=1:size(in_handles,1)
if strcmp(get_param(inports(i),'Name'),get_param(in_handles(j),'Name'))
% Make sure the port numbers agree.
set_param(inports(i), 'Port', get_param(in_handles(j), 'Port'));
found = 1;
end
end
......@@ -121,6 +123,8 @@ for j = 1:size(in_handles,1)
add_block('simulink/Sources/In1',new_port);
new_port_num = sprintf('%s/1',get_param(in_handles(j),'Name'));
dest_port = sprintf('%s/%d','code',j);
% Set the port number so the ports line up properly.
set_param(new_port, 'Port', get_param(in_handles(j), 'Port'));
% sometimes line will be created automatically
try
add_line(getfullname(block_handle),new_port_num,dest_port);
......@@ -139,6 +143,10 @@ for i=1:size(outports,1)
for j=1:size(out_handles,1)
if strcmp(get_param(outports(i),'Name'),get_param(out_handles(j),'Name'))
% Set the port number so the ports line up properly.
set_param(outports(i), 'Port', get_param(out_handles(j), 'Port'));
found = 1;
end
end
......@@ -170,6 +178,10 @@ for j = 1:size(out_handles,1)
add_block('simulink/Sinks/Out1',new_port);
new_port_num = sprintf('%s/1',get_param(out_handles(j),'Name'));
dest_port = sprintf('%s/%d','code',j);
% Set the port number so the ports line up properly.
set_param(new_port, 'Port', get_param(out_handles(j), 'Port'));
try
add_line(getfullname(block_handle),dest_port,new_port_num);
end
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Cell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.grid_pb = [];
object.cond = [];
object.color = []; % This is always regenerated, so it is safe to kill.
for i=1:size(object.subgrid,2)
object.subgrid(i).purge;
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Cell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
if iscell(object.cond_text)
object.cond_text = object.cond_text{1};
end
for i=1:size(object.subgrid,2)
object.subgrid(i).upgrade;
end
end
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Data object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.Grid0.purge
object.Grid1.purge
object.Grid2.purge
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Data object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
object.Grid0.upgrade
object.Grid1.upgrade
object.Grid2.upgrade
end
......@@ -64,7 +64,7 @@ classdef GUI < handle
multi_opt_out = [];
prover_opt_pvs = [];
prover_opt_cvc = [];
version = '0.7';
version = '0.7.4';
undo_man = [];
undo_opt = [];
redo_opt = [];
......
......@@ -20,6 +20,8 @@ object.Data.fig = [];
delete(object.fig);
% remove reference to the old figure.
object.fig = [];
% Purge unnecessary information from Data
object.Data.purge;
% in simulink mode
if(object.mode == 1)
parent = get_param(object.block_handle,'Parent');
......
......@@ -19,7 +19,6 @@ control = uicontrol('style','edit',...
'min',0,'max',1,... % This is the key to multiline edits.
'string',{''},...
'Max',2.0,...
'Clipping','on',...
'fontweight','bold',...
'BackgroundColor',[1 1 1],...
'horizontalalign','center',...
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Grid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
% delete(object.new_cell_pb)
% delete(object.delete_cell_pb)
object.new_cell_pb = [];
object.delete_cell_pb = [];
for i=1:size(object.cells, 2)
object.cells(i).purge
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Grid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
for i=1:size(object.cells, 2)
object.cells(i).upgrade
end
end
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - RCell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.result = [];
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - RCell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
if iscell(object.result_text)
object.result_text = object.result_text{1};
end
end
......@@ -17,7 +17,7 @@ for i=1:size(object.Cells,2)
end
end
if(~isempty(deleted))
delete(object.Cells(deleted).result);
delete([object.Cells(deleted).result]);
object.Cells(deleted) = [];
end
end
......
......@@ -20,7 +20,7 @@ for i=1:size(object.Cells,2)
end
end
if(~isempty(deleted))
delete(object.Cells(deleted).result);
delete([object.Cells(deleted).result]);
object.Cells(deleted) = [];
end
end
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - RGrid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
for i = 1:size(object.Cells, 2)
object.Cells(i).purge;
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - RGrid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
for i = 1:size(object.Cells, 2)
object.Cells(i).upgrade;
end
end
......@@ -41,7 +41,6 @@ else
'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,...
'Clipping','on',...
'fontweight','bold',...
'BackgroundColor',[1 1 1],...
'horizontalalign','center',...
......@@ -52,7 +51,6 @@ else
'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,...
'Clipping','on',...
'fontweight','bold',...
'BackgroundColor',[1 1 1],...
'horizontalalign','left',...
......@@ -64,7 +62,6 @@ else
'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,...
'Clipping','on',...
'fontweight','bold',...
'BackgroundColor',[1 1 1],...
'horizontalalign','left',...
......
......@@ -6,7 +6,7 @@ Model {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedModelVersion "1.1"
ComputedModelVersion "1.2"
NumModelReferences 0
NumTestPointedSignals 0
}
......@@ -23,11 +23,11 @@ Model {
Creator "colin"
UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>"
LastModifiedBy "colin"
LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>"
LastModifiedDate "Mon Jan 24 12:39:05 2011"
RTWModifiedTimeStamp 217773526
ModelVersionFormat "1.%<AutoIncrement:1>"
LastModifiedDate "Thu May 15 15:26:50 2014"
RTWModifiedTimeStamp 322068405
ModelVersionFormat "1.%<AutoIncrement:2>"
ConfigurationManager "none"
SampleTimeColors off
SampleTimeAnnotations off
......@@ -669,7 +669,7 @@ Model {
}
System {
Name "Jin_Parnas_Example"
Location [165, 265, 745, 525]
Location [1009, 551, 1589, 811]
Open on
ModelBrowserVisibility off
ModelBrowserWidth 200
......@@ -918,198 +918,167 @@ MatData {
DataRecord {
Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X !8/0 !@ @ ) 4"
" ( 0 \"@] ! ( H/0 %)30 . B#P 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . 0#P 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<"
"E]? #@ \\ & \" $ !0 @ !U 0 $ #@ *@* & \" D !0 @ "
" !X\"@ 0 $ @ '@* \" + -@! X @ . ( !@$ #8\"0 > H 1W)I9# 0V5L;', 0V5L;#$"
" 8V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7"
"VEN9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!"
"B &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:"
"6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1"
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X #@,@ !@ @ ) 4"
" ( 0 + R ! ( \"P,@ %)30 . $#( 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . R#$ 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<"
"E]? #@ (@Q & \" $ !0 @ !9 0 $ #@ (@) & \" D !0 @ "
" !8\"0 0 $ @ %@) \" + -@! X @ . ( !@$ \"X\" 6 D 1W)I9# 0V5L;', 0V5L;#$"
" 8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E>"
" !R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&]"
"R &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:"
"6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W1"
"I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P "
" ( $0 !X C *P "
" !0 $ 3 P ( 2 ! "
" , ) @ 0 $ 0 4 # @ 8 ! @ "
" < \" @ @ ( 0 D ' @ H "
" % @ L & ! P * ! T + ! "
" X , ! \\ - ! ! . ! !$ "
"/ ! !( 0 ! !, 1 ) 0 $ !I 'P $ !J "
" ( $ !K )0 $ !L )@ $ !M )P $ !N * $ !O *0 $ !P *@ $ !Q "
" P ( ! 9@ !\\ ! 9P \" ! : 4 # 0 !@ A 0 #H B 0 #L C "
" 0 #P 2 0 #T & ! $ !0 $ ! !@ $ \" !P $ 5 $0 $ 6 "
"$@ $ 7 8 ( 0 \\ , 0 ! - 0 !$ . 0 !( / 0 !, 0 "
"0 !0 !@ 0 ! P 4 ! ! 8 ! !0 < ! !@ !$ ! !P !( ! \" "
" & ! $ ) !0 $ * !@ $ + !P $ , $0 $ - $@ $ . "
" D $ 0 !D % 0 !H & 0 !L ' 0 #0 5 0 #4 6 0 #8 7 0 #"
"< 1 0 #@ 2 0 #D & \" $ N # $ O #0 $ P #@ $ Q #P $"
" R $ $ S D $ 0 !P % 0 !T & 0 !X ' 0 !\\ 5 0 \" "
" 6 0 \"$ 7 0 \"( 1 0 \", 2 0 \"0 ) ! $ E !0 $ F !@ "
" $ G !P $ H %0 $ I %@ $ J %P $ K $0 $ L $@ $ M !0 ,"
" ! /@ \"$ ! /P \"( ! 0 \", ! 00 !( ! 0@ 4 # 0 $, A 0 $"
"0 B 0 $4 C 0 $8 2 0 $< % P $ !( (0 $ !) (@ $ !* (P $ "
" !+ $@ $ !, !0 , ! 30 \"$ ! 3@ \"( ! 3P \", ! 4 !( ! 40 4"
" # 0 %( A 0 %, B 0 %0 C 0 %4 2 0 %8 % P $ !7 (0 $ "
" !8 (@ $ !9 (P $ !: $@ $ !; !0 , ! 7 \"$ ! 70 \"( ! 7@ \", "
" ! 7P !( ! 8 4 # 0 &$ A 0 &( B 0 &, C 0 &0 2 0 &4 "
"/ ! !( 0 ! !, 1 ) 0 $ !- 'P $ !. "
" ( $ !/ )0 $ !0 )@ $ !1 )P $ !2 * $ !3 *0 $ !4 *@ $ !5 "
" P ( ! 2@ !\\ ! 2P \" ! 3 0 # 0 ! A 0 \"< B 0 \"@ 7 "
" 0 \"D ! 0 ! 4 ! 0 8 ! #@ ! ! #P $ !P $ * "
" \"P $ + # $ , #0 $ - 0 $ 0 ( % 0 , & 0 0 0 "
" 0 4 ! 0 ! !@ 4 ! !P 8 ! \" ! ! \"0 & ! $ 1 "
" !0 $ 2 !@ $ C % $ D %0 $ E $ $ F 0 ' 0 !\\ + "
" 0 \" , 0 \"$ - 0 \"( !@ 0 ! $P 4 ! % 8 ! %0 !0 ! "
" %@ !4 ! %P ! ! & & ! $ 9 !0 $ : !@ $ ; % $ < %"
"0 $ = $ $ > 0 # 0 \"H A 0 \"L B 0 \"P 7 0 \"T "
" ! , ! +@ \"$ ! +P \"( ! , !< ! ,0 $ P $ R (0 $ S "
" (@ $ T %P $ U 0 # 0 #8 A 0 #< B 0 #@ 7 0 #D !"
" , ! .@ \"$ ! .P \"( ! / !< ! /0 $ P $ ^ (0 $ _ ("
"@ $ ! %P $ !! 0 # 0 $( A 0 $, B 0 $0 7 0 $4 ! "
" , ! 1@ \"$ ! 1P \"( ! 2 !< ! 20 "
" "
" #@ . "
" . 8 ( !@ % \" $ ! 0 ) \" ( !8*) #@ # & \" 0 "
" !0 @ ! P $ $ # '@\\, . . 8 ( !@ % \" $ ! 0 ) "
" \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !@ 8\"B0 X !"
"@ !@ @ ! 4 ( 0 $ ! X P !@ @ $ 4 ( 0 0 ! "
" ! ! !X/3TP#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ 0 X !( "
" !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ #@ & "
" \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( "
" 0 , ! D 8 \\#\\ #P/P / _#@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ !@ 8BB0 X !@ !@ @ ! 4 ( 0 $ ! X P "
" !@ @ $ 4 ( 0 , ! ! P!X/C #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 "
" W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" #P/PX !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P / _#"
"@ % & \" T !0 @ ( 0 $ !@ \" #= @ $ # ! 8 ' "
"@ X X !@ @ & 4 ( 0 $ ! D ( \"$ . . 8 ( !@"
" % \" $ ! 0 ) \" / _#@ $@ & \" T !0 @ & "
"0 $ !@ !@ #= @ $ ! @ , . . 8 ( !@ % \" $ ! 0"
" ) \" ) !8J) #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \"0"
" 6BB0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@"
" #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T !"
"0 @ & 0 $ !@ !@ #= @ $ ! ! ( . . 8 ( !@ % \" "
" $ ! 0 ) \" ) !6*) #@ # & \" 0 !0 @ ! P $ $ "
" # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ \" 7\"B0 X !@ !@ @ ! 4 ( "
" 0 $ ! X P !@ @ $ 4 ( 0 0 ! ! ! !Y/3TP#@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@"
" $ ! 8 8 W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" * !<J) #@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0"
" , ! D 8 \"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ \"@ 7:B0 X !@ !@ @ ! 4 ( 0 $ ! X P "
"!@ @ $ 4 ( 0 , ! ! P!Y/C #@ #@ & \" 8 !0 @ ! "
"0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 "
" W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
"#P/PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@"
" % \" $ ! 0 ) \" ) !>*) #@ #@ & \" 8 !0 @ ! "
"0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 \""
"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ % & \" T !0 @ ( 0 $ !@ \" #"
"= @ $ # \" H + @ X X !@ @ & 4 ( 0 $ ! D ( "
" \"$ . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & "
" \" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , . . 8 ( "
"!@ % \" $ ! 0 ) \" ' !7*) #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ \"0 5ZB0 X !( !@ @ - 4 ( !@ $ ! 8 8 "
" W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" #P/PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( "
" !@ % \" $ ! 0 ) \" ) !6J) #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 "
" \"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" #= @ $ ! \" ( . . 8 ( !@ % \" $ ! 0 ) \" ) !"
":J) #@ #@ & \" 0 !0 @ ! !P $ $ < !X7C(M>5XR X !( !@ @ & "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T "
" !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % "
" \" 8 ! 0 & & -T\" 0 $ * @ X X !@ @ & 4 ( "
" 0 $ ! D ( @ %THD . 8 8 ( 0 % \" $ ! 0 . "
" , 8 ( ! % \" $ # 0 0 , >\"MY X !( !@ @ & 4 ( "
" 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T !0 @ & "
" 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % \" 8 ! "
" 0 & & -T\" 0 $ + @ X X !@ @ & 4 ( 0 $ ! "
" D ( < %^HD . : 8 ( 0 % \" $ ! 0 . . 8 ( !"
" % \" $ ' 0 0 !P 'A>,BMY7C( #@ $@ & \" 8 !0 @ ! "
"P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! "
" 0 & & -T\" 0 $ & @ X !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ ! 0 $ "
"\"0 @ !P 8*B0 X !H !@ @ ! 4 ( 0 $ ! X X !@ @ $ "
" 4 ( 0 < ! ! ' >%XR*WE>,@ . 2 8 ( !@ % \" $ # 0"
" ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@"
" !@ #= @ $ ! \"@ ( . . 8 ( !@ % \" $ ! 0 ) \""
" & !A*) #@ &@ & \" $ !0 @ ! 0 $ #@ #@ & \" 0 !"
"0 @ ! !P $ $ < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! "
" D 8 \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@"
" !@ #= @ $ ! !@ ( . 2 8 ( #0 % \" 8 ! 0 & & "
" -T\" 0 $ + @ X X !@ @ & 4 ( 0 $ ! D ( "
"< &&HD . 8 8 ( 0 % \" $ ! 0 . , 8 ( ! % \" "
" #@ . , 8 ( ! % \" "
"$ # 0 0 , >#PP X X !@ @ & 4 ( 0 $ ! D ( "
"\\#\\. , 8 ( ! % \" $ $ 0 0 0 >#T], X X !@ @ & 4"
" ( 0 $ ! D ( $ . 2 8 ( #0 % \" 8 ! 0 "
" & & -T\" 0 $ % 0 X X !@ @ & 4 ( 0 $ ! D "
" ( \\#\\. , 8 ( ! % \" $ # 0 0 , >#XP X X !@ @ "
" & 4 ( 0 $ ! D ( \"$ . 2 8 ( #0 % \" 8 "
" ! 0 & & -T\" 0 $ % 0 X X !@ @ & 4 ( 0 $ "
" ! D ( \\#\\. 4 8 ( #0 % \" @ ! 0 & ( "
" -T\" 0 , $ !@ < \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 "
"@ (0 X X !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 "
"8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X !( !@ "
" @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ #@ & \" "
"8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $"
" ! 8 8 W0( ! 0 0 \" #@ # & \" 0 !0 @ ! P $"
" $ # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #"
" & \" 0 !0 @ ! ! $ $ $ 'D]/3 . . 8 ( !@ % \" "
"$ ! 0 ) \" ! #@ $@ & \" T !0 @ & 0 $ !@ !"
"@ #= @ $ ! \"0 $ . . 8 ( !@ % \" $ ! 0 ) \" "
" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX X !@ "
" @ & 4 ( 0 $ ! D ( \\#\\. , 8 ( ! % \" "
" $ # 0 0 , >3XP X X !@ @ & 4 ( 0 $ ! D ( "
" \"$ . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ) 0 "
" X X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
" % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ "
"W0( ! P @ * \"P ( . . 8 ( !@ % \" $ ! 0 ) \" "
" A #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ "
" @ - 4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@ & \" "
" T !0 @ & 0 $ !@ !@ #= @ $ ! \"0 $ . . 8 ( !@ "
" % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( @ "
" X X !@ @ $ 4 ( 0 < ! ! ' >%XR+7E>,@ . 2 8 ( !@ "
" % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - "
" 4 ( !@ $ ! 8 8 W0( ! 0 0 \" #@ $@ & \" T !0 "
" @ & 0 $ !@ !@ #= @ $ ! \"@ ( . , 8 ( ! % \" "
" $ # 0 0 , >\"MY X !( !@ @ & 4 ( 0 , ! D 8 "
" \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ "
" $ ! !P ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 "
" $ ( @ X X !@ @ & 4 ( 0 $ ! D ( < &*HD . : "
"8 ( 0 % \" $ ! 0 . . 8 ( ! % \" $ ' 0 "
" 0 !P 'A>,BUY7C( #@ $@ & \" 8 !0 @ ! P $ \"0 !@ #P/P"
" / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 "
" $ ' @ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 "
"H \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !@ 8RB0 X !@ !@ "
" @ ! 4 ( 0 $ ! X P !@ @ $ 4 ( 0 , ! ! "
" P!X*WD #@ $@ & \" 8 !0 @ ! P $ \"0 !@ #P/P / _ "
" \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ' @ "
" X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 L \" #@ #"
"@ & \" 8 !0 @ ! 0 $ \"0 @ !P 8ZB0 X !H !@ @ ! "
"4 ( 0 $ ! X X !@ @ $ 4 ( 0 < ! ! ' >%XR*WE>"
",@ . 2 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX"
" !H !@ @ - 4 ( #@ $ ! 8 X W0( ! \"0 , , #0 X "
" / $ !$ 2 $P 0 . 2 8 ( #0 % \" 8 ! 0 & & "
"-T\" 0 $ % 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( "
" ! 0 D ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ "
"! @ , . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ "
"% 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D ! "
" #@ #@ & \" 0 !0 @ ! !@ $ $ 8 !J:6Y?97@ X P !@ @ $ "
" 4 ( 0 , ! ! P!X+'D #@ % ! & \" ( !0 @ ! 0 $ "
" !0 $ < ! ' '-E= !I;G!U=', 8V]U;G0 ')A;F=E #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ #P/PX P !@ @ & 4 ( ! D #"
"@ #@ & \" 8 !0 @ ! 0 $ \"0 @ $\"/0 X X !@ @ & "
" 4 ( 0 $ ! D ( 64 . . 8 ( !@ % \" $ ! "
"0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" X X !@ @ & 4 ( 0 $ ! D ( . 4 X 8 ( 0"
" % \" 8 ! 0 . . 8 ( @ % \" $ 0 % 0 0"
" $ #@ ,@\" & \" ( !0 @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C9"
"6QL '!A<F5N=%]G<FED &-E;&QS '-P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FE"
"D &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B . , 8 ( !@ % \" 0 "
" ) X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X X !@ @ & 4 ( 0 $ ! D ( . . 8"
" ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 "
"@ $ \"0 . , 8 ( !@ % \" 0 ) "
"X P !@ @ & 4 ( ! D #@ &@% & \" ( !0 @"
" ! 0 $ !0 $ !8 ! 8 $ '-U8F=R:60 !C;VYD 8V]N9%]T9"
"7AT &-E;&Q?:6YD97@ !P87)E;G1?9W)I9 =VED=&@ &AE:6="
"H= !G<FED7W!B <&)?9FQA9P &-O;&]R !C;"
"VYD:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y "
" 8V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: . , 8 ( !@ % \" "
" 0 ) X P !@ @ & 4 ( ! D #@ # & \""
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! "
"0 ) \" #@ # & \" 8 !0 @ $ \"0 . "
". 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! "
" D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X P "
"!@ @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! "
"0 $ \"0 @ !I0 X X !@ @ & 4 ( 0 $ ! D ( "
" 3D . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ D0 X X !@ @ & 4 ( 0"
" $ ! D ( -$ . . 8 ( !@ % \" $ ! 0 ) \" "
" #Y #@ /@ & \" ( !0 @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60"
"Q $=R:60R X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X \"0 0 !@ @ \" 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 "
" !#96QL,@ !R97-U;'0 !R97-U;'1?=&5X= !C;VQO<@ #@ # & \" 8 !0 "
" @ $ \"0 . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0 "
"@ $ \"0 . , 8 ( !@ % \" 0 ) "
"X ( P !@ @ \" 4 ( 0 $ ! 4 ! 0 0 * !'<FED, 1W)I9#$"
" $=R:60R !F=6YC=&EO;E]N86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D "
" ;W!E;@ &9I9P !M=6QT:5]M;V1E #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
"P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P"
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . B 8 ( \"0 % \" $ !8 0 \" 6 !24T"
" #@ $@ & \" ( !0 @ ! 0 $ !0 $ 4 ! !0 $U#3U, #@ "
" $ ! ! ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 "
" $ + @ X X !@ @ $ 4 ( 0 < ! ! ' >%XR*WE>,@ . 2 "
"8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ "
" @ - 4 ( !@ $ ! 8 8 W0( ! 0 8 \" #@ $@ & \" "
" T !0 @ & 0 $ !@ !@ #= @ $ ! \" ( . . 8 ( ! "
" % \" $ ' 0 0 !P 'A>,BMY7C( #@ $@ & \" 8 !0 @ ! P "
"$ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 "
" & & -T\" 0 $ & @ X !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 H \" #@ #@ & \" 0 !0 @ ! !P $ $ "
" < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/"
"P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !@ "
"( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ + @ "
"X P !@ @ $ 4 ( 0 , ! ! P!X*WD #@ $@ & \" 8 !0 @"
" ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" "
" 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 ( !@ "
"$ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 0 !0 @ ! !P "
"$ $ < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! D 8 "
"\\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $"
" ! !P ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $"
" * @ X P !@ @ $ 4 ( 0 , ! ! P!X*WD #@ $@ & \" 8 "
" !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4"
" ( !@ $ ! 8 8 W0( ! 0 L \" #@ #@ & \" 0 !0 @"
" ! !P $ $ < !X7C(K>5XR X !( !@ @ & 4 ( 0 , ! D "
" 8 \\#\\ #P/P / _#@ &@ & \" T !0 @ . 0 $ !@ #@ "
" #= @ $ ) P P - #@ \\ 0 $0 !( 3 ! X !( !@ @ - 4 "
" ( !@ $ ! 8 8 W0( ! 0 4 ! #@ $@ & \" T !0 @ "
" & 0 $ !@ !@ #= @ $ ! \"0 $ . 2 8 ( #0 % \" 8 "
" ! 0 & & -T\" 0 $ \" P X !( !@ @ - 4 ( !@ $ "
" ! 8 8 W0( ! 0 4 ! #@ $@ & \" T !0 @ & 0 $ "
" !@ !@ #= @ $ ! \"0 $ . . 8 ( ! % \" $ & 0 "
"0 !@ &II;E]E> #@ # & \" 0 !0 @ ! P $ $ # '@L>0 . F $ 8 ("
" @ % \" $ ! 0 % 0 !P $ C <V5T &EN<'5T<P!C;W5N= <F%N9V4 &5X8V5P="
" X X !@ @ & 4 ( 0 $ ! D ( \\#\\. , 8 ( "
" !@ % \" 0 ) X X !@ @ & 4 ( 0 $ ! "
" D ( ! CT . . 8 ( !@ % \" $ ! 0 ) \" %"
"E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X X !@ @ & "
" 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ % \" $ ! "
" 0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" X !0#@ !@ @ ! 4 ( !@ $ ! X X !@ @ \" 4 ( "
" 0 ! 4 ! ! 0 . R ( 8 ( @ % \" $ ! 0 % "
"0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5L;', <W!L:71?<&( ;G5M7V-E;&QS "
" 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( 9&5L971E7V-E;&Q?<&( X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \""
"0 . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ #@ & \" 8 !0 @ ! 0 $ \"0"
" @ X X !@ @ & 4 ( 0 $ ! D ( . , "
" 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . : 4 "
" 8 ( @ % \" $ ! 0 % 0 %@ $ !@ 0 <W5B9W)I9 &-O;F0 "
" !C;VYD7W1E>'0 8V5L;%]I;F1E> '!A<F5N=%]G<FED !W:61T"
": :&5I9VAT &=R:61?<&( !P8E]F;&%G 8V"
"]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD:71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]N7W1E>'1?> "
" &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W)I9%]P=7-H7W=I9'1H X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ "
" \"0 . , 8 ( !@ % \" 0 ) X X !@ @ & "
" 4 ( 0 $ ! D ( . , 8 ( !@ % \" "
" 0 ) X X !@ @ & 4 ( 0 $ ! D ( . . "
" 8 ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !"
"0 @ $ \"0 . . 8 ( !@ % \" $ ! 0 ) \""
" #@ # & \" 8 !0 @ $ \"0 . . 8 ( !"
"@ % \" $ ! 0 ) \" &E #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ !.0 X X !@ @ & 4 ( 0 $ ! D ( "
" )$ . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & "
"\" 8 !0 @ ! 0 $ \"0 @ T0 X X !@ @ & 4 ( "
" 0 $ ! D ( /D . ^ 8 ( @ % \" $ ! 0 % 0 !"
"@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & \" 8 !0 @ $ \""
"0 . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ ) ! & \" ( !0 @ ! 0 $ !0 "
"$ P ! / $-E;&PQ $-E;&PR ')E<W5L= ')E<W5L=%]T97AT &-O;&]R . , "
" 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . , "
"8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ @# & \" ( !0 @ ! 0 $ !0 $ ! ! H $=R"
":60P !'<FED,0 1W)I9#( &9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;G!U=', <V5T=&EN9W"
", &-H96-K960 !O<&5N 9FEG &UU;'1I7VUO9&4 . , 8 ("
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X \"( !@ @ ) 4 ( 0 %@ ! "
" ( !8 %)30 . 2 8 ( @ % \" $ ! 0 % 0 !0 $ % "
"34-/4P . "
}
}
# Finite State Machines
#
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:44:41
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
#
#
......@@ -1135,8 +1104,6 @@ Stateflow {
viewObj 2
machine 1
toolbarMode LIBRARY_TOOLBAR
subviewS {
}
ssIdHighWaterMark 6
decomposition CLUSTER_CHART
type EML_CHART
......
......@@ -6,7 +6,7 @@ Model {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedModelVersion "1.4"
ComputedModelVersion "1.5"
NumModelReferences 0
NumTestPointedSignals 0
}
......@@ -23,11 +23,11 @@ Model {
Creator "lawford"
UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>"
LastModifiedBy "colin"
LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>"
LastModifiedDate "Mon Jan 24 12:31:15 2011"
RTWModifiedTimeStamp 217773073
ModelVersionFormat "1.%<AutoIncrement:4>"
LastModifiedDate "Thu May 15 15:27:04 2014"
RTWModifiedTimeStamp 322068420
ModelVersionFormat "1.%<AutoIncrement:5>"
ConfigurationManager "None"
SampleTimeColors off
SampleTimeAnnotations off
......@@ -676,7 +676,7 @@ Model {
}
System {
Name "PowerCond"
Location [133, 226, 713, 486]
Location [842, 554, 1422, 814]
Open on
ModelBrowserVisibility off
ModelBrowserWidth 200
......@@ -1009,144 +1009,128 @@ MatData {
DataRecord {
Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X \"(*P !@ @ ) "
"4 ( 0 %@K ! ( !8*P %)30 . N\"H 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . <\"H 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!"
"E<E]? #@ # J & \" $ !0 @ !% 0 $ #@ $@' & \" D !0 @"
" 8!P 0 $ @ !@' \" + -@! X @ . ( %@# \"X!@ & < 1W)I9# 0V5L;', 0V5L;#$"
" 8V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7"
"VEN9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!"
"B &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:"
"6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1"
"I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P "
" !0 $ + P ( * ! "
" , ' @ 0 $ 0 4 # @ 8 ! @ "
" < \" @ @ & 0 D % ! H "
" ( ! L ) ) 0 $ Y 'P $ Z ( $ [ )0 $ "
" \\ )@ $ ] )P $ ^ * $ _ *0 $ ! *@ $ !! P ( ! -@ !\\ "
" ! -P \" ! . 4 # 0 !@ A 0 \"@ B 0 \"D C 0 \"H 2 0 \"L"
" & ! $ !0 $ ! !@ $ \" !P $ 5 $0 $ 6 $@ $ 7 8 "
" ( 0 \\ , 0 ! - 0 !$ . 0 !( / 0 !, 0 0 !0 !@ 0 "
" ! P 4 ! ! 8 ! !0 < ! !@ !$ ! !P !( ! \" & ! $ "
" ) !0 $ * !@ $ + !P $ , $0 $ - $@ $ . D $ 0 !D %"
" 0 !H & 0 !L ' 0 \"( 5 0 \", 6 0 \"0 7 0 \"4 1 0 \"8 "
" 2 0 \"< & \" $ < # $ = #0 $ > #@ $ ? #P $ @ $ $ "
" A 4 # 0 \"P A 0 \"T B 0 \"X C 0 \"\\ 2 0 # % P "
"$ Q (0 $ R (@ $ S (P $ T $@ $ U "
" #@ . . 8 "
" ( !@ % \" $ ! 0 ) \" * !]J% #@ $ & \" 0 !0 @ "
" ! \"@ $ $ H !0;W=E<CQ+;W5T #@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( D 'XH4"
" . @ 8 ( 0 % \" $ ! 0 . 4 8 ( ! % \" $ "
" 9 0 0 &0 $MO=70\\/5!O=V5R(\"8F(%!O=V5R/#U+:6X #@ #@ & \" 8 !0 @ "
" ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@ $ ! 8 "
" 8 W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" #P/PX !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P "
" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \"0 ?JA0 X !P !@ @ "
" ! 4 ( 0 $ ! X ! !@ @ $ 4 ( 0 D ! ! "
") 2VEN/%!O=V5R X X !@ @ & 4 ( 0 $ ! D ( \"$ ."
" 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ % 0 X X"
" !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 8 ( !@ %"
" \" $ # 0 ) & / _ \\#\\ #P/PX !0 !@ @ - 4 "
"( \" $ ! 8 @ W0( ! P 0 & !P ( . . 8 ( !@ %"
" \" $ ! 0 ) \" A #@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( !"
" 0 ( # #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \" ?RA0 X "
"X !@ @ & 4 ( 0 $ ! D ( H '^H4 . 2 8 ( #0 % "
" \" 8 ! 0 & & -T\" 0 $ % 0 X X !@ @ & 4 ( "
" 0 $ ! D ( \\#\\. 2 8 ( !@ % \" $ # 0 )"
" & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8"
" W0( ! 0 0 \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" \"0 >ZA0 X P !@ @ $ 4 ( 0 ! ! #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $ !"
" 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( $ . "
" 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X X"
" !@ @ & 4 ( 0 $ ! D ( @ 'RH4 . . 8 ( !@ % "
" \" $ ! 0 ) \" * !]*% #@ $@ & \" T !0 @ & 0 $ "
" !@ !@ #= @ $ ! \"0 $ . . 8 ( !@ % \" $ ! 0 ) "
" \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX X"
" !@ @ & 4 ( 0 $ ! D ( D 'PH4 . . 8 ( !@ % "
" \" $ ! 0 ) \" / _#@ $@ & \" 8 !0 @ ! P $ "
" \"0 !@ \"5]_#B8)[O/]7<OV17/^T_0#7B*0UE[S\\. 2 8 ( #0 % \" 8 ! 0 "
"& & -T\" 0 $ ( @ X X !@ @ & 4 ( 0 $ ! D ("
" H $ HD . . 8 ( ! % \" $ % 0 0 !0 &9A;'-E #@ $@ & "
" \" 8 !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 "
"( #0 % \" 8 ! 0 & & -T\" 0 $ & @ X !( !@ @ "
"- 4 ( !@ $ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ \"0 0*B0 X !@ !@ @ ! 4 ( 0 $ "
"! X P !@ @ $ 4 ( 0 0 ! ! ! !0<F5V#@ $@ & \" 8 "
" !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 "
"% \" 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 "
"( !@ $ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ "
"! 0 $ \"0 @ @ CRB0 X !@ !@ @ ! 4 ( 0 $ ! X P"
" !@ @ $ 4 ( 0 0 ! ! ! !T<G5E#@ $@ & \" 8 !0 @ ! "
" P $ \"0 !@ #P/P / _ \\#\\. 4 8 ( #0 % \" @ "
"! 0 & ( -T\" 0 , # \"@ L $ #@ $@ & \" T !0 @ "
" & 0 $ !@ !@ #= @ $ ! !0 $ . 2 8 ( #0 % \" 8 "
"! 0 & & -T\" 0 $ ) 0 X !( !@ @ - 4 ( !@ $ !"
" 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @ & 0 $ "
" !@ !@ #= @ $ ! !0 $ . 2 8 ( #0 % \" 8 ! 0 & "
" & -T\" 0 $ ) 0 X ! !@ @ $ 4 ( 0 L ! ! + "
" 9E]0;W=E<D-O;F0 X !@ !@ @ $ 4 ( 0 \"P ! ! L 4&]W97(L2VEN.G)E"
"86PL2V]U=#I[>#IR96%L?'@\\2VEN?2Q0<F5V.F)O;VP #@ % ! & \" ( !0 @ ! 0 $ "
"!0 $ < ! ' '-E= !I;G!U=', 8V]U;G0 ')A;F=E #@ #@ & \" 8 !0 @ ! "
"0 $ \"0 @ #P/PX P !@ @ $ 4 ( ! ! #@"
" #@ & \" 8 !0 @ ! 0 $ \"0 @ (C#0 X X !@ @ & "
" 4 ( 0 $ ! D ( 64 . . 8 ( !@ % \" $ ! 0 "
" ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" X X !@ @ & 4 ( 0 $ ! D ( . 4 X 8 ( 0 "
" % \" 8 ! 0 . . 8 ( @ % \" $ 0 % 0 0 "
" $ #@ ,@\" & \" ( !0 @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C96Q"
"L '!A<F5N=%]G<FED &-E;&QS '-P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FED "
" &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B . , 8 ( !@ % \" 0 "
" ) X P !@ @ & 4 ( ! D #@ # & \" 8"
" !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X X !@ @ & 4 ( 0 $ ! D ( . . 8 "
" ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ &@% & \" ( !0 @ "
" ! 0 $ !0 $ !8 ! 8 $ '-U8F=R:60 !C;VYD 8V]N9%]T97A"
"T &-E;&Q?:6YD97@ !P87)E;G1?9W)I9 =VED=&@ &AE:6=H="
" !G<FED7W!B <&)?9FQA9P &-O;&]R !C;VY"
"D:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y 8"
"V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: . , 8 ( !@ % \" 0"
" ) X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! 0 "
" ) \" #@ # & \" 8 !0 @ $ \"0 . . "
" 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 !"
"0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! "
" D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X P !@"
" @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ !I0 X X !@ @ & 4 ( 0 $ ! D ( "
" 3D . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & \" "
" 8 !0 @ ! 0 $ \"0 @ D0 X X !@ @ & 4 ( 0 "
" $ ! D ( -$ . . 8 ( !@ % \" $ ! 0 ) \" "
" #Y #@ /@ & \" ( !0 @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60Q"
" $=R:60R X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X \"0 0 !@ @ \" 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 "
" !#96QL,@ !R97-U;'0 !R97-U;'1?=&5X= !C;VQO<@ #@ # & \" 8 !0 "
"@ $ \"0 . , 8 ( !@ % \" 0 ) "
"X P !@ @ & 4 ( ! D #@ # & \" 8 !0 @"
" $ \"0 . , 8 ( !@ % \" 0 ) X"
" ( P !@ @ \" 4 ( 0 $ ! 4 ! 0 0 * !'<FED, 1W)I9#$ "
" $=R:60R !F=6YC=&EO;E]N86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D "
" ;W!E;@ &9I9P !M=6QT:5]M;V1E #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
"P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P"
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X @)@ !@ @ ) 4"
" ( 0 / E ! ( #P)0 %)30 . 4\"4 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . \"\"4 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!"
"E<E]? #@ ,@D & \" $ !0 @ U 0 $ #@ )@& & \" D !0 @"
" !H!@ 0 $ @ &@& \" + -@! X @ . ( %@# (!@ : 8 1W)I9# 0V5L;', 0V5L;#$ "
"8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E> "
"!R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&]R"
" &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:6"
"]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W1I"
";VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ( $0 !X C *P "
" !0 $ + P ( * ! "
", ' @ 0 $ 0 4 # @ 8 ! @ "
" < \" @ @ & 0 D % ! H "
" ( ! L ) ) 0 $ I 'P $ J ( $ K )0 $ "
"L )@ $ M )P $ N * $ O *0 $ P *@ $ Q P ( ! )@ !\\ !"
" )P \" ! * 0 # 0 ! A 0 !L B 0 !P 7 0 !T ! 0 ! "
" 4 ! 0 8 ! #@ ! ! #P $ !P $ * \"P $ + # $ , "
" #0 $ - 0 $ 0 ( % 0 , & 0 0 0 0 4 ! 0 ! "
"!@ 4 ! !P 8 ! \" ! ! \"0 & ! $ 1 !0 $ 2 !@ $ 7 "
"% $ 8 %0 $ 9 $ $ : 0 ' 0 !, + 0 !0 , 0 !4 - 0"
" !8 ! , ! '@ \"$ ! 'P \"( ! ( !< ! (0 $ P $ B (0"
" $ C (@ $ D %P $ E "
" X #@ $ & \" 0 !0 "
" @ ! \"@ $ $ H !0;W=E<CQ+;W5T #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX !0 !@ @ $ 4 ( 0 !D ! ! 9 2V]U=#"
"P]4&]W97(@)B8@4&]W97(\\/4MI;@ . . 8 ( !@ % \" $ ! 0 ) \" "
" ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 "
"$ . . 8 ( !@ % \" $ ! 0 ) \" / _#@ $ & \" "
" 0 !0 @ ! \"0 $ $ D !+:6X\\4&]W97( #@ #@ & \" 8 !0 "
" @ ! 0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 "
" @ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ W0( ! P "
"0 & !P ( . . 8 ( !@ % \" $ ! 0 ) \" A #@ #"
"@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - "
"4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @"
" & 0 $ !@ !@ #= @ $ ! !0 $ . . 8 ( !@ % \" $ "
" ! 0 ) \" / _#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" #= @ $ ! ! ( . , 8 ( ! % \" $ 0 0 X "
" X !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ( @ X X !@ @ & 4 "
" ( 0 $ ! D ( \\#\\. . 8 ( !@ % \" $ ! 0 "
" ) \" ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ "
" ! @ , . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ "
" ) 0 X X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 "
" ( !@ % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @"
" ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $ ! 8 "
" 8 W0( ! 0 @ \" #@ #@ & \" 0 !0 @ ! !0 $ $ 4 "
" !F86QS90 X !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P "
" / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !@ ( "
" . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( @ X "
" P !@ @ $ 4 ( 0 0 ! ! ! !0<F5V#@ $@ & \" 8 !0 @ "
" ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 "
" ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 ( !@ $ "
" ! 8 8 W0( ! 0 @ \" #@ # & \" 0 !0 @ ! ! $ "
" $ $ '1R=64. 2 8 ( !@ % \" $ # 0 ) & / _ \\"
"#\\ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ W0( ! P , "
" * \"P 0 . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ "
" % 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D "
" ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , "
". 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ % 0 X !"
"( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D ! #@ $ & "
" \" 0 !0 @ ! \"P $ $ L !F7U!O=V5R0V]N9 #@ & & \" 0 "
" !0 @ ! + $ $ \"P !0;W=E<BQ+:6XZ<F5A;\"Q+;W5T.GMX.G)E86Q\\>#Q+:6Y]+%!R978Z8F]O; "
". F $ 8 ( @ % \" $ ! 0 % 0 !P $ C <V5T &EN<'5T<P!C;W5N= "
"<F%N9V4 &5X8V5P= X X !@ @ & 4 ( 0 $ ! D ( \\#\\."
" , 8 ( ! % \" 0 0 X X !@ @ & 4 ( "
" 0 $ ! D ( \"(PT . . 8 ( !@ % \" $ ! 0 ) "
" \" %E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X X"
" !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ %"
" \" $ ! 0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ X !0#@ !@ @ ! 4 ( !@ $ ! X X !@ @ \""
" 4 ( 0 ! 4 ! ! 0 . R ( 8 ( @ % \" $ ! "
" 0 % 0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5L;', <W!L:71?<&( "
" ;G5M7V-E;&QS 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( 9&5L971E7V-E;&Q?<&( X P "
"!@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P !"
"@ @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! 0"
" $ \"0 @ X X !@ @ & 4 ( 0 $ ! D ( "
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" . : 4 8 ( @ % \" $ ! 0 % 0 %@ $ !@ 0 <W5B9W)I9 "
" &-O;F0 !C;VYD7W1E>'0 8V5L;%]I;F1E> '!A<F5N=%]G<FED "
" !W:61T: :&5I9VAT &=R:61?<&( !P8E]F;&%G "
" 8V]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD:71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]"
"N7W1E>'1?> &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W)I9%]P=7-H7W=I9'1H X P "
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . B 8 ( \"0 % \" $ !8 0 \" 6 !24T "
" #@ $@ & \" ( !0 @ ! 0 $ !0 $ 4 ! !0 $U#3U, #@ "
" $ \"0 . , 8 ( !@ % \" 0 ) X X "
" !@ @ & 4 ( 0 $ ! D ( . , 8 ( !@ % "
"\" 0 ) X X !@ @ & 4 ( 0 $ ! D ( "
" . . 8 ( !@ % \" $ ! 0 ) \" #@ # & \""
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! "
"0 ) \" #@ # & \" 8 !0 @ $ \"0 . "
". 8 ( !@ % \" $ ! 0 ) \" &E #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ !.0 X X !@ @ & 4 ( 0 $ ! "
" D ( )$ . . 8 ( !@ % \" $ ! 0 ) \" \"1"
" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ T0 X X !@ @ & "
" 4 ( 0 $ ! D ( /D . ^ 8 ( @ % \" $ ! "
" 0 % 0 !@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P !"
"@ @ & 4 ( ! D #@ ) ! & \" ( !0 @ ! 0"
" $ !0 $ P ! / $-E;&PQ $-E;&PR ')E<W5L= ')E<W5L=%]T97AT &-O;&]R "
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
"4 ( ! D #@ @# & \" ( !0 @ ! 0 $ !0 $ ! "
" ! H $=R:60P !'<FED,0 1W)I9#( &9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;"
"G!U=', <V5T=&EN9W, &-H96-K960 !O<&5N 9FEG &UU;'1I7VUO9&4 "
". , 8 ( !@ % \" 0 ) X P !@ @ & 4 ("
" ! D #@ # & \" 8 !0 @ $ \"0 ."
" , 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . "
" , 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . "
" , 8 ( !@ % \" 0 ) X \"( !@ @ ) 4 ( "
" 0 %@ ! ( !8 %)30 . 2 8 ( @ % \" $ ! 0 % 0"
" !0 $ % 34-/4P . "
}
}
# Finite State Machines
#
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:44:41
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
#
#
......
Model {
Name "ReadabilityExample"
Version 7.6
Version 7.5
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedModelVersion "1.1"
ComputedModelVersion "1.3"
NumModelReferences 0
NumTestPointedSignals 0
}
......@@ -16,7 +16,6 @@ Model {
OverrideScopeRefreshTime on
DisableAllScopes off
DataTypeOverride "UseLocalSettings"
DataTypeOverrideAppliesTo "AllNumericTypes"
MinMaxOverflowLogging "UseLocalSettings"
MinMaxOverflowArchiveMode "Overwrite"
MaxMDLFileLineLength 120
......@@ -24,11 +23,11 @@ Model {
Creator "lawford"
UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>"
LastModifiedBy "lawford"
LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>"
LastModifiedDate "Wed Dec 22 14:26:48 2010"
RTWModifiedTimeStamp 214928792
ModelVersionFormat "1.%<AutoIncrement:1>"
LastModifiedDate "Thu May 15 16:34:20 2014"
RTWModifiedTimeStamp 322072433
ModelVersionFormat "1.%<AutoIncrement:3>"
ConfigurationManager "None"
SampleTimeColors off
SampleTimeAnnotations off
......@@ -127,7 +126,6 @@ Model {
MaxConsecutiveMinStep "1"
RelTol "1e-3"
SolverMode "Auto"
ConcurrentTasks off
Solver "ode45"
SolverName "ode45"
SolverJacobianMethodControl "auto"
......@@ -193,12 +191,12 @@ Model {
ConditionallyExecuteInputs on
InlineParams off
UseIntDivNetSlope off
UseSpecifiedMinMax off
InlineInvariantSignals off
OptimizeBlockIOStorage on
BufferReuse on
EnhancedBackFolding off
StrengthReduction off
EnforceIntegerDowncast on
ExpressionFolding on
BooleansAsBitfields off
BitfieldContainerType "uint_T"
......@@ -251,8 +249,6 @@ Model {
MinStepSizeMsg "warning"
TimeAdjustmentMsg "none"
MaxConsecutiveZCsMsg "error"
MaskedZcDiagnostic "warning"
IgnoredZcDiagnostic "warning"
SolverPrmCheckMsg "warning"
InheritedTsInSrcMsg "warning"
DiscreteInheritContinuousMsg "warning"
......@@ -289,7 +285,6 @@ Model {
AssertControl "UseLocalSettings"
EnableOverflowDetection off
ModelReferenceIOMsg "none"
ModelReferenceMultiInstanceNormalModeStructChecksumCheck "error"
ModelReferenceVersionMismatchMessage "none"
ModelReferenceIOMismatchMessage "none"
ModelReferenceCSMismatchMessage "none"
......@@ -299,17 +294,11 @@ Model {
ModelReferenceExtraNoncontSigs "error"
StateNameClashWarn "warning"
SimStateInterfaceChecksumMismatchMsg "warning"
InitInArrayFormatMsg "warning"
StrictBusMsg "ErrorLevel1"
BusNameAdapt "WarnAndRepair"
NonBusSignalsTreatedAsBus "none"
LoggingUnavailableSignals "error"
BlockIODiagnostic "none"
SFUnusedDataAndEventsDiag "warning"
SFUnexpectedBacktrackingDiag "warning"
SFInvalidInputDataAccessInChartInitDiag "warning"
SFNoUnconditionalDefaultTransitionDiag "warning"
SFTransitionOutsideNaturalParentDiag "warning"
}
Simulink.HardwareCC {
$ObjectID 6
......@@ -318,11 +307,6 @@ Model {
ProdBitPerShort 16
ProdBitPerInt 32
ProdBitPerLong 32
ProdBitPerFloat 32
ProdBitPerDouble 64
ProdBitPerPointer 32
ProdLargestAtomicInteger "Char"
ProdLargestAtomicFloat "None"
ProdIntDivRoundTo "Undefined"
ProdEndianess "Unspecified"
ProdWordSize 32
......@@ -332,11 +316,6 @@ Model {
TargetBitPerShort 16
TargetBitPerInt 32
TargetBitPerLong 32
TargetBitPerFloat 32
TargetBitPerDouble 64
TargetBitPerPointer 32
TargetLargestAtomicInteger "Char"
TargetLargestAtomicFloat "None"
TargetShiftRightIntArith on
TargetIntDivRoundTo "Undefined"
TargetEndianess "Unspecified"
......@@ -354,7 +333,6 @@ Model {
UpdateModelReferenceTargets "IfOutOfDateOrStructuralChange"
CheckModelReferenceTargetMessage "error"
EnableParallelModelReferenceBuilds off
ParallelModelReferenceErrorOnInvalidPool on
ParallelModelReferenceMATLABWorkerInit "None"
ModelReferenceNumInstancesAllowed "Multi"
PropagateVarSize "Infer from blocks in model"
......@@ -374,7 +352,6 @@ Model {
SimExtrinsic on
SimIntegrity on
SimUseLocalCustomCode off
SimParseCustomCode on
SimBuildMode "sf_incremental_build"
}
Simulink.RTWCC {
......@@ -422,7 +399,6 @@ Model {
GenerateTraceReportSf off
GenerateTraceReportEml off
GenerateCodeInfo off
GenerateSLWebview off
RTWCompilerOptimization "Off"
CheckMdlBeforeBuild "Off"
CustomRebuildMode "OnUpdate"
......@@ -470,11 +446,10 @@ Model {
IncAutoGenComments off
SimulinkDataObjDesc off
SFDataObjDesc off
MATLABFcnDesc off
IncDataTypeInIds off
MangleLength 1
CustomSymbolStrGlobalVar "$R$N$M"
CustomSymbolStrType "$N$R$M"
CustomSymbolStrType "$N$R$M_T"
CustomSymbolStrField "$N$M"
CustomSymbolStrFcn "$R$N$M$F"
CustomSymbolStrFcnArg "rt$I$N$M"
......@@ -485,9 +460,7 @@ Model {
ParamNamingRule "None"
SignalNamingRule "None"
InsertBlockDesc off
InsertPolySpaceComments off
SimulinkBlockComments on
MATLABSourceComments off
EnableCustomComments off
InlinedPrmAccess "Literals"
ReqsInCode off
......@@ -499,7 +472,7 @@ Model {
Version "1.10.0"
Array {
Type "Cell"
Dimension 16
Dimension 17
Cell "GeneratePreprocessorConditionals"
Cell "IncludeMdlTerminateFcn"
Cell "CombineOutputUpdateFcns"
......@@ -509,13 +482,14 @@ Model {
Cell "GenerateTestInterfaces"
Cell "ModelStepFunctionPrototypeControlCompliant"
Cell "CPPClassGenCompliant"
Cell "MultiInstanceERTCode"
Cell "PortableWordSizes"
Cell "PurelyIntegerCode"
Cell "SupportComplex"
Cell "SupportAbsoluteTime"
Cell "SupportContinuousTime"
Cell "SupportNonInlinedSFcns"
Cell "PortableWordSizes"
Cell "MultiInstanceERTCode"
Cell "SupportNonFinite"
PropName "DisabledProps"
}
TargetFcnLib "ansi_tfl_table_tmw.mat"
......@@ -537,7 +511,6 @@ Model {
IncludeMdlTerminateFcn on
GeneratePreprocessorConditionals "Disable all"
CombineOutputUpdateFcns off
CombineSignalStateStructs off
SuppressErrorStatus off
ERTFirstTimeCompliant off
IncludeFileDelimiter "Auto"
......@@ -627,14 +600,19 @@ Model {
Block {
BlockType Inport
Port "1"
OutMin "[]"
OutMax "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
UseBusObject off
BusObject "BusObject"
BusOutputAsStruct off
PortDimensions "-1"
VarSizeSig "Inherit"
SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto"
SamplingMode "auto"
LatchByDelayingOutsideSignal off
......@@ -644,14 +622,19 @@ Model {
Block {
BlockType Outport
Port "1"
OutMin "[]"
OutMax "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
UseBusObject off
BusObject "BusObject"
BusOutputAsStruct off
PortDimensions "-1"
VarSizeSig "Inherit"
SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto"
SamplingMode "auto"
SourceOfInitialOutputValue "Dialog"
......@@ -682,10 +665,7 @@ Model {
RTWMemSecDataParameters "Inherit from model"
SimViewingDevice off
DataTypeOverride "UseLocalSettings"
DataTypeOverrideAppliesTo "AllNumericTypes"
MinMaxOverflowLogging "UseLocalSettings"
Variant off
GeneratePreprocessorConditionals off
}
Block {
BlockType Terminator
......@@ -693,7 +673,7 @@ Model {
}
System {
Name "ReadabilityExample"
Location [70, 200, 650, 460]
Location [683, 246, 1311, 741]
Open on
ModelBrowserVisibility off
ModelBrowserWidth 200
......@@ -707,11 +687,11 @@ Model {
ShowPageBoundaries off
ZoomFactor "100"
ReportName "simulink-default.rpt"
SIDHighWatermark "6"
SIDHighWatermark 6
Block {
BlockType SubSystem
Name "f"
SID "1"
SID 1
Ports [2, 1]
Position [105, 64, 270, 131]
LibraryVersion "1.12"
......@@ -729,8 +709,8 @@ Model {
MaskHideContents off
MaskDescription "Table Block"
MaskDisplay "port_label('input',1,'x');port_label('input',2,'y');port_label('output',1,'output');text(0.5,"
" 0.9, 'Tabular Expression', 'horizontalAlignment', 'center')\ncolor('red')\ntext(0.5, 0.1, 'Not Checked', 'horiz"
"ontalAlignment', 'center')"
" 0.9, 'Tabular Expression', 'horizontalAlignment', 'center');color('green');text(0.5, 0.1, 'Checked', 'horizonta"
"lAlignment', 'center')"
MaskIconFrame on
MaskIconOpaque on
MaskIconRotate "none"
......@@ -738,7 +718,7 @@ Model {
MaskIconUnits "normalized"
System {
Name "f"
Location [433, 447, 931, 747]
Location [399, 328, 945, 863]
Open off
ModelBrowserVisibility off
ModelBrowserWidth 200
......@@ -754,14 +734,14 @@ Model {
Block {
BlockType Inport
Name "x"
SID "4"
SID 4
Position [35, 38, 65, 52]
IconDisplay "Port number"
}
Block {
BlockType Inport
Name "y"
SID "5"
SID 5
Position [35, 38, 65, 52]
Port "2"
IconDisplay "Port number"
......@@ -769,7 +749,7 @@ Model {
Block {
BlockType SubSystem
Name "code"
SID "3"
SID 3
Ports [2, 1]
Position [250, 49, 320, 96]
LibraryVersion "1.31"
......@@ -784,16 +764,16 @@ Model {
MaskHideContents off
MaskType "Stateflow"
MaskDescription "Embedded MATLAB block"
MaskSelfModifiable on
MaskDisplay "disp('f');"
MaskSelfModifiable on
MaskIconFrame on
MaskIconOpaque off
MaskIconRotate "none"
MaskPortRotate "default"
MaskIconUnits "autoscale"
MaskIconUnits "normalized"
System {
Name "code"
Location [257, 457, 812, 717]
Location [223, 338, 826, 833]
Open off
ModelBrowserVisibility off
ModelBrowserWidth 200
......@@ -806,18 +786,18 @@ Model {
TiledPageScale 1
ShowPageBoundaries off
ZoomFactor "100"
SIDHighWatermark "19"
SIDHighWatermark 22
Block {
BlockType Inport
Name "x"
SID "3::1"
SID 1
Position [20, 101, 40, 119]
IconDisplay "Port number"
}
Block {
BlockType Inport
Name "y"
SID "3::18"
SID 18
Position [20, 136, 40, 154]
Port "2"
IconDisplay "Port number"
......@@ -825,15 +805,15 @@ Model {
Block {
BlockType Demux
Name " Demux "
SID "3::15"
SID 21
Ports [1, 1]
Position [270, 160, 320, 200]
Position [270, 230, 320, 270]
Outputs "1"
}
Block {
BlockType "S-Function"
Name " SFunction "
SID "3::14"
SID 20
Tag "Stateflow S-Function ReadabilityExample 2"
Ports [2, 2]
Position [180, 100, 230, 160]
......@@ -850,25 +830,20 @@ Model {
Block {
BlockType Terminator
Name " Terminator "
SID "3::17"
Position [460, 171, 480, 189]
SID 22
Position [460, 241, 480, 259]
}
Block {
BlockType Outport
Name "output"
SID "3::19"
SID 19
Position [460, 101, 480, 119]
IconDisplay "Port number"
}
Line {
SrcBlock " SFunction "
SrcPort 1
DstBlock " Demux "
DstPort 1
}
Line {
SrcBlock "x"
SrcPort 1
Points [120, 0]
DstBlock " SFunction "
DstPort 1
}
......@@ -892,12 +867,18 @@ Model {
DstBlock " Terminator "
DstPort 1
}
Line {
SrcBlock " SFunction "
SrcPort 1
DstBlock " Demux "
DstPort 1
}
}
}
Block {
BlockType Outport
Name "output"
SID "6"
SID 6
Position [35, 53, 65, 67]
IconDisplay "Port number"
}
......@@ -928,171 +909,148 @@ MatData {
DataRecord {
Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X !@- !@ @ ) 4"
" ( 0 # T ! ( P- %)30 . D#, 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . 2#, 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<E"
"]? #@ @S & \" $ !0 @ !> 0 $ #@ ) & \" D !0 @ "
"#0\" 0 $ @ - ( \" + -@! X @ . ( +@# !0\" T @ 1W)I9# 0V5L;', 0V5L;#$ 8"
"V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7VE"
"N9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!B "
"&-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:6]"
"N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1I;"
"VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P "
" !0 $ / P ( . ! ,"
" ( @ 0 # 0 4 \" @ 8 ! @ "
" < ' 0 @ & @ D $ @ H "
" % ! L ) ! P * ! T + ! "
" X , ! \\ - ) 0 $ !2 'P $ !3 ( $ !4 "
" )0 $ !5 )@ $ !6 )P $ !7 * $ !8 *0 $ !9 *@ $ !: P ( ! "
" 3P !\\ ! 4 \" ! 40 4 # 0 ! A 0 #( B 0 #, C 0 #0 2 "
" 0 #4 & ! $ !0 $ ! !@ $ \" !P $ - $0 $ . $@ $ / "
" 0 ( 0 D , 0 H - 0 L . 0 P !@ 0 ! P 4 ! ! "
" 8 ! !0 < ! !@ !$ ! !P !( ! \" ) ! $ 1 !0 $ 2 !@ "
" $ 3 !P $ L %0 $ M %@ $ N %P $ O $0 $ P $@ $ Q !@ "
" @ ! )@ P ! )P T ! * X ! *0 \\ ! *@ ! ! *P ) ! "
"$ 4 !0 $ 5 !@ $ 6 !P $ 7 %0 $ 8 %@ $ 9 %P $ : $0 $ "
" ; $@ $ < \"0 0 ! '0 4 ! '@ 8 ! 'P < ! ( !4 ! (0 !8 "
" ! (@ !< ! (P !$ ! ) !( ! )0 4 # 0 #8 A 0 #< B 0 #@ "
"C 0 #D 2 0 #H % P $ [ (0 $ \\ (@ $ ] (P $ ^ $@ $ _"
" !0 , ! 0 \"$ ! 00 \"( ! 0@ \", ! 0P !( ! 1 4 # 0 $4 "
"A 0 $8 B 0 $< C 0 $@ 2 0 $D % P $ !* (0 $ !+ (@ $ !, "
" (P $ !- $@ $ !. "
" . X X !"
"@ @ & 4 ( 0 $ ! D ( 0 #DGD . , 8 ( ! % \" "
" $ $ 0 0 0 >#P],0X X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" $ _)Y #@ & & \""
" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! P $ $ "
" # '@^,0 . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & \""
" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 $ . . 8 ( !@ "
" % \" $ ! 0 ) \" / _#@ $@ & \" 8 !0 @ ! P"
" $ \"0 !@ #P/P / _ \\#\\. 4 8 ( #0 % \" < ! "
" 0 & ' -T\" 0 ( $ !@ ( #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ 0 X X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" "
" P X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! "
"#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T "
" !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . . 8 ( !@ % \""
" $ ! 0 ) \" $ U)Y #@ # & \" 0 !0 @ ! P $ $"
" # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & "
"\" 8 !0 @ ! 0 $ \"0 @ ! 2?0 X !@ !@ @ ! 4 ( "
" 0 $ ! X P !@ @ $ 4 ( 0 0 ! ! ! !Y/3TP#@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@"
" $ ! 8 8 W0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" $ \")] #@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0"
" , ! D 8 #'FGO3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ #@ & \" 8 !0 @ ! 0"
" $ \"0 @ ! !2?0 X !@ !@ @ ! 4 ( 0 $ ! X P !@ "
" @ $ 4 ( 0 , ! ! P!Y/C #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 W"
"0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/"
"PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
" % \" $ ! 0 ) \" $ &)] #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 #'FGO"
"3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ % & \" T !0 @ ( 0 $ !@ \" #= @ "
" $ # !P D * @ X X !@ @ & 4 ( 0 $ ! D ( "
" \"$ . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & \" "
" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , . . 8 ( !@ "
" % \" $ ! 0 ) \" $ W)Y #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ ! .\">0 X !( !@ @ - 4 ( !@ $ ! 8 8 W"
"0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/"
"PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
" % \" $ ! 0 ) \" $ V)Y #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 #'FGO"
"3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ "
" $ ! !P ( . . 8 ( !@ % \" $ ! 0 ) \" $ \\)Y #@ "
" # & \" 0 !0 @ ! P $ $ # '@M>0 . 2 8 ( !@ % \" "
" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ "
" $ ! 8 8 W0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 "
" $ !@ !@ #= @ $ ! !P ( . . 8 ( !@ % \" $ ! 0 "
" ) \" $ )] #@ & & \" $ !0 @ ! 0 $ #@ # & \" "
" 0 !0 @ ! P $ $ # '@K>0 . 2 8 ( !@ % \" $ # 0 "
" ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 0 \" #@ $@ & \" T !0 @ & 0 $ !@ "
"!@ #= @ $ ! \"0 ( . . 8 ( !@ % \" $ ! 0 ) \" "
" $ #)] #@ & & \" $ !0 @ ! 0 $ #@ # & \" 0 !0 "
" @ ! P $ $ # '@J>0 . 2 8 ( !@ % \" $ # 0 ) & "
" / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W"
"0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ "
" $ ! \"0 ( . . 8 ( !@ % \" $ ! 0 ) \" $ $)] #@ "
" & & \" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! 0 "
" $ $ ! '@ . 2 8 ( !@ % \" $ # 0 ) & / _ "
" \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 "
" 0 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \"@ "
" ( . . 8 ( !@ % \" $ ! 0 ) \" $ ')] #@ & & \" "
" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! P $ $ #"
" '@O>0 . 2 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #"
"P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 8 \" #@ "
" $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \"@ ( . . "
" 8 ( !@ % \" $ ! 0 ) \" $ ()] #@ & & \" $ !0 "
" @ ! 0 $ #@ # & \" 0 !0 @ ! 0 $ $ ! 'D . 2 "
" 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !@ !@ "
" @ - 4 ( \"P $ ! 8 L W0( ! !@ , + # T . #P "
" 0 #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 "
" $ . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 "
" X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@"
" & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 $ . 2 8 "
" ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 X P !@ @ "
" $ 4 ( 0 $ ! ! 0!F #@ # & \" 0 !0 @ ! P $ "
" $ # '@L>0 . 4 $ 8 ( @ % \" $ ! 0 % 0 !P $ < <V5T &"
"EN<'5T<P!C;W5N= <F%N9V4 . . 8 ( !@ % \" $ ! 0 ) \" "
" / _#@ # & \" 8 !0 @ $ \"0 . . 8 ( !@ "
" % \" $ ! 0 ) \" 0(] #@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ !90 X X !@ @ & 4 ( 0 $ ! D ( "
" . . 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ X !0#@ !@ @ ! 4 ( !@ $ "
" ! X X !@ @ \" 4 ( 0 ! 4 ! ! 0 . R ( 8 "
"( @ % \" $ ! 0 % 0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5"
"L;', <W!L:71?<&( ;G5M7V-E;&QS 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( "
" 9&5L971E7V-E;&Q?<&( X P !@ @ & 4 ( ! D #@ # & "
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" "
" 0 ) X P !@ @ & 4 ( ! D #@ #@ & "
"\" 8 !0 @ ! 0 $ \"0 @ X X !@ @ & 4 ( "
" 0 $ ! D ( . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0"
" @ $ \"0 . : 4 8 ( @ % \" $ ! 0 % 0 %@"
" $ !@ 0 <W5B9W)I9 &-O;F0 !C;VYD7W1E>'0 8V5L;%]I;F1E"
"> '!A<F5N=%]G<FED !W:61T: :&5I9VAT &=R:61?<&"
"( !P8E]F;&%G 8V]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD"
":71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]N7W1E>'1?> &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W"
")I9%]P=7-H7W=I9'1H X P !@ @ & 4 ( ! D #@ # &"
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" "
" 0 ) X X !@ @ & 4 ( 0 $ ! D ( . "
" , 8 ( !@ % \" 0 ) X X !@ @ & 4 ( "
" 0 $ ! D ( . . 8 ( !@ % \" $ ! 0 ) "
" \" #@ # & \" 8 !0 @ $ \"0 . . 8 ( "
" !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 @ "
" $ \"0 . . 8 ( !@ % \" $ ! 0 ) \" "
" &E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !.0 X X !@ @ &"
" 4 ( 0 $ ! D ( )$ . . 8 ( !@ % \" $ ! "
" 0 ) \" \"1 #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" T0 X X !@ @ & 4 ( 0 $ ! D ( /D . ^ 8 ( "
" @ % \" $ ! 0 % 0 !@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & "
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" "
" 0 ) X P !@ @ & 4 ( ! D #@ ) ! & "
" \" ( !0 @ ! 0 $ !0 $ P ! / $-E;&PQ $-E;&PR ')E<W5L= "
" ')E<W5L=%]T97AT &-O;&]R . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0"
" @ $ \"0 . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ @# & \" ( !0 "
" @ ! 0 $ !0 $ ! ! H $=R:60P !'<FED,0 1W)I9#( "
"&9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, &-H96-K960 !O<&5N 9FEG "
" &UU;'1I7VUO9&4 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X \""
"( !@ @ ) 4 ( 0 %@ ! ( !8 %)30 . 2 8 ( @ % "
" \" $ ! 0 % 0 !0 $ % 34-/4P . "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X # + !@ @ ) 4"
" ( 0 ) L ! ( \"0+ %)30 . \\\"L 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . J\"L 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'"
"!E<E]? #@ &@K & \" $ !0 @ !) 0 $ #@ \"@( & \" D !0 "
" @ #X!P 0 $ @ /@' \" + -@! X @ . ( +@# !X!P ^ < 1W)I9# 0V5L;', 0V5L;#"
"$ 8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E"
"> !R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&"
"]R &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET"
":6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W"
"1I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ( $0 !X C *P "
" !0 $ / P ( . ! "
" , ( @ 0 # 0 4 \" @ 8 ! @ "
" < ' 0 @ & @ D $ @ H"
" % ! L ) ! P * ! T + ! "
" X , ! \\ - ) 0 $ ] 'P $ ^ ( $ "
" _ )0 $ ! )@ $ !! )P $ !\" * $ !# *0 $ !$ *@ $ !% P ( "
"! .@ !\\ ! .P \" ! / 0 # 0 P A 0 \", B 0 \"0 7 0 \"4 "
" ! 0 ! 4 ! 0 8 ! \"@ ! ! \"P $ !P $ & \"P $"
" ' # $ ( #0 $ ) 0 $ 0 ( % 0 , & 0 0 0 0 4 "
" !@ 0 ! #0 4 ! #@ 8 ! 'P !0 ! ( !4 ! (0 ! ! (@ "
"$ !P $ ; \"P $ < # $ = #0 $ > 8 $ 0 \\ % 0 ! "
"& 0 !$ 4 0 !( 5 0 !, 0 0 !0 !@ 0 ! %0 4 ! %@ 8 ! "
" %P !0 ! & !4 ! &0 ! ! &@ $ P $ F (0 $ G (@ $ H "
" %P $ I 0 # 0 \"H A 0 \"L B 0 \"P 7 0 \"T ! , ! "
" +@ \"$ ! +P \"( ! , !< ! ,0 $ P $ R (0 $ S (@ $ T "
" %P $ U 0 # 0 #8 A 0 #< B 0 #@ 7 0 #D "
" "
" . X P !@ @ $ 4 ( 0 0 ! "
" ! ! !X/#TQ#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX P !@ "
" @ $ 4 ( 0 , ! ! P!X/C$ #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W"
"0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/"
"PX !0 !@ @ - 4 ( !P $ ! 8 < W0( ! @ 0 & @ "
" . . 8 ( !@ % \" $ ! 0 ) \" ! #@ #@ & \" "
"8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $"
" ! 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @ & 0 $ "
" !@ !@ #= @ $ ! !0 $ . . 8 ( !@ % \" $ ! 0 "
" ) \" / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ "
" ! ! ( . , 8 ( ! % \" $ # 0 0 , >3PP X X !@ @ "
" & 4 ( 0 $ ! D ( \\#\\. , 8 ( ! % \" $ "
" $ 0 0 0 >3T], X X !@ @ & 4 ( 0 $ ! D ( $ "
". 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 X "
"X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
"% \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ "
" \"0 @ #P/PX P !@ @ $ 4 ( 0 , ! ! P!Y/C #@ #@ "
"& \" 8 !0 @ ! 0 $ \"0 @ (0 X !( !@ @ - 4 "
"( !@ $ ! 8 8 W0( ! 0 @ ! #@ #@ & \" 8 !0 @ !"
" 0 $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" / _#@ % "
"& \" T !0 @ ( 0 $ !@ \" #= @ $ # !P D * @ X "
"X !@ @ & 4 ( 0 $ ! D ( \"$ . . 8 ( !@ %"
" \" $ ! 0 ) \" ! #@ $@ & \" T !0 @ & 0 $ "
" !@ !@ #= @ $ ! @ , . 2 8 ( #0 % \" 8 ! 0 &"
" & -T\" 0 $ ( 0 X X !@ @ & 4 ( 0 $ ! D ( "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ "
"& \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 "
"( !@ $ ! 8 8 W0( ! 0 < \" #@ # & \" 0 !0 @ "
"! P $ $ # '@M>0 . 2 8 ( !@ % \" $ # 0 ) & "
" / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( !"
" 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ !"
" !P ( . , 8 ( ! % \" $ # 0 0 , >\"MY X !( !@ @ &"
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T "
" !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % "
" \" 8 ! 0 & & -T\" 0 $ ) @ X P !@ @ $ 4 ( "
" 0 , ! ! P!X*GD #@ $@ & \" 8 !0 @ ! P $ \"0 !@ "
" #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\""
" 0 $ & @ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! "
" 0 D \" #@ # & \" 0 !0 @ ! 0 $ $ ! '@ . 2 8 ( "
" !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - "
" 4 ( !@ $ ! 8 8 W0( ! 0 0 \" #@ $@ & \" T "
" !0 @ & 0 $ !@ !@ #= @ $ ! \"@ ( . , 8 ( ! % "
" \" $ # 0 0 , >\"]Y X !( !@ @ & 4 ( 0 , ! D 8 "
" \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" #= @ $ ! !@ ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" "
" 0 $ * @ X P !@ @ $ 4 ( 0 $ ! ! 0!Y #@ $@ & "
" \" 8 !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 8 8 ( "
" #0 % \" L ! 0 & + -T\" 0 8 # \"P P - #@ \\ "
"$ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! "
" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \" $ . "
" 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X !("
" !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ $@ & "
" \" T !0 @ & 0 $ !@ !@ #= @ $ ! \" $ . , 8 ( "
" ! % \" $ ! 0 0 $ 9@ X P !@ @ $ 4 ( 0 , ! "
" ! P!X+'D #@ )@! & \" ( !0 @ ! 0 $ !0 $ < ! (P '-E= !I"
";G!U=', 8V]U;G0 ')A;F=E !E>&-E<'0 . . 8 ( !@ % \" $ ! 0 ) \""
" / _#@ # & \" 8 !0 @ $ \"0 . . 8 ( !"
"@ % \" $ ! 0 ) \" 0(] #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ !90 X X !@ @ & 4 ( 0 $ ! D ( "
" . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & \""
" 8 !0 @ ! 0 $ \"0 @ X X !@ @ & 4 ( 0"
" $ ! D ( . 4 X 8 ( 0 % \" 8 ! 0 . . "
" 8 ( @ % \" $ 0 % 0 0 $ #@ ,@\" & \" ( !0"
" @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C96QL '!A<F5N=%]G<FED &-E;&QS '-"
"P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7"
"W!B . , 8 ( !@ % \" 0 ) X P !@ @ & "
"4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" . , 8 ( !@ % \" 0 ) X X !@ @ & 4"
" ( 0 $ ! D ( . . 8 ( !@ % \" $ ! 0 "
" ) \" #@ # & \" 8 !0 @ $ \"0 . , 8"
" ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ &@% & \" ( !0 @ ! 0 $ !0 $ !8 ! 8 $ '-U8"
"F=R:60 !C;VYD 8V]N9%]T97AT &-E;&Q?:6YD97@ !"
"P87)E;G1?9W)I9 =VED=&@ &AE:6=H= !G<FED7W!B "
" <&)?9FQA9P &-O;&]R !C;VYD:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5"
"I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y 8V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T:"
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \"0"
" . . 8 ( !@ % \" $ ! 0 ) \" #@ # & \""
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! "
"0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" X P !@ @ & 4 ( ! D #@ #@ & \" 8 !"
"0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! "
" D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !I0 X X !@"
" @ & 4 ( 0 $ ! D ( 3D . . 8 ( !@ % \" "
" $ ! 0 ) \" \"1 #@ #@ & \" 8 !0 @ ! 0 $ \""
"0 @ D0 X X !@ @ & 4 ( 0 $ ! D ( -$ . . "
" 8 ( !@ % \" $ ! 0 ) \" #Y #@ /@ & \" ( !0"
" @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60Q $=R:60R X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" . , 8 ( !@ % \" 0 ) X \"0 0 !@ @ \" "
" 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 !#96QL,@ !R97-U;'0 !R97-U;'1?="
"&5X= !C;VQO<@ #@ # & \" 8 !0 @ $ \"0 . , "
" 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . , "
"8 ( !@ % \" 0 ) X ( P !@ @ \" 4 ( 0 "
"$ ! 4 ! 0 0 * !'<FED, 1W)I9#$ $=R:60R !F=6YC=&EO;E]N"
"86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D ;W!E;@ &9I9P "
"!M=6QT:5]M;V1E #@ # & \" 8 !0 @ $ \"0 . , 8 "
" ( !@ % \" 0 ) X P !@ @ & 4 ( "
"! D #@ # & \" 8 !0 @ $ \"0 . , 8 "
"( !@ % \" 0 ) X P !@ @ & 4 ( !"
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ("
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . B 8 ( "
" \"0 % \" $ !8 0 \" 6 !24T #@ $@ & \" ( !0 @ "
"! 0 $ !0 $ 4 ! !0 $U#3U, #@ "
}
}
# Finite State Machines
#
# Stateflow Version 7.5 (R2010a) dated Aug 8 2010, 23:41:55
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
#
#
......@@ -1104,22 +1062,20 @@ Stateflow {
created "22-Dec-2010 13:34:30"
isLibrary 0
firstTarget 10
sfVersion 75014000.000003
sfVersion 75014000
}
chart {
id 2
name "f/code"
windowPosition [300.6 295.797 200.25 189.75]
windowPosition [372 56 200 423]
viewLimits [0 156.75 0 153.75]
screen [1 1 1280 1024 1.25]
screen [1 1 1366 768 1.25]
treeNode [0 3 0 0]
firstTransition 5
firstJunction 4
viewObj 2
machine 1
toolbarMode LIBRARY_TOOLBAR
subviewS {
}
ssIdHighWaterMark 6
decomposition CLUSTER_CHART
type EML_CHART
......@@ -1169,7 +1125,7 @@ Stateflow {
}
dst {
id 4
intersection [7 0 -1 -1 23.5747 42.5747 0 0]
intersection [1 0 -1 0 23.5747 42.5747 0 0]
}
midPoint [23.5747 24.9468]
chart 2
......@@ -1177,6 +1133,9 @@ Stateflow {
dataLimits [23.575 23.575 14.625 34.575]
subviewer 2
drawStyle SMART
slide {
sticky BOTH_STICK
}
executionOrder 1
ssIdNumber 2
}
......