#*------------------------------------------------------------------- * EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC. * * This LIBRARY is free software; you can distribute it and/or modify * it under the therms of the ALSOC FREE LICENSE as available at * http://www.enq.ufrgs.br/alsoc. * * EMSO is distributed under the terms of the ALSOC LICENSE as * available at http://www.enq.ufrgs.br/alsoc. *----------------------------------------------------------------------- * Author: Jonathan Ospino P. * $Id: Substream.mso 2012$ *---------------------------------------------------------------------*# using "types"; Model Substream ATTRIBUTES Pallete=true; Icon="icon/Substream"; Info="== Splitter block == It takes an input variable and divides the information flow in two different signals with the same value of the input"; VARIABLES in In as Real(Brief="Input signal",PosX=0,PosY=0.45); out Out1 as Real(Brief="First output signal",PosX=0.95,PosY=0.45); out Out2 as Real(Brief="Second output signal",PosX=0.49,PosY=1); EQUATIONS Out1=In; Out2=In; end