Actifsource

#6814 CIP process inheritance

Actifsource code generator for any programming language
With this CIP extension, it is possible to inherit processes across multiple hierarchy levels.
Everything that a process defines is inherited by the underlying process and can be extended or overwritten there.


6814 1 template1
The following example shows the 'BaseProcess' which defines a template state machine in which all CIP features can be used without restriction.


6814 2 template2

The 'modifier' property can be defined for each process:

  • Abstract: This process cannot be used directly in a system, it serves as a template and does not have to be fully defined.
  • Final: This process cannot be extended by another process. It must also be fully defined.
  • Not defined: This process can extend other processes and can be extended itself. It must also be fully defined.

6814 3 template3

The 'BaseActiveMode' process now extends the 'BaseProcess' and receives everything that the base process defines.
These definitions can now be extended or overwritten in the 'BaseActiveMode' process.

6814 4 template4

In addition, (Process 'MachineProcess') existing transitions can be extended (Transition 102) or different transition paths can be added by conditions (Transition 101 or 103).

6814 5 template5

!!! To change to this version, it is absolutely necessary to carry out the refactoring 'Update Cip to Version 2.0' for existing CIP models !!!

6814 6 refactoring1

6814 7 refactoring2

On github there is an example: