Sequential Function Chart (SFC)

The SFCClosed "Sequential Function Chart" It can be used to program processes that can be split into steps. The main components of SFC are: - Steps with associated actions - Transitions with associated logic conditions - Directed links between steps and transitions language is a state diagram.

  • Graphical steps are used to represent stable states.
  • Transitions describe the conditions and events that lead to a change of state.
  • Using SFC simplifies the programming of sequential operations because it saves a lot of variables and tests just for maintaining the program context.

These are basic components of an SFC chart:

Chart Programming

The KAS-IDEClosed "Integrated development environment" An integrated development environment is a type of computer software that assists computer programmers in developing software. IDEs normally consist of a source code editor, a compiler and/or interpreter, build-automation tools, and a debugger fully supports SFC programming with several hierarchical levels of charts (e.g., a chart that controls another chart).

Working with a hierarchy of SFC charts is an easy and powerful way for managing complex sequences and saves performances at runtimeClosed In computer science, runtime (or run-time) describes the operation of a computer program, the duration of its execution, from beginning to termination (compare compile time). Within KAS, runtime also refers to the virtual machine that manage the program written in a computer language while it is running.

See these sections for more information:

See Also