/* An actor that hold the last event and outputs a constant signal. Copyright (c) 1998-2014 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY */ package ptolemy.domains.continuous.lib; import java.util.HashSet; import java.util.Set; import ptolemy.actor.lib.Transformer; import ptolemy.data.Token; import ptolemy.data.expr.Parameter; import ptolemy.domains.continuous.kernel.ContinuousDirector; import ptolemy.graph.Inequality; import ptolemy.kernel.CompositeEntity; import ptolemy.kernel.util.IllegalActionException; import ptolemy.kernel.util.InternalErrorException; import ptolemy.kernel.util.NameDuplicationException; /////////////////////////////////////////////////////////////////// //// ZeroOrderHold /** Convert discrete events at the input to a continuous-time signal at the output by holding the value of the discrete event until the next discrete event arrives. Specifically, on each firing, if an input is present, then record the value of the input. Then produce the recorded value. Prior to receipt of the first input, output the token given by defaultValue, if one is given. This actor will throw an exception if the input is not purely discrete. Specifically, this means that when the input is present, the step size of the solver has to be 0.0. @author Edward A. Lee, Haiyang Zheng @version $Id: ZeroOrderHold.java 70398 2014-10-22 23:44:32Z cxh $ @since Ptolemy II 6.0 @Pt.ProposedRating Green (hyzheng) @Pt.AcceptedRating Red (hyzheng) */ public class ZeroOrderHold extends Transformer { /** Construct an actor in the specified container with the specified * name. The name must be unique within the container or an exception * is thrown. The container argument must not be null, or a * NullPointerException will be thrown. * * @param container The subsystem that this actor is lived in * @param name The actor's name * @exception IllegalActionException If the entity cannot be contained * by the proposed container. * @exception NameDuplicationException If name coincides with * an entity already in the container. */ public ZeroOrderHold(CompositeEntity container, String name) throws IllegalActionException, NameDuplicationException { super(container, name); defaultValue = new Parameter(this, "defaultValue"); _attachText("_iconDescription", "\n" + "\n" + "\n" + "\n" + "\n"); } /////////////////////////////////////////////////////////////////// //// ports and parameters //// /** Default output before any input has received. * The default is empty, indicating * that no output is produced until an input is received. * The type of the output is set to at least the type of * this parameter (and also at least the type of the input). */ public Parameter defaultValue; /////////////////////////////////////////////////////////////////// //// public methods //// /** Output the latest token consumed from the consumeCurrentEvents() * call. * @exception IllegalActionException If the token cannot be sent. */ @Override public void fire() throws IllegalActionException { super.fire(); if (input.hasToken(0)) { ContinuousDirector dir = (ContinuousDirector) getDirector(); double stepSize = dir.getCurrentStepSize(); if (stepSize != 0.0 && !_firstFiring) { throw new IllegalActionException(this, "Signal at the input port is not purely discrete."); } _lastToken = input.get(0); if (_debugging) { _debug("Input value " + _lastToken + " read at time " + dir.getModelTime() + " and microstep " + dir.getIndex()); } } if (_lastToken != null) { output.send(0, _lastToken); if (_debugging) { ContinuousDirector dir = (ContinuousDirector) getDirector(); _debug("Output value " + _lastToken + " sent at time " + dir.getModelTime() + " and microstep " + dir.getIndex()); } } } /** Initialize token. If there is no input, the initial token is * a Double Token with the value specified by the defaultValue parameter. * @exception IllegalActionException If thrown by the super class. */ @Override public void initialize() throws IllegalActionException { super.initialize(); _lastToken = defaultValue.getToken(); _firstFiring = true; } /** Override the base class to record that the first firing * has completed. * @return True if execution can continue into the next iteration. * @exception IllegalActionException If the base class throws it. */ @Override public boolean postfire() throws IllegalActionException { _firstFiring = false; return super.postfire(); } /////////////////////////////////////////////////////////////////// //// protected methods //// /** * Return a constraint that requires the type of the defaultValue * parameter to be less than or equal to the type of the output * port. */ @Override protected Set _customTypeConstraints() { Set result = new HashSet(); try { // type of initialValue <= type of output if (defaultValue.getToken() != null) { result.add(new Inequality(defaultValue.getTypeTerm(), output .getTypeTerm())); } } catch (IllegalActionException ex) { // Errors in the defaultValue parameter should already // have been caught in getAttribute() method of the base // class. throw new InternalErrorException("Bad defaultValue!\n" + ex); } return result; } /////////////////////////////////////////////////////////////////// //// private variables //// /** Saved token. */ private Token _lastToken; /** Indicator that this is the first firing after initialize(). */ private boolean _firstFiring; }