lx
2025-11-18 e81cbb4c978bec283c58629156c07106aaa46943
ErrorAnalysis.Service/PDEVCalcService.cs
@@ -8,6 +8,7 @@
{
    public class PDEVCalcService
    {
        //废弃
        public static double GetMergePDEV(string modelId, double porosity, double sw, double speed, double depth, double yieldCounting, double nearCofe, double farCofe)
        {
            var farResult = COMergeCalcService.GetFarMergeCOResult(modelId, porosity, sw, speed, depth, yieldCounting);
@@ -19,6 +20,7 @@
            return Math.Sqrt(Math.Pow(nearPDEV * nearCofe, 2) + Math.Pow(farPDEV * farCofe, 2));
        }
        //废弃
        private static double CalcPDEV(double c, double o) => c / o * Math.Sqrt((1 / c + 1 / o));
    }
}