The powerflow_library class is an abstract class that implements basic elements of powerflow object configurations. More...
Functions | |
| EXPORT int | create_powerflow_library (OBJECT **obj, OBJECT *parent) |
| REQUIRED: allocate and initialize an object. | |
| EXPORT int | init_powerflow_library (OBJECT *obj) |
| Object initialization is called once after all object have been created. | |
| EXPORT TIMESTAMP | sync_powerflow_library (OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass) |
| Sync is called when the clock needs to advance on the bottom-up pass (PC_BOTTOMUP). | |
The powerflow_library class is an abstract class that implements basic elements of powerflow object configurations.
| EXPORT int create_powerflow_library | ( | OBJECT ** | obj, | |
| OBJECT * | parent | |||
| ) |
REQUIRED: allocate and initialize an object.
| obj | a pointer to a pointer of the last object in the list | |
| parent | a pointer to the parent of this object |
Definition at line 69 of file powerflow_library.cpp.
| EXPORT int init_powerflow_library | ( | OBJECT * | obj | ) |
Object initialization is called once after all object have been created.
| obj | a pointer to this object |
Definition at line 92 of file powerflow_library.cpp.
| EXPORT TIMESTAMP sync_powerflow_library | ( | OBJECT * | obj, | |
| TIMESTAMP | t0, | |||
| PASSCONFIG | pass | |||
| ) |
Sync is called when the clock needs to advance on the bottom-up pass (PC_BOTTOMUP).
| obj | the object we are sync'ing | |
| t0 | this objects current timestamp | |
| pass | the current pass for this sync call |
Definition at line 109 of file powerflow_library.cpp.