using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Deltares.DamPiping { public class PipingCalculatorBligh { public const double cDefaultMaxReturnValue = 90.0; public PipingCalculatorBligh() { } public double? CalculatePipingFactor() { //base.CalculatePipingFactor(location, surfaceLine, soilProfile, waterLevel); try { // if (UpliftLocationAndResult != null) // { // return CalculatePipingFactorAtLevel(location, waterLevel, surfaceLine.Geometry.GetZAtX(UpliftLocationAndResult.X)); // } return cDefaultMaxReturnValue; } catch (Exception e) { throw new Exception("An unexpected error occurred", e); } } } }