37 lines
741 B
C#
37 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xylem.Common.Ui.GenesisToolBox
|
|
{
|
|
public class AmpHelper
|
|
{
|
|
public List<Amps> Amplitudes = new List<Amps>();
|
|
public void Calc()
|
|
{
|
|
|
|
}
|
|
|
|
public void Init()
|
|
{
|
|
Amplitudes = new List<Amps>();
|
|
for (int i = 5; i <= 35; i++)
|
|
{
|
|
Amplitudes.Add(new Amps() { HitLevel = i, AVG = 0, Values = new List<double>() });
|
|
}
|
|
}
|
|
}
|
|
public class Amps
|
|
{
|
|
public int HitLevel { get; set; }
|
|
public double AVG { get; set; }
|
|
|
|
public List<double> Values { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|