2021-05-27 15:30:04 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
|
|
{
|
2022-05-23 09:53:48 +00:00
|
|
|
|
public static class GlobalData
|
2021-05-27 15:30:04 +00:00
|
|
|
|
{
|
2021-09-19 11:34:03 +00:00
|
|
|
|
public static double SampleDensity = 0; /// sample water density measured in an accredited labo [kg/m3]
|
|
|
|
|
|
public static double SampleTemp = 0; /// sample temperature when density measured in an accredited labo [°C]
|
|
|
|
|
|
public static double Buoyancy = 0;
|
2021-05-27 15:30:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|