Project home: https://bues.ch/a/awlsim Original repository at: https://git.bues.ch/git/awlsim.git https://bues.ch/a/awlsim

Michael Buesch 21934a7525 cython-patch: Rename magic comment 5 years ago
awlsim 21934a7525 cython-patch: Rename magic comment 5 years ago
awlsim_loader 1aa01dd38f Add AWL optimizer stub 6 years ago
awlsimhw_debug 608c2af02f cython: Add central cython support definitions 5 years ago
awlsimhw_dummy 608c2af02f cython: Add central cython support definitions 5 years ago
awlsimhw_linuxcnc 608c2af02f cython: Add central cython support definitions 5 years ago
awlsimhw_pixtend 608c2af02f cython: Add central cython support definitions 5 years ago
awlsimhw_pyprofibus 608c2af02f cython: Add central cython support definitions 5 years ago
awlsimhw_rpigpio 608c2af02f cython: Add central cython support definitions 5 years ago
debian 827176cfff Bump version 5 years ago
doc eae1090ffe Create misc directory 6 years ago
examples c29aaa6ac7 Refresh all project files 5 years ago
libs 289457ba5a tests: Fix PiXtend tests 6 years ago
maintenance 8708e6787e cleantree: Do not delete releases 5 years ago
misc 21934a7525 cython-patch: Rename magic comment 5 years ago
pilc 89e977545f pilc: Extend rpiver description 5 years ago
progs 0ea711b94d Update putty to 0.70 5 years ago
submodules 372d8e4407 Update pyprofibus 6 years ago
tests 907ef64968 tests: Enhance RND+ and RND- tests 5 years ago
.gitignore 465f14daec doc: Do not generate PDF and PS docs 6 years ago
.gitmodules 80da6e14c3 Remove pilc-hat 6 years ago
COMPATIBILITY.md c4e79739bc doc: Fix typo 7 years ago
COPYING.txt 193467d27e Clarify license conditions (GPL2+) 9 years ago
MANIFEST.in c3b414f496 setup: Add support for pyx.in files 5 years ago
QUICK-START.md 8918ce156a doc: Move pictures to subdir 6 years ago
README.md 64c96febf8 Update README 5 years ago
TODO.md d9945add62 Update TODO list 5 years ago
awlsim-client 2d76736f0d Move cython logic to separate awlsim_loader module 7 years ago
awlsim-gui 250f25803b Update copyright 8 years ago
awlsim-linuxcnc-hal 9303873178 Move options to cpuconf structure 5 years ago
awlsim-proupgrade a104ac167a awlsim-proupgrade: Add option to regenerate all UUIDs 5 years ago
awlsim-server 164c250f7f awlsim-server: Fix cython helper check 7 years ago
awlsim-server.service.in 3a85aaf2d2 systemd: Restart server on failure 5 years ago
awlsim-symtab 21e6cad1f8 ASC: Strip white space in ASC files 6 years ago
awlsim-test 9303873178 Move options to cpuconf structure 5 years ago
awlsim-win.cmd bbaa7ed08d Update windows build scripts 7 years ago
awlsimhw_pyprofibus.conf a2825f0256 hw/pyprofibus/conf: Fix py2 compatibility 7 years ago
setup.py 608c2af02f cython: Add central cython support definitions 5 years ago

README.md

Awlsim - S7 compatible Programmable Logic Controller (PLC/SPS)

Awlsim is a free Step 7 compatible Programmable Logic Controller, that supports the automation languages AWL/STL and FUP/FBD. Awlsim itself is written in Python.

The latest version of Awlsim can be downloaded at the official Awlsim site.

Awlsim - Programmable Logic Controller (PLC/SPS)

Awlsim is a free Step 7 compatible Programmable Logic Controller, that supports the automation languages AWL/STL and FUP/FBD. Awlsim itself is written in Python. The speed of execution ranges from several ten thousand AWL/STL instructions per second on slow embedded machines to a couple of million instructions per second on faster computers.

AWL/STL programs on PLCs are used for automation of industrial processes. However Awlsim is very flexible, so it can be used for other purposes beyond industrial applications, too. Awlsim aims to be compatible with the industry standard S7 software on the AWL/STL level.

Awlsim can emulate CPUs with two and four accumulator registers (S7-3xx and S7-4xx). Compatibility to S7 hardware is a task taken seriously by the Awlsim project. We want to be as close as possible to the real PLC hardware with our AWL/STL code execution. For this reason Awlsim ships an extensive selftest suite. Missing features and differences between Awlsim and Step 7 are documented in the COMPATIBILITY documentation and TODO documentation files.

Quick start tutorial

See the quick start tutorial for a simple example on how to use Awlsim in simulator mode. In simulator mode Awlsim can be run on any desktop PC. No special hardware is required.

Example project

If you don't know where to start, you can find an example project in the examples directory as EXAMPLE.awlpro. You can easily run this example in simulation mode without the need for special hardware.

Git repository

The latest development version of Awlsim can be fetched with git:

git clone https://git.bues.ch/git/awlsim.git
cd awlsim

After cloning the main repository the git submodules must also be fetched. The following helper script can be used:

./maintenance/update-submodules

Dependencies

Awlsim depends on Python 3.4 or later or alternatively Python 2.7.

PyQT 5 or alternatively PySide

These packages can be installed with pip:

pip3 install --upgrade PyQt5
pip3 install --upgrade pyside

On Windows all Awlsim dependencies can be installed by double clicking the shipped installer script: maintenance\win-install-dependencies.cmd

If building and using Awlsim with Cython acceleration is desired, Cython must also be installed:

pip3 install --upgrade Cython

Directory structure

The Awlsim Git repository and source archive awlsim-x.yz.tar.bz2 contain lots of files and directories. Here is an overview of the main files and directories and their purpose:

Main executables

User interface executables. The main user executable is awlsim-gui.

  awlsim-client             : Command line client tool.
  awlsim-gui                : Graphical user interface. This is the main user frontend.
  awlsim-linuxcnc-hal       : LinuxCNC HAL module executable.
  awlsim-proupgrade         : Command line tool to update .awlpro file formats.
  awlsim-server             : Command line server tool.
  awlsim-symtab             : Command line tool to parse symbol tables (.ASC).
  awlsim-test               : Command line tool for unit testing.

                          See tests/run.sh for execution of unit tests.

awlsim-win.cmd : Windows wrapper for awlsim-gui.

Documentation

These files and directories contain useful information about Awlsim.

  doc/                      : Main documentation.
  doc/fup/                  : Awlsim FUP language and editor documentation.
  examples/                 : Various example projects and feature demonstrations.
  COMPATIBILITY.md|html     : S7 compatibility documentation.
  COPYING.txt               : Main license.
  QUICK-START.md|html       : Quick start tutorial.
  README.md|html            : Main README document.
  TODO.md|html              : TODO list.

Main modules

The main modules implement most of Awlsim's functionality.

  awlsim/                   : Main Awlsim Python-module directory. This is where the magic happens.
  awlsim/awlcompiler        : AWL compiler.
  awlsim/awloptimizer       : AWL optimizer.
  awlsim/common             : Common libraries, modules and helper functions.
  awlsim/core               : AWL interpreter core. This is where the AWL program is executed.
  awlsim/core/instructions  : Implementation of AWL instructions.
  awlsim/core/systemblocks  : Implementation of SFCs and SFBs.
  awlsim/coreclient         : Client library to connect to coreserver.
  awlsim/coreserver         : Server library to provide AWL interpreter core access via networking.
  awlsim/fupcompiler        : FUP compiler.
  awlsim/gui                : Graphical user interface implementation (Qt).
  awlsim/library            : AWL block (FC and FB) libraries.
  awlsim/library/iec        : Implementation of IEC FCs and FBs.
  awlsim_loader/            : Import wrapper for the main Awlsim Python-module.

                          This is used to automatically load Cython optimized modules.

libs/ : External libraries used for running or testing Awlsim. progs/ : External programs used in Awlsim. submodules/ : Git submodules used for running Awlsim.

                          See  man git-submodule  for general help about Git submodules.

submodules/pyprofibus/ : PROFIBUS-DP implementation. tests/ : Unit test cases. tests/run.sh : Main interface to run unit tests. Please see --help

Hardware support modules

The hardware modules are the glue between the Awlsim core and the real world. The hardware modules are invoked before and after running the user cycle (OB 1).

  awlsimhw_debug/           : Hardware module for unit tests. Do not use in production.
  awlsimhw_dummy/           : Dummy no-operation hardware module for testing, debugging or simulation.
  awlsimhw_linuxcnc/        : LinuxCNC hardware support module.
  awlsimhw_pixtend/         : PiXtend hardware support module.
  awlsimhw_pyprofibus/      : PROFIBUS-DP hardware support module.
  awlsimhw_pyprofibus.conf  : Configuration file for awlsimhw_pyprofibus.
  awlsimhw_rpigpio/         : Raspberry Pi GPIO hardware support module.

Misc

  awlsim-server.service.in  : Systemd unit template for awlsim-server.
  debian/                   : Debian packaging support.
  maintenance/              : Maintainer scripts.
  misc/                     : Miscellaneous scripts and files.
  pilc/                     : PiLC distribution build scripts.
  setup.py                  : Python package build script. This also builds the Cython modules.

FUP - Funktionsplan - Function block diagram

Awlsim supports programming in an S7-FUP like language. See the FUP documentation for more information about Awlsim's implementation of FUP.

Unit tests

The unit test suite can be run with the invocation of the command ./tests/run.sh. This will run all unit tests and show the results. Please see ./tests/run.sh --help for more options.

License / Copyright

Copyright (C) Michael Büsch / et al.

Awlsim is Open Source Free Software licensed under the GNU General Public License v2+. That means it's available in full source code and you are encouraged to improve it and contribute your changes back to the community. Awlsim is free of charge, too.