demos.atomicblocks
Class SDFRamp

java.lang.Object
  extended by modhelxs.abstractsemantics.NamedEntity
      extended by modhelxs.abstractsemantics.ObservableEntity
          extended by modhelxs.abstractsemantics.Block
              extended by modhelxs.state_management.ManagedBlock
                  extended by modhelxs.state_management.PlainManagedBlock
                      extended by demos.atomicblocks.SDFRamp
All Implemented Interfaces:
Block, NamedEntity, ObservableEntity

public class SDFRamp
extends PlainManagedBlock

A Ramp is a Block which produces an increasing value on all its Pins at each update. The value is incremented at each update, so it may be incremented several times during a snapshot in multi-rate models.

Author:
boulange

Field Summary
private  Parameter<java.lang.Integer> increment_
           
private  Pin output_
           
private  Attribute<java.lang.Integer> value_
           
 
Constructor Summary
SDFRamp(java.lang.String name, java.lang.Object... properties)
           
 
Method Summary
 void doSetup()
          The setup behavior of the block.
 void doUpdate()
          The update behavior of the block.
 Pin output()
           
 
Methods inherited from class modhelxs.state_management.PlainManagedBlock
doEndOfSnapshot, doPreSetup, doReset, doStartOfSnapshot
 
Methods inherited from class modhelxs.state_management.ManagedBlock
emitObservationRequests, endOfSnapshot, endOfUpdate, initFromProperties, prep, reset, setup, startOfSnapshot, startOfUpdate, update, validate, wasUpdated, wrapup
 
Methods inherited from class modhelxs.abstractsemantics.Block
connect, connectFromInterfaceBlock, connectFromModel, connectFromRegularBlock, getEngine, getInputPins, getMoC, getOutputPins, getParent, getSolver, getTimeOfRequest, hasObservationRequest, sanityCheck, setParent
 
Methods inherited from class modhelxs.abstractsemantics.ObservableEntity
addPin, getInterface, getPin
 
Methods inherited from class modhelxs.abstractsemantics.NamedEntity
getName, getProperties, getProperty, hasProperty, removeProperty, setName, setProperties, setProperty, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface modhelxs.ecore.ObservableEntity
getInterface
 
Methods inherited from interface modhelxs.ecore.NamedEntity
getName, getProperties, setName
 

Field Detail

value_

private Attribute<java.lang.Integer> value_

increment_

private Parameter<java.lang.Integer> increment_

output_

private final Pin output_
Constructor Detail

SDFRamp

public SDFRamp(java.lang.String name,
               java.lang.Object... properties)
Method Detail

output

public Pin output()

doSetup

public void doSetup()
Description copied from class: ManagedBlock
The setup behavior of the block.

Specified by:
doSetup in class ManagedBlock

doUpdate

public void doUpdate()
Description copied from class: ManagedBlock
The update behavior of the block.

Specified by:
doUpdate in class ManagedBlock