Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Creators/MacroStabilityInwardsUpliftVanCalculationGridResultCreator.cs =================================================================== diff -u -rdd2c47d012620dd990d481838fb7ee34a4572b48 -r283274d59060df06800cc23bd00ea9a31535d174 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Creators/MacroStabilityInwardsUpliftVanCalculationGridResultCreator.cs (.../MacroStabilityInwardsUpliftVanCalculationGridResultCreator.cs) (revision dd2c47d012620dd990d481838fb7ee34a4572b48) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Creators/MacroStabilityInwardsUpliftVanCalculationGridResultCreator.cs (.../MacroStabilityInwardsUpliftVanCalculationGridResultCreator.cs) (revision 283274d59060df06800cc23bd00ea9a31535d174) @@ -27,36 +27,36 @@ namespace Ringtoets.MacroStabilityInwards.KernelWrapper.Creators { /// - /// Creates instances. + /// Creates instances. /// public static class MacroStabilityInwardsUpliftVanCalculationGridResultCreator { /// - /// Creates a based on the information + /// Creates a based on the information /// given in the . /// /// The output to create the result for. - /// A new with information + /// A new with information /// taken from the /// Thrown when /// is null. - public static MacroStabilityInwardsUpliftVanCalculationGridResult Create(SlipPlaneUpliftVan slipPlaneUpliftVan) + public static UpliftVanCalculationGridResult Create(SlipPlaneUpliftVan slipPlaneUpliftVan) { if (slipPlaneUpliftVan == null) { throw new ArgumentNullException(nameof(slipPlaneUpliftVan)); } - MacroStabilityInwardsGridResult leftGrid = CreateGrid(slipPlaneUpliftVan.SlipPlaneLeftGrid); - MacroStabilityInwardsGridResult rightGrid = CreateGrid(slipPlaneUpliftVan.SlipPlaneRightGrid); + UpliftVanGridResult leftGrid = CreateGrid(slipPlaneUpliftVan.SlipPlaneLeftGrid); + UpliftVanGridResult rightGrid = CreateGrid(slipPlaneUpliftVan.SlipPlaneRightGrid); - return new MacroStabilityInwardsUpliftVanCalculationGridResult(leftGrid, rightGrid, slipPlaneUpliftVan.SlipPlaneTangentLine.BoundaryHeights + return new UpliftVanCalculationGridResult(leftGrid, rightGrid, slipPlaneUpliftVan.SlipPlaneTangentLine.BoundaryHeights .Select(tl => tl.Height)); } - private static MacroStabilityInwardsGridResult CreateGrid(SlipCircleGrid grid) + private static UpliftVanGridResult CreateGrid(SlipCircleGrid grid) { - return new MacroStabilityInwardsGridResult(grid.GridXLeft, grid.GridXRight, grid.GridZTop, grid.GridZBottom, grid.GridXNumber, grid.GridZNumber); + return new UpliftVanGridResult(grid.GridXLeft, grid.GridXRight, grid.GridZTop, grid.GridZBottom, grid.GridXNumber, grid.GridZNumber); } } } \ No newline at end of file