Class - Examples
Jump to navigation
Jump to search
Navigation: PGMs ➔ Classes
Functions | Subroutines | Classes | |||||
---|---|---|---|---|---|---|---|
Defining a Function | Predefined Functions | Tag Functions | Mathematical Functions | String Functions | Defining a Subroutine | Trigger Subroutines | Defining a Class |
Related Links: User Defined Class and Functions, Example PGM Files
Class - Introduction | Class - Defining a Class | Class - Using a Class | Class - Macros | Class - Examples |
---|
Global Predefined Class Instances: Species Database Class, Particle Size Definition Class, Plant Model Class
Predefined Classes: Array Class, StrArray Class, Matrix Class, TagSelect Class, Noise Class, TimeClass
Class Examples
Class Declaration Example
- A very condensed extract of the CSTR_Class PGM file is presented below to explain the structure and use of the Class definition:
Class CSTR_Class
ClassAsPageLabel ;example of Special Keyword
;... Various Variable Definitions.....
String UnitTag{tag}@
Real TankVolume*("Vol","m^3")<<300>>
;... Various Variable Definitions.....
Sub Init()
UnitTag = ClassTag() ; example of Special Function
[concatenate(UnitTag, ".ResTime.Volume (m^3)")] = TankVolume
EndSub
Sub CalculateCSTR()
;......Various Calculation Code .....
EndSub
Sub Exec()
;......Various Calculation Code .....
CalculateCSTR() ;Example of calling a predefined subroutine within a subroutine.
;......Various Calculation Code .....
EndSub
EndClass
- The name of the Class (or template) is called CSTR_Class.
- All the variables that are associated with the CSTR_Class are defined. (The full PGM file is available in the Gold distributed example project)
- Nested functions are allowed within a class, for example Sub "CalculateCSTR" is called inside the Sub "Exec()"
- In summary, the Class(template) "CSTR_Class" contains a number of calculations and a number of Set Value Commands.
Other Examples HERE
Example User Defined Classes
- Gold Project - demonstrates the use of Classes in the CSTR pgm file. This is used to calculate the gold and copper leaching and adsorption values in a number of individual tanks.
- Lime Preparation (Makeup) Example - demonstrates the use of two user defined Classes: Set Species Splits and Optimise Controller.
- Milling and Flotation Project - demonstrate the use of Classes to display flotation recoveries at the end of project solve.
- Milling and Magnetic Separation Project - demonstrate the use of Classes to display cyclone splits and magnetic separator recoveries.
- Size Distribution Project - demonstrate the use of Classes to display some cyclone split information.
- Digestion with Direct Heating - demonstrates the use of Classes to calculate user defined properties.
- Demo Ammonia Project - demonstrates the use of Classes to calculate water shift.
- SOP Example Project - demonstrate the use of Classes to add rainfall and evaporation to the tank model (emulating a pond).
- FerroManganese Furnace Example Project - demonstrates use of Classes to set flow in feeders, perform heat loss calculations, and to calculate and set reactions extents.
- See Example Class Files for more examples of user defined class definitions.