NickB

Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by NickB

  1. I have am looking to increase the scan rate of my data collection.  not doing data logging and plotting xy of a channel that has a conversion with an A to D channel that uses 2 analog channel with conversions to calculate.  current timing is set at 0.01 for each channel and I am getting C1038 timing lag regularly.  I am running the display on a older laptop windows PC with a labjack T7.  Should I look at streaming the data and then plotting? Is that even possible.

  2. Can you help with the syntax to add traces with the data from plotData variable?

    I am not understanding how to get this.

    Here is my sequence 

     

     

    class CData

       local xData

       local yData

    endclass

     

     

     

    private newData = new(CData)

    newData.xData = AIN2

    newData.yData = AIN1

    PlotData.append(newData)

    AIN2.ClearHistory()

    AIN1.ClearHistory()

     

     

    component.Graph2D.AddTrace ("test1")

    component.Graph2D.test1.strYExpression = ????

    component.Graph2D.test1.strXExpression = ????

  3. I am using XY plot to trend 2 channels, I am needing to run a set condition and generate the plot.  I have this functioning well.  The next step would be to hold this data on the plot, make adjustments to my conditions and generate the next plot on the same graph without showing the collected data while changing conditions.  Additionally I would like to change trend color as well for each curve.  Is this possible?  

    To further enhance the display, is there a way to add annotations on the fly or select from a drop down menu the prescribed operating conditions?

  4. There appears to the a delay or offset in my data used in my X-Y plot.  When creating a log file and plotting the data the graph looks as expected but on the real time display that values are not aligned.  both channels have same scan rate and no offset timing.