Project

General

Profile

Bug #5655 » ptolemy-repeat-demo-in-SDF.xml

jianwu jianwu, 09/11/2012 02:08 PM

 
1
<?xml version="1.0" standalone="no"?>
2
<!DOCTYPE entity PUBLIC "-//UC Berkeley//DTD MoML 1//EN"
3
    "http://ptolemy.eecs.berkeley.edu/xml/dtd/MoML_1.dtd">
4
<entity name="ptolemy-repeat-demo-in-SDF" class="ptolemy.actor.TypedCompositeActor">
5
    <property name="_createdBy" class="ptolemy.kernel.attributes.VersionAttribute" value="9.0.devel">
6
    </property>
7
    <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org/ns/:23490:191:15">
8
    </property>
9
    <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org/ns/:23596:422:28">
10
    </property>
11
    <property name="SDF Director" class="ptolemy.domains.sdf.kernel.SDFDirector">
12
        <property name="localClock" class="ptolemy.actor.LocalClock">
13
            <property name="globalTimeResolution" class="ptolemy.actor.parameters.SharedParameter" value="1.0E-10">
14
            </property>
15
            <property name="clockRate" class="ptolemy.data.expr.Parameter" value="1.0">
16
            </property>
17
        </property>
18
        <property name="iterations" class="ptolemy.data.expr.Parameter" value="AUTO">
19
        </property>
20
        <property name="vectorizationFactor" class="ptolemy.data.expr.Parameter" value="1">
21
        </property>
22
        <property name="allowDisconnectedGraphs" class="ptolemy.data.expr.Parameter" value="false">
23
        </property>
24
        <property name="allowRateChanges" class="ptolemy.data.expr.Parameter" value="false">
25
        </property>
26
        <property name="constrainBufferSizes" class="ptolemy.data.expr.Parameter" value="true">
27
        </property>
28
        <property name="period" class="ptolemy.data.expr.Parameter" value="0.0">
29
        </property>
30
        <property name="synchronizeToRealTime" class="ptolemy.data.expr.Parameter" value="false">
31
        </property>
32
        <property name="Scheduler" class="ptolemy.domains.sdf.kernel.SDFScheduler">
33
            <property name="constrainBufferSizes" class="ptolemy.data.expr.Parameter" value="constrainBufferSizes">
34
            </property>
35
        </property>
36
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
37
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
38
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Steve Neuendorffer</configure></property>
39
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
40
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&#10;&lt;p&gt;The SDF Director is often used to oversee fairly simple, sequential workflows in which the director can determine the order of actor invocation from the workflow. Types of workflows that would run well under an SDF Director include processing and reformatting tabular data, converting one data type to another, and reading and plotting a series of data points. A workflow in which an image is read, processed (rotated, scaled, clipped, filtered, etc.), and then displayed, is also an example of a sequential workflow that requires a director simply to ensure that each actor fires in the proper order (i.e., that each actor executes only after it receives its required inputs).&lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director is very efficient and will not tax system resources with overhead. However, this efficiency requires that certain conditions be met, namely that the data consumption and production rate of each actor in an SDF workflow be constant and declared. If an actor reads one piece of data and calculates and outputs a single result, it must always read and output a single token of data. This data rate cannot change during workflow execution and, in general, workflows that require dynamic scheduling and/or flow control cannot use this director. Additionally, the SDF Director has no understanding of passing time (at least by default), and actors that depend on a notion of time may not work as expected. For example, a TimedPlotter actor will plot all values at time zero when used in SDF. &lt;/p&gt;&#10;&#10;&lt;p&gt;By default, the SDF Director requires that all actors in its workflow be connected. Otherwise, the director cannot account for concurrency between disconnected workflow parts. Usually, a PN Director should be used for workflows that contain disconnected actors; however, the SDF Director's allowDisconnectedGraphs parameter may also be set to true. The SDF Director will then schedule each disconnected &quot;island&quot; independently. The director cannot infer the sequential relationship between disconnected actors (i.e., nothing forces the director to finish executing all actors on one island before firing actors on another). However, the order of execution within each island should be correct. Usually, disconnected graphs in an SDF model indicate an error.&lt;/p&gt;&#10; &#10;&lt;p&gt;Because SDF Directors schedule actors to fire only after they receive their inputs, workflows that require loops (feeding an actor's output back into its input port for further processing) can cause &quot;deadlock&quot; errors. The deadlock errors occur because the actor depends on its own output value as an initial input. To fix this problem, use a SampleDelay actor to generate and inject an initial input value into the workflow.&lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director determines the order in which actors execute and how many times each actor needs to be fired to complete a single iteration of the workflow. This schedule is calculated BEFORE the director begins to iterate the workflow. Because the SDF Director calculates a schedule in advance, it is quite efficient. However, SDF workflows must be static. In other words, the same number of tokens must be consumed/produced at every iteration of the workflow. Workflows that require dynamic control structures, such as a BooleanSwitch actor that sends output on one of two ports depending on the value of a 'control', cannot be used with an SDF Director because the number of tokens on each output can change for each execution.&lt;/p&gt;&#10;&#10;&lt;p&gt;Unless otherwise specified, the SDF Director assumes that each actor consumes and produces exactly one token per channel on each firing. Actors that do not follow the one-token-per-channel firing convention (e.g., Repeat or Ramp) must declare the number of tokens they produce or consume via the appropriate parameters. &lt;/p&gt;&#10;&#10;&lt;p&gt;The number of times a workflow is iterated is controlled by the director's iterations parameter. By default, this parameter is set to &quot;0&quot;. Note that &quot;0&quot; does not mean &quot;no iterations.&quot; Rather, &quot;0&quot; means that the workflow will iterate forever. Values greater than zero specify the actual number of times the director should execute the entire workflow. A value of 1, meaning that the director will run the workflow once, is often the best setting when building an SDF workflow. &lt;/p&gt;&#10;&#10;&lt;p&gt;The amount of data processed by an SDF workflow is a function of both the number of times the workflow iterates and the value of the director's vectorizationFactor parameter. The vectorizationFactor is used to increase the efficiency of a workflow by increasing the number of times actors fire each time the workflow iterates. If the parameter is set to a positive integer (other than 1), the director will fire each actor the specified number of times more than normal. The default is 1, indicating that no vectorization should be performed. Keep in mind that changing the vectorizationFactor parameter changes the meaning of a nested SDF workflow and may cause deadlock in a workflow that uses it. &lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director has several advanced parameters that are generally only relevant when an SDF workflow contains composite components. In most cases the period, timeResolution, synchronizeToRealTime, allowRateChanges, timeResolution, and constrainBufferSizes parameters can be left at their default values.&lt;/p&gt;&#10;&#10;&lt;p&gt;For more information about the SDF Director, see the Ptolemy documentation (http://ptolemy.eecs.berkeley.edu/papers/05/ptIIdesign3-domains/ptIIdesign3-domains.pdf).&lt;/p&gt;&#10;&#10;</configure></property>
41
<property name="prop:allowDisconnectedGraphs" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether to allow disconnected actors in the workflow (by default, all actors are required to be connected). If disconnected actors are permitted, the SDF Director will schedule each disconnected 'island' independently. Nothing &quot;forces&quot; the director to finish executing all actors on one island before firing actors on another. However, the order of execution within each island should be correct. Usually, disconnected graphs in an SDF workflow indicate an error.</configure></property>
42
<property name="prop:allowRateChanges" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether dynamic rate changes are permitted or not. By default, rate changes are not permitted, and the director will perform a check to disallow such workflows. If the parameter is selected, then workflows that require rate parameters to be modified during execution are valid, and the SDF Director will dynamically compute a new schedule at runtime. This is an advanced parameter that can usually be left at its default value.</configure></property>
43
<property name="prop:constrainBufferSizes" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether buffer sizes are fixed. By default, buffers are fixed, and attempts to write to the buffer that cause the buffer to exceed its scheduled size result in an error. This is an advanced parameter that can usually be left at its default value.</configure></property>
44
<property name="prop:timeResolution" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The time precision used by this director. All time values are rounded to the nearest multiple of this number. The value is a double that defaults to &quot;1E-10&quot; (which is 10-10). This is an advanced parameter that can usually be left at its default value.</configure></property>
45
<property name="prop:iterations" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify the number of times a workflow is iterated. By default, this parameter is set to &quot;0&quot;. Note that &quot;0&quot; does not mean &quot;no iterations.&quot; Rather, &quot;0&quot; means that the workflow will iterate forever. Values greater than zero specify the actual number of times the director should execute the entire workflow. A value of 1, meaning that the director will run the workflow once, is often the best setting when building an SDF workflow. </configure></property>
46
<property name="prop:vectorizationFactor" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The vectorizationFactor is used to increase the efficiency of a workflow by increasing the number of times actors fire each time the workflow iterates. If the parameter is set to a positive integer (other than 1), the director will fire each actor the specified number of times more than normal. The default is 1, indicating that no vectorization should be performed. Keep in mind that changing the vectorizationFactor parameter changes the meaning of a nested SDF workflow and may cause deadlock in a workflow that uses it. </configure></property>
47
<property name="prop:synchronizeToRealTime" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether the execution should synchronize to real time or not. By default, the director does not synchronize to real time. If synchronize is selected, the director will only process the workflow when elapsed real time matches the product of the period parameter and the iteration count. Note: if the period parameter has a value of 0.0 (the default), then selecting this parameter has no effect. This is an advanced parameter that can usually be left at its default value.</configure></property>
48
<property name="prop:period" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The time period of each iteration. The value is a double that defaults to 0.0, which means that the director does not increment workflow time. If the value greater than 0.0, the actor will increment workflow time each time it fires. This is an advanced parameter that can usually be left at its default value. </configure></property>
49
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org:director:1:2">
50
        </property>
51
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.domains.sdf.kernel.SDFDirector">
52
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:directorclass:1:2">
53
            </property>
54
        </property>
55
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#Director">
56
        </property>
57
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#Director">
58
        </property>
59
        <property name="_location" class="ptolemy.kernel.util.Location" value="{130.0, 115.0}">
60
        </property>
61
    </property>
62
    <property name="_windowProperties" class="ptolemy.actor.gui.WindowPropertiesAttribute" value="{bounds={183, 28, 1073, 803}, maximized=false}">
63
    </property>
64
    <property name="_vergilSize" class="ptolemy.actor.gui.SizeAttribute" value="[732, 654]">
65
    </property>
66
    <property name="_vergilZoomFactor" class="ptolemy.data.expr.ExpertParameter" value="1.0">
67
    </property>
68
    <property name="_vergilCenter" class="ptolemy.data.expr.ExpertParameter" value="{366.0, 327.0}">
69
    </property>
70
    <property name="Annotation" class="ptolemy.vergil.kernel.attributes.TextAttribute">
71
        <property name="_hideName" class="ptolemy.data.expr.SingletonParameter" value="true">
72
        </property>
73
        <property name="_hideAllParameters" class="ptolemy.data.expr.Parameter" value="true">
74
        </property>
75
        <property name="textSize" class="ptolemy.data.expr.Parameter" value="14">
76
        </property>
77
        <property name="textColor" class="ptolemy.actor.gui.ColorAttribute" value="{0.0, 0.0, 1.0, 1.0}">
78
        </property>
79
        <property name="fontFamily" class="ptolemy.data.expr.StringParameter" value="SansSerif">
80
        </property>
81
        <property name="bold" class="ptolemy.data.expr.Parameter" value="false">
82
        </property>
83
        <property name="italic" class="ptolemy.data.expr.Parameter" value="false">
84
        </property>
85
        <property name="anchor" class="ptolemy.data.expr.StringParameter" value="northwest">
86
        </property>
87
        <property name="text" class="ptolemy.kernel.util.StringAttribute" value="The repeat will show repeated data with SDF director. &#10;This workflow repeat the data in input port by a certain number.&#10;The number is the value muliplication of two parameters: numberOfTimes and blockSize.">
88
            <property name="_style" class="ptolemy.actor.gui.style.TextStyle">
89
                <property name="height" class="ptolemy.data.expr.Parameter" value="15">
90
                </property>
91
                <property name="width" class="ptolemy.data.expr.Parameter" value="40">
92
                </property>
93
            </property>
94
        </property>
95
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
96
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
97
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Edward A. Lee</configure></property>
98
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
99
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Use the Annotation attribute to annotate a workflow. Double-click the attribute to customize the content, font size, color, and basic formatting (bold and italics).</configure></property>
100
<property name="prop:fontFamily" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The font face. Select a font from the drop-down menu. The default is &quot;SansSerif&quot;.</configure></property>
101
<property name="prop:italic" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Select to indicate that the type should be italics. By default, type will not be italicized.</configure></property>
102
<property name="prop:bold" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Select to indicate that the type should be bold. By default, type will not be bold.</configure></property>
103
<property name="prop:textColor" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The font color. Specify a string representing an array of four elements: red, green, blue, and alpha, where alpha is transparency. The default is an opaque black, {0.0, 0.0, 0.0, 1.0}</configure></property>
104
<property name="prop:textSize" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The font size. Select an integer from the drop-down menu or specify a new size by typing it directly into the value field.  The default is 14.</configure></property>
105
<property name="prop:text" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The text of the annotation.</configure></property>
106
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org/ns/:23596:417:10">
107
        </property>
108
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.vergil.kernel.attributes.TextAttribute">
109
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:1199:1">
110
            </property>
111
        </property>
112
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#DocumentationActor">
113
        </property>
114
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#WorkflowDocumentation">
115
        </property>
116
        <property name="_location" class="ptolemy.kernel.util.Location" value="[25.0, 360.0]">
117
        </property>
118
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:436:1">
119
        </property>
120
    </property>
121
    <entity name="Repeat" class="ptolemy.domains.sdf.lib.Repeat">
122
        <property name="numberOfTimes" class="ptolemy.data.expr.Parameter" value="2">
123
        </property>
124
        <property name="blockSize" class="ptolemy.data.expr.Parameter" value="3">
125
        </property>
126
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
127
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
128
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Shankar Rao, Steve Neuendorffer</configure></property>
129
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
130
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&#10;&lt;p&gt;The Repeat actor reads and repeats a &quot;block&quot; of tokens (i.e., one or more tokens of any type). The actor outputs the block a user-specified number of times.&lt;/p&gt;&#10;&#10;&lt;p&gt;Specify the block size with the blockSize parameter and the number of times to repeat the block with the numberOfTimes parameter.  Note: because the actor reads multiple input tokens at each iteration, it causes a sample rate increase by a factor of numberOfTimes, and hence affects the number of invocations of downstream actors. &lt;/p&gt;&#10;</configure></property>
131
<property name="port:output" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts the block of tokens the specified number of times. Specify the number of times to repeat the output with the numberOfTimes parameter.</configure></property>
132
<property name="port:input" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An input port that accepts tokens of any type. Specify the number of tokens to read at each iteration with the blockSize parameter.</configure></property>
133
<property name="prop:blockSize" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The number of tokens in a block. The value is an integer and must be greater than zero. The default is 1. </configure></property>
134
<property name="prop:numberOfTimes" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The repetition factor. The value is an integer and must be greater than 0. The default is 2. </configure></property>
135
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org/ns/:23596:427:1">
136
        </property>
137
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.domains.sdf.lib.Repeat">
138
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:1130:1">
139
            </property>
140
        </property>
141
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#ControlActor">
142
        </property>
143
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#WorkflowControl">
144
        </property>
145
        <property name="_location" class="ptolemy.kernel.util.Location" value="{225, 235}">
146
        </property>
147
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:364:1:urn:lsid:kepler-project.org/ns/:23490:196:1">
148
        </property>
149
        <property name="" class="ptolemy.vergil.basic.DocAttribute">
150
            <property name="author" class="ptolemy.kernel.util.StringAttribute" value="Shankar Rao, Steve Neuendorffer">
151
            </property>
152
            <property name="version" class="ptolemy.kernel.util.StringAttribute" value="null">
153
            </property>
154
            <property name="since" class="ptolemy.kernel.util.StringAttribute">
155
            </property>
156
            <property name="description" class="ptolemy.kernel.util.StringAttribute" value="&#10;&lt;p&gt;The Repeat actor reads and repeats a &quot;block&quot; of tokens (i.e., one or more tokens of any type). The actor outputs the block a user-specified number of times.&lt;/p&gt;&#10;&#10;&lt;p&gt;Specify the block size with the blockSize parameter and the number of times to repeat the block with the numberOfTimes parameter.  Note: because the actor reads multiple input tokens at each iteration, it causes a sample rate increase by a factor of numberOfTimes, and hence affects the number of invocations of downstream actors. &lt;/p&gt;&#10;">
157
            </property>
158
            <property name="output (port)" class="ptolemy.kernel.util.StringAttribute" value="An output port that broadcasts the block of tokens the specified number of times. Specify the number of times to repeat the output with the numberOfTimes parameter.">
159
            </property>
160
            <property name="input (port)" class="ptolemy.kernel.util.StringAttribute" value="An input port that accepts tokens of any type. Specify the number of tokens to read at each iteration with the blockSize parameter.">
161
            </property>
162
            <property name="blockSize (parameter)" class="ptolemy.data.expr.StringParameter" value="The number of tokens in a block. The value is an integer and must be greater than zero. The default is 1. ">
163
            </property>
164
            <property name="numberOfTimes (parameter)" class="ptolemy.data.expr.StringParameter" value="The repetition factor. The value is an integer and must be greater than 0. The default is 2. ">
165
            </property>
166
        </property>
167
    </entity>
168
    <entity name="Display" class="ptolemy.actor.lib.gui.Display">
169
        <property name="_windowProperties" class="ptolemy.actor.gui.WindowPropertiesAttribute" value="{bounds={928, 292, 484, 186}, maximized=false}">
170
        </property>
171
        <property name="_paneSize" class="ptolemy.actor.gui.SizeAttribute" value="[484, 164]">
172
        </property>
173
        <property name="rowsDisplayed" class="ptolemy.data.expr.Parameter" value="10">
174
        </property>
175
        <property name="columnsDisplayed" class="ptolemy.data.expr.Parameter" value="40">
176
        </property>
177
        <property name="suppressBlankLines" class="ptolemy.data.expr.Parameter" value="false">
178
        </property>
179
        <property name="title" class="ptolemy.data.expr.StringParameter" value="">
180
        </property>
181
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
182
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
183
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Yuhong Xiong, Edward A. Lee</configure></property>
184
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
185
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&lt;p&gt;The Display actor reads tokens of any type via its input multiport, and displays each token on a separate line in a text display window.&lt;/p&gt;&#10;&#10;&lt;p&gt;Specify the size of the text display window with the rowsDisplayed and columnsDisplayed parameters. Simply resizing the window onscreen does not persistently change the size when the workflow is saved, closed, and then re-opened. &lt;/p&gt;&#10;&#10;&lt;p&gt;If the input is a string token, then the actor strips the surrounding quotation marks before displaying the value.&lt;/p&gt; &#10;&#10;&lt;p&gt;Select the suppressBlankLines parameter to specify that the actor not add blank lines to the display. By default, the actor will add blank lines.&lt;/p&gt;&#10;&#10;&lt;p&gt;Note: this actor can consume large amounts of memory. It is not advisable to use it to display large output streams.&lt;/p&gt;</configure></property>
186
<property name="port:input" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>A multiport that accepts tokens of any type.</configure></property>
187
<property name="prop:suppressBlankLines" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether the actor should display blank lines (the default) or suppress them.</configure></property>
188
<property name="prop:rowsDisplayed" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The vertical size of the display, in rows. The value is an integer that defaults to 10.</configure></property>
189
<property name="prop:columnsDisplayed" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The horizontal size of the display, in columns. The value is an integer that defaults to 40.</configure></property>
190
<property name="prop:title" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The title of the text display window. If specified, the value will appear in the title bar of the text display window.</configure></property>
191
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org/ns/:23490:195:3">
192
        </property>
193
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.actor.lib.gui.Display">
194
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:883:1">
195
            </property>
196
        </property>
197
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#TextualOutputActor">
198
        </property>
199
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#TextualOutput">
200
        </property>
201
        <property name="_location" class="ptolemy.kernel.util.Location" value="{365, 265}">
202
        </property>
203
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:7:1">
204
        </property>
205
    </entity>
206
    <entity name="Ramp" class="ptolemy.actor.lib.Ramp">
207
        <property name="NONE" class="ptolemy.data.expr.Parameter" value="0">
208
        </property>
209
        <property name="init" class="ptolemy.actor.parameters.PortParameter" value="0">
210
        </property>
211
        <property name="step" class="ptolemy.actor.parameters.PortParameter" value="1">
212
        </property>
213
        <property name="firingCountLimit" class="ptolemy.data.expr.Parameter" value="4">
214
        </property>
215
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
216
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
217
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Yuhong Xiong, Edward A. Lee</configure></property>
218
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
219
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&lt;p&gt;The Ramp actor is the equivalent of the &quot;for loop&quot; in many traditional computer languages. Its parameters include an intial value, the amount the value is incremented each time the actor fires (the 'step'), and the upper limit of the value (the firingCountLimit). The actor outputs an integer each time it is fired. &lt;/p&gt;&#10;&#10;&lt;p&gt;The actor's output can be used as a counter (increasing or decreasing), or as a parameter used in an incremented workflow. For example, the output of a Ramp actor can be input to an Expression actor to create file names that are unique for each iteration (e.g., 'file1', 'file2', etc.) The Ramp actor is also particularly useful with PN directed workflows where there is no way to set the number of iterations as a Director parameter. &lt;/p&gt;&#10;&#10;&lt;p&gt;The first time the actor fires, it outputs the value of its init parameter. The increment value, specified with either the step port or parameter, will only be added on the following iteration. To add an increment to the first iteration, use the Accumulator actor.&lt;/p&gt;&#10;&#10;&lt;p&gt;The actor accepts values of any type that support addition.&lt;/p&gt;</configure></property>
220
<property name="port:output" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts the incremented value.</configure></property>
221
<property name="port:trigger" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An input port that has no declared type (in other words, the port can accept any data type: double, int, array, etc.) If the port is connected, the actor will not fire until the trigger port receives an input token. Connecting the port is optional, but useful when scheduling the actor to perform at a certain time.</configure></property>
222
<property name="port:step" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An input port that accepts the amount by which the output is incremented on each iteration. The port accepts a value of any type that supports addition. The value is an integer and defaults to 1.</configure></property>
223
<property name="prop:firingCountLimit" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The number of iterations that transpire before the actor indicates that it is finished. If firingCountLimit is set to zero, the actor has no limit imposed.</configure></property>
224
<property name="prop:step" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The amount by which the output is incremented on each iteration. The port accepts a value of any type that supports addition. The default is the integer 1.</configure></property>
225
<property name="prop:init" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The value produced by the Ramp on its first iteration. The default value is the integer 0.</configure></property>
226
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org/ns/:23596:426:4">
227
        </property>
228
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.actor.lib.Ramp">
229
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:881:1">
230
            </property>
231
        </property>
232
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#IterativeMathOperationActor">
233
        </property>
234
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#IterativeOperation">
235
        </property>
236
        <property name="semanticType22" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#WorkflowInput">
237
        </property>
238
        <property name="_location" class="ptolemy.kernel.util.Location" value="[90.0, 260.0]">
239
        </property>
240
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:5:1">
241
        </property>
242
        <port name="trigger" class="ptolemy.actor.TypedIOPort">
243
            <property name="input"/>
244
            <property name="multiport"/>
245
            <property name="_showName" class="ptolemy.data.expr.SingletonParameter" value="true">
246
            </property>
247
        </port>
248
        <port name="init" class="ptolemy.actor.parameters.ParameterPort">
249
            <property name="input"/>
250
            <property name="_showName" class="ptolemy.data.expr.Parameter" value="true">
251
            </property>
252
        </port>
253
        <port name="step" class="ptolemy.actor.parameters.ParameterPort">
254
            <property name="input"/>
255
            <property name="_showName" class="ptolemy.data.expr.Parameter" value="true">
256
            </property>
257
        </port>
258
    </entity>
259
    <relation name="relation2" class="ptolemy.actor.TypedIORelation">
260
    </relation>
261
    <relation name="relation" class="ptolemy.actor.TypedIORelation">
262
    </relation>
263
    <link port="Repeat.input" relation="relation"/>
264
    <link port="Repeat.output" relation="relation2"/>
265
    <link port="Display.input" relation="relation2"/>
266
    <link port="Ramp.output" relation="relation"/>
267
</entity>
(3-3/4)