Ignore:
Timestamp:
Aug 4, 2009, 12:12:36 PM (14 years ago)
Author:
gerson bicca
Message:

updated column model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/eml/controllers/heat_flow.mso

    r743 r809  
    2121       
    2222Model heat_flow
    23         ATTRIBUTES
    24         Pallete         = true;
    25         Icon            = "icon/heat_flow";
    26         Brief           = "Model of a very simple valve for setting the energy flow with a controller.";
    2723
     24ATTRIBUTES
     25        Pallete = true;
     26        Icon    = "icon/heat_flow";
     27        Brief   = "Model of a very simple valve for setting the energy flow with a controller.";
     28        Info    =
     29"== ASSUMPTIONS ==
     30* nothing happens in this valve
     31
     32== SET ==
     33* MinHeatFlow: the Minimum Heat Flow Allowable in the valve;
     34* MaxHeatFlow: the Maximum Heat Flow Allowable in the valve;
     35
     36== SPECIFY ==
     37* the HeatFlowFraction (the model requires an inlet signal, also you can use a controller for setting the HeatFlowFraction)
     38";
    2839
    2940PARAMETERS
    3041
    31         MinHeatFlow             as power                (Brief="Minimum of Heat Flow",Default=-1000);
    32         MaxHeatFlow     as power                (Brief="Maximum of Heat Flow",Default=1000);
     42        MinHeatFlow     as power        (Brief="Minimum of Heat Flow",Default=-1000);
     43        MaxHeatFlow     as power        (Brief="Maximum of Heat Flow",Default=1000);
    3344       
    3445VARIABLES
    3546
    36 out HeatFlow                                    as power                (Brief="Heat Flow", PosX=0, PosY=0.60);
    37 in      HeatFlowFraction                as fraction     (Brief="Flow Signal", PosX=0.50, PosY=0);
     47out HeatFlow                    as power        (Brief="Heat Flow", PosX=0, PosY=0.60,Protected=true);
     48in      HeatFlowFraction        as fraction (Brief="Flow Signal", PosX=0.50, PosY=0,Protected=true);
    3849       
    39         EQUATIONS
     50EQUATIONS
    4051"Heat Flow"
    4152        HeatFlow = MinHeatFlow + HeatFlowFraction*(MaxHeatFlow-MinHeatFlow);
Note: See TracChangeset for help on using the changeset viewer.