IOScale.cs 585 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.RT.IOCore
  6. {
  7. public struct IOScale
  8. {
  9. public string IOName;
  10. public double LogicMin;
  11. public double LogicMax;
  12. public double PhysicalMin;
  13. public double PhysicalMax;
  14. public IOScale(string name, double lMin, double lMax, double pMin, double pMax)
  15. {
  16. IOName = name;
  17. LogicMin = lMin;
  18. LogicMax = lMax;
  19. PhysicalMin = pMin;
  20. PhysicalMax = pMax;
  21. }
  22. }
  23. }