Skip to content
Snippets Groups Projects
Commit 96763bb0 authored by Andrew Heather's avatar Andrew Heather Committed by Mark OLESEN
Browse files

ENH: Added optional limits to Function1 (#1924)

To apply limits to the input values, use the dictionary format to include the
optional keywords 'minLimit' and/or 'maxLimit', e.g.

    limitedPolyTest        polynomial;
    limitedPolyTestCoeffs
    {
        limitedPolyTest coeffs
        (
            (5 1)
            (-2 2)
            (-2 3)
            (1 4)
        );

        minLimit    0.4;
        maxLimit    1.4;
    }

    limitedTableFileTest   tableFile;
    limitedTableFileTestCoeffs
    {
        file            "<system>/fanCurve.txt";
        minLimit        0.4;
        maxLimit        1.4;
    }
parent 8d2d894a
1 merge request!392Draft: Feature ep1364 fan curve clipping
Showing
with 147 additions and 35 deletions
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment