• Recent
    • Tags
    • Popular
    • Register
    • Login

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website

    How to have a point that is the sum of time of binary point is on..

    User help
    2
    5
    2.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • F
      fca
      last edited by

      i mean i have a modbus source that is binary on or off
      i want to create a metadatapoint the sums the accumulate hours of that binary is 1....

      i don't know what to put on the script part of the metadata point for achieving this

      what i need is to have a counter of working hours a day of a engine..

      thanks for the help..

      1 Reply Last reply Reply Quote 0
      • JoelHaggarJ
        JoelHaggar
        last edited by

        This is from the documentation on Meta Data Points (click on the ? icon)

        The StartsAndRuntimeList object is returned by Binary and Multistate points. It contains the following properties:

        realStart: (integer) the actual start time used for calculations (in case the start time precedes the point's first known value)
        end: (integer) the end time used for calculations
        data: (array) the list of individual StartAndRuntime objects.
        Each StartAndRuntime object has the following properties:
        value: (boolean for Binary, integer for Multistate) the point state to which the remaining properties apply
        starts: (integer) the number of times the state was entered over the period
        runtime: (integer) the amount of time in milliseconds the point was in the state over the period
        proportion: (float) the proportion of the period the point was in the state (runtime / real duration)
        percentage: (float) proportion * 100

        To access a specific StartAndRuntime object in the list, use the get() function. For example, the following returns the proportion of time that 'b' was in state 'false' over the previous 2 months.

        return b.past(MONTH, 2).get(false).proportion;

        you could do

        return 24*(b.past(HOUR, 24).get(true).proportion);
        

        I think this will take the % of time it was true for the 24 hour period and then convert that to how many hours.

        1 Reply Last reply Reply Quote 0
        • F
          fca
          last edited by

          Hi and thanks for the help, what i need is not the last 24hours but by day i mean some thing like return (b.past**(TODAY).**get(true).proportion);

          [quote=

          return 24*(b.past(HOUR, 24).get(true).proportion);
          

          I think this will take the % of time it was true for the 24 hour period and then convert that to how many hours.[/quote]

          1 Reply Last reply Reply Quote 0
          • JoelHaggarJ
            JoelHaggar
            last edited by

            I you set the update to start of day and use this it will work: return 24*(b.past(DAY).get(true).proportion);

            1 Reply Last reply Reply Quote 0
            • First post
              Last post