blob: 0c2cc1bb3f42d03a56132a0325c9cae268064a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
/// <summary>
/// Represents a machine operator liquid quantity calculation mode which will determine the amount of liquid spent when job has stopped.
/// </summary>
public enum JobLiquidQuantityCalculationMode
{
/// <summary>
/// Calculates the liquid quantities using the <see cref="PMR.MachineStatus.MachineStatus.IDSPacksLevels"/> before and after job run.
/// </summary>
MachineStatus,
/// <summary>
/// Calculates the liquid quantities using the job details, stop position and an integral.
/// </summary>
Integral
}
}
|