Exemplo n.º 1
0
    public NCCScript()
    {
        Tabular  = new TabularControl(PlotType.WorkSheet);
        Spectrum = new SpectrumControl();
        TimeBase = new TimeBaseControl();

        AsyncFMax = 3200;
        AsyncLine = 800;
        Receiver.SingleSinWave(100, 0.1f);
    }
Exemplo n.º 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;
    }
Exemplo n.º 3
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);
    }
Exemplo n.º 4
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;
    }
Exemplo n.º 5
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;
    }
Exemplo n.º 6
0
        private void navItem_timeBase_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e)
        {
            var plot = new TimeBaseControl();

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