Min

Minimum of input values.

Syntax

 Prefix Min(expression)
  • expression: signal expression
  • Prefix
    • TIME for calculation of the minimum for all time steps for one entity (default setting, can also be neglected)
      •  Time Min("x" in "unit") function returns the minimum i.e. of all the elements within the given time range.
    • ENTITY calculation of the minimum for all entities at one time step (has to be placed in front of function if needed)    
      • Entity Min("x" in "unit") function returns the minimum i.e. of all the entities for a given time step.  

Example

Time Min("produced water per time increment" in "STB")

alternative version:

Min("produced water per time increment" in "STB")

As you see in the following table the Min function produces following output based on the 'original signal' as input:

Date/Time

Original Signal

Time Min

01.02.2007 00:00

8

0

01.03.2007 00:00

0

0

01.04.2007 00:00

15

0

01.05.2007 00:00

22

0

01.06.2007 00:00

24

0

01.07.2007 00:00

13

0

01.08.2007 00:00

27

0

01.09.2007 00:00

6

0

Entity Min("produced water per time increment" in "STB")

As seen in the following table the Entity Min function produces following output based on the 'original signal1' and 'original signal2' as input:

Date/Time

Original Signal1

Original Signal2

Entity Min for signal1

Entity Min for signal 2

01.02.2007 00:00

8

#NULL!

0

12

01.03.2007 00:00

0

#NULL!

0

12

01.04.2007 00:00

15

19

0

12

01.05.2007 00:00

22

12

0

12

01.06.2007 00:00

24

34

0

12

01.07.2007 00:00

13

19

0

12

01.08.2007 00:00

27

15

0

12

01.09.2007 00:00

6

19

0

12