using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Formula { /// /// 固定参数 /// public class ConstantParas { public const double g = 9.81;//重力加速度 m/s² public const double WaterDensity = 1000; //水的密度 g/L kg/m³ } }