lx
2025-11-24 e5a570db2036a6b155c2ddc289b42bd050b9ad3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ErrorAnalysis.UI.Utility
{
    public class UnitConvert
    {
        public static double Ft2M(double val) => val / 3.281;
 
        public static double M2Ft(double val) => val * 3.281;
 
        public static double FtHr2MS(double val) => val / 3.281 / 60/60;
 
        public static double MHR2MS(double val) => val /60/60;
 
        public static double MS2FtHr(double val) => val * 3.281 * 60*60;
 
        /// <summary>
        /// 计算YieldCounting备用
        /// </summary>
        /// <param name="yieldCounting">产额</param>
        /// <returns>产额</returns>
        public static double CalcYieldCounting(double yieldCounting) => yieldCounting;
    }
}