Changeset 771 for branches/gui
- Timestamp:
- Jun 18, 2009, 4:28:00 PM (14 years ago)
- Location:
- branches/gui/eml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/controllers/PIDs.mso
r683 r771 289 289 Model FirstOrder 290 290 ATTRIBUTES 291 Pallete = true;291 Pallete = false; 292 292 Icon = "icon/PIDIncr"; 293 293 -
branches/gui/eml/stage_separators/column.mso
r739 r771 38 38 using "pressure_changers/pump"; 39 39 40 Model ControlSection 41 42 ATTRIBUTES 43 Pallete = false; 44 Brief = "Control variables for column section."; 45 46 PARAMETERS 47 outer NComp as Integer (Brief="Number of components"); 48 49 Tindicator_TrayNumber as Integer (Brief="Temperature Indicator in the tray"); 50 Pindicator_TrayNumber as Integer (Brief="Pressure Indicator in the tray"); 51 52 end 53 40 54 Model InitializeSection 41 55 … … 156 170 INITIALIZATION as InitializeSection (Brief = "Column Model Initialization"); 157 171 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 172 # Control Ports 173 #+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 174 CONTROL as ControlSection (Brief = "Control"); 175 out TCI as control_signal (Brief="Temperature Indicator", Protected = true, PosX=1, PosY=0.90); 176 out PCI as control_signal (Brief="Pressure Indicator", Protected = true, PosX=1, PosY=0.80); 177 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 158 178 # Column Feed - Side Stream Flow and Murphree Efficiency 159 179 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ … … 195 215 196 216 EQUATIONS 217 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 218 # Control Ports 219 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 220 221 "Tray Temperature Indicator" 222 TCI*'K' = TRAYS(max([NumberOfTrays, CONTROL.Tindicator_TrayNumber])).OutletVapour.T; 223 224 "Tray Pressure Indicator" 225 PCI*'atm' = TRAYS(max([NumberOfTrays, CONTROL.Pindicator_TrayNumber])).OutletVapour.P; 226 197 227 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 198 228 # Equating Feed Tray Variables to Trays Variables
Note: See TracChangeset
for help on using the changeset viewer.