Beispiel #1
0
    public NCCScript()
    {
        Tabular  = new TabularControl(PlotType.WorkSheet);
        Spectrum = new SpectrumControl();
        TimeBase = new TimeBaseControl();

        AsyncFMax = 3200;
        AsyncLine = 800;
        Receiver.SingleSinWave(100, 0.1f);
    }
Beispiel #2
0
    public NCCScript()
    {
        Tabular          = new TabularControl(PlotType.RealTime);
        Tabular.HighFreq = 1000;
        Tabular.LowFreq  = 20;
        Spectrum         = new SpectrumControl();
        TimeBase         = new TimeBaseControl();

        Ip        = "192.168.7.1";
        AsyncLine = 3200;
        AsyncFMax = 3200;
    }
Beispiel #3
0
 public NCCScript()
 {
     Tabular       = new TabularControl(PlotType.WorkSheet);
     ConnectionStr = "USB0::2391::10759::MY52600381::0::INSTR";
     Ip            = "192.168.0.14";
     AsyncLine     = 3200;
     AsyncFMax     = 3200;
     ICP           = true;
     Sensitivity   = 7.87f;
     InputType     = DaqInputType.AC;
     HWGain        = DaqGain._1;
     SamplingRate  = DaqSamplingRate._8192;
 }
Beispiel #4
0
    public void Run()
    {
        Receiver.Start();

        System.Threading.Thread.Sleep(2000);
        TabularControl.InsertRow(20, 40);

        System.Threading.Thread.Sleep(2000);
        TabularControl.InsertRow(520, 450);

        System.Threading.Thread.Sleep(2000);
        TabularControl.InsertRow(220, 340);
    }
Beispiel #5
0
    public NCCScript()
    {
        Tabular  = new TabularControl(PlotType.RealTime);
        Spectrum = new SpectrumControl();
        TimeBase = new TimeBaseControl();

        Tabular.LowFreq  = 90;
        Tabular.HighFreq = 110;
        TabularControl.CorrectionValueCalcRowCount = 5;

        AsyncFMax = 800;
        AsyncLine = 800;
        Receiver.SingleSinWave(100, 0.1f);
    }
Beispiel #6
0
    public NCCScript()
    {
        Tabular  = new TabularControl(PlotType.RealTime);
        Spectrum = new SpectrumControl();
        TimeBase = new TimeBaseControl();

        Ip              = "192.168.0.11";
        HWGain          = 1;
        AsyncLine       = 800;
        AsyncFMax       = 3200;
        ICP             = true;
        Sensitivity     = 7.87f;
        AlarmBufferMode = AlarmBufferMode.Slow;
    }
Beispiel #7
0
    public NCCScript()
    {
        Tabular  = new TabularControl(PlotType.RealTime);
        Spectrum = new SpectrumControl();
        TimeBase = new TimeBaseControl();

        Ip           = "192.168.0.14";
        AsyncLine    = 800;
        AsyncFMax    = 3200;
        ICP          = true;
        Sensitivity  = 7.87f;
        InputType    = DaqInputType.AC;
        HWGain       = DaqGain._1;
        SamplingRate = DaqSamplingRate._8192;
    }
Beispiel #8
0
        private void navItemCorrection_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e)
        {
            var plot = new TabularControl(PlotType.Correction);

            AddDockPanel(plot, plot.Type.ToString());
        }