Changeset 809 for branches/gui/eml/controllers
- Timestamp:
- Aug 4, 2009, 12:12:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/controllers/heat_flow.mso
r743 r809 21 21 22 22 Model heat_flow 23 ATTRIBUTES24 Pallete = true;25 Icon = "icon/heat_flow";26 Brief = "Model of a very simple valve for setting the energy flow with a controller.";27 23 24 ATTRIBUTES 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 "; 28 39 29 40 PARAMETERS 30 41 31 MinHeatFlow as power(Brief="Minimum of Heat Flow",Default=-1000);32 MaxHeatFlow as power 42 MinHeatFlow as power (Brief="Minimum of Heat Flow",Default=-1000); 43 MaxHeatFlow as power (Brief="Maximum of Heat Flow",Default=1000); 33 44 34 45 VARIABLES 35 46 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);47 out HeatFlow as power (Brief="Heat Flow", PosX=0, PosY=0.60,Protected=true); 48 in HeatFlowFraction as fraction (Brief="Flow Signal", PosX=0.50, PosY=0,Protected=true); 38 49 39 50 EQUATIONS 40 51 "Heat Flow" 41 52 HeatFlow = MinHeatFlow + HeatFlowFraction*(MaxHeatFlow-MinHeatFlow);
Note: See TracChangeset
for help on using the changeset viewer.