Skip to content

Commit

Permalink
Revised documentation of SlewRateLimiter (#4014)
Browse files Browse the repository at this point in the history
This has changes to the documentation only
  • Loading branch information
mwetter authored Oct 2, 2024
1 parent 63c1932 commit f3e6bac
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Buildings/Controls/OBC/CDL/Reals/LimitSlewRate.mo
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ block LimitSlewRate "Limit the increase or decrease rate of input"
parameter Boolean enable=true
"Set to false to disable rate limiter";
Buildings.Controls.OBC.CDL.Interfaces.RealInput u
"Connector of Real input signal"
"Input signal to be rate of change limited"
annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
Buildings.Controls.OBC.CDL.Interfaces.RealOutput y
"Connector of Real output signal"
"Rate of change limited output signal"
annotation (Placement(transformation(extent={{100,-20},{140,20}})));

protected
Expand Down Expand Up @@ -59,8 +59,7 @@ equation
The block limits the rate of change of the input by a ramp.
</p>
<p>
This block computes a threshold for the rate of change between
input <code>u</code> and output <code>y</code> as
This block computes a threshold for the rate of change of the output <code>y</code> as
<code>thr = (u-y)/Td</code>, where <code>Td &gt; 0</code> is parameter.
The output <code>y</code> is computed as follows:
<ul>
Expand Down

0 comments on commit f3e6bac

Please sign in to comment.