• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. bweiss
    3. Topics

    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
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by bweiss

    • B

      Add 4 byte BCD swapped to ModBus data type

      Wishlist
      • • • bweiss
      3
      0
      Votes
      3
      Posts
      3.0k
      Views

      J

      Hi Brad,
      Thanks for posting your inquiry.
      This is something that Mango could definitely be updated to support, and we can slot it into our development list for future updates.
      If adding this capability is part of a project you're working on, please contact us directly if you may require this development to be accelerated by contributing to a sponsored piece of development.

      Cheers,
      /jk

    • B

      Extending the Reports

      Development general discussion
      • • • bweiss
      8
      0
      Votes
      8
      Posts
      3.9k
      Views

      C

      Hi Matt,

      In the case where the logging interval is faster than the reporting interval, ie with a reporting interval of 15 minutes and a logging interval of 5 minutes, I'd expect the value at 2:00 to be the actual sample: 13.

      The actual values logged could be instantaneous or the average of all the samples since the last logged value. For instance I have the modbus data source poll time set as low as I can without the polls starting to overlap, about 10s. Most variables I simply log the instantaneous value every 15 minutes, but for particularly noisy ones I log the average of the 6 samples/minute * 15 minutes = 90 samples. The result is there is some time delay in averaged samples, I think that it is acceptable, but I suppose it depends on the characteristic of the process.

      For the second case, where the report interval does not coincide with the logging interval, I would linearly interpolate between each point. Thus to report on the value at 2PM a value after or at 2PM would have to be logged.

      Slightly unrelated, but I've been meaning to look into how RRD (http://oss.oetiker.ch/rrdtool/) stores data as I believe it sets the bar for high performance logging and archival of time series data. There is a java port as well I believe.