Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article shows how to implement a PIC controller in the NETx Server through XLogic. For the LUA implementation through LUA, please refer to this article.

Table of Contents
maxLevel2

Basics

A PID controller is a versatile control loop mechanism that compares an input reading with a set point and writes a control value based on the controller parameters and state.

Implementation

The required items and parameters are specified when calling the PID controller loop. This is done by setting up an XCommand event definition of type Timer.

  1. In the NETx Studio, go to Extensions > XCommand event definitions.
  2. Create a new definition. Set Type to Timer and set the Interval to 10 s. The controller loop will then be called every 10 seconds.
  3. In the XCommand column select Logic.PidControl and provide the inputs and parameters.
  4. Save the XCommand event definitions and restart the NETx Server.

In this example we use the following inputs and parameters:

Name

Value

actualNETx\VIRTUAL\BuildingA\Floor1\RoomA\Current
setpointNETx\VIRTUAL\BuildingA\Floor1\RoomA\Setpoint
controlNETx\VIRTUAL\BuildingA\Floor1\RoomA\Control
Kp0.2
Ki0.0000222222
Kd0
minControlValue0
maxControlValue255
esumMin-2
esumMax65536

After the NETx Server has finished start-up, the PID controller is operational. Set a value for the set point. Vary the current value and watch how the control value changes accordingly.

Background information

Kp is the proportional factor which 1/P where P is the gain of the controller in K (Kelvin). Notable hardware vendors suggest for warm water heating a P of 5 K. Therefore, Kp for heating is 0.2.

...