> For the complete documentation index, see [llms.txt](https://support.powerio.com/hub/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.powerio.com/hub/codesys-hvac/hvac-library/functionblocks/numeric/limiter.md).

# Limiter

## `Limiter` (FB)

FUNCTION\_BLOCK Limiter

### Kurzbeschreibung

> Grenzwertüberwachung eines Analogwertes

### Darstellung

<figure><img src="/files/P61EAhZCJEA1Epe2FmrO" alt=""><figcaption></figcaption></figure>

### Schnittstellen

#### Eingänge

| Name  | Datentyp | Wertebereich | Initialwert | Funktion          |
| ----- | -------- | ------------ | ----------- | ----------------- |
| *rIn* | REAL     |              | 0           | Analogwerteingang |

#### Ausgänge

| Name   | Datentyp | Wertebereich | Initialwert | Funktion                                                                                                           |
| ------ | -------- | ------------ | ----------- | ------------------------------------------------------------------------------------------------------------------ |
| *rOut* | REAL     |              |             | Analogwertausgang                                                                                                  |
| *xErr* | BOOL     |              |             | <p>\* <strong>FALSE:</strong><br>keine Grenzwertverletzung<br>\* <strong>TRUE:</strong><br>Grenzwertverletzung</p> |

#### Sollwerte / Parameter

| Name                   | Datentyp     | Wertebereich                                                 | Initialwert | Funktion                                                                      |
| ---------------------- | ------------ | ------------------------------------------------------------ | ----------- | ----------------------------------------------------------------------------- |
| **rReplacementValue**  | REAL         |                                                              | 0           | Wert am Ausgang *rOut* bei verletztem Grenzwert und Option ‘ReplacementValue’ |
| **rReplacementOption** | eLimiterMode | InpultValue, MinValue, MaxValue, LastValue, ReplacementValue | InputValue  | Auswahl des Wertes am Ausgang *rOut* je nach gewählter Option                 |
| **rMaxLimit**          | REAL         |                                                              | 150         | Oberer Grenzwert                                                              |
| **rMinLimit**          | REAL         |                                                              | -50         | Unterer Grenzwert                                                             |

### Funktionsbeschreibung

#### Analogwertausgang *rOut*

Der Analogwertausgang *rOut* folgt dem Analogwerteingang *rIn*, solange der Analogwerteingang *rIn* keinen der beiden Grenzwerte **rMinLimit** bzw. **rMaxLimit** verletzt.\
Eine Grenzwertverletzung liegt immer dann vor, wenn der Analogwerteingang *rIn* kleiner als der Grenzwert **rMinLimit** oder größer als der Grenzwert **rMaxLimit** ist.\
Im Falle einer Grenzwertverletzung wird der Analogwertausgang *rOut* in Abhängigkeit von der gewählten Option **rReplacementOption** (eLimiterMode) festgelegt.

| *rIn* | **ReplacementOption** | *rOut*                                                 | Hinweise                                                                                        |
| ----- | --------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| X     | InputValue            | *rIn*                                                  | Option ‘InpultValue’                                                                            |
| X     | MinValue              | **rMinLimit**                                          | Option ‘MinValue’                                                                               |
| X     | MaxValue              | **rMaxLimit**                                          | Option ‘MaxValue’                                                                               |
| X     | LastValue             | Letzter Zustand von *rOut* vor der Grenzwertverletzung | Option ‘LastValue’ Achtung: Der letzte Wert wird bei einem Kaltstart der PLC nicht gespeichert! |
| X     | ReplacementValue      | **rReplacementValue**                                  | Option ‘ReplacementValue’                                                                       |

Legende: X = beliebig

#### Digitalausgang *xErr*

Der digitale Ausgang *xErr* signalisiert eine aktive Grenzwertverletzung.

| Grenzwertverletzung | *xErr* | Hinweise                  |
| ------------------- | ------ | ------------------------- |
| FALSE               | FALSE  | keine Grenzwertverletzung |
| TRUE                | TRUE   | Grenzwertverletzung       |

Legende: X = beliebig

### CODESYS

InOut:

| Scope       | Name                 | Type         | Initial                 |
| ----------- | -------------------- | ------------ | ----------------------- |
| Input       | `rIn`                | `REAL`       | 0                       |
| Input Const | `rReplacementValue`  | `REAL`       | 0                       |
| Input Const | `rReplacementOption` | eLimiterMode | eLimiterMode.InputValue |
| Input Const | `rMaxLimit`          | `REAL`       | 150                     |
| Input Const | `rMinLimit`          | `REAL`       | -50                     |
| Output      | `rOut`               | `REAL`       |                         |
| Output      | `xErr`               | `BOOL`       |                         |
| Output      | `xAlarmHigh`         | `BOOL`       |                         |
| Output      | `xAlarmLow`          | `BOOL`       |                         |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://support.powerio.com/hub/codesys-hvac/hvac-library/functionblocks/numeric/limiter.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
