Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/SoilProfileCreator.cs =================================================================== diff -u -r44e8b00d548969e48987e6d3227c02e6555b2767 -rb85e9f01322d9f98777fa8d2ce0f37683666805a --- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/SoilProfileCreator.cs (.../SoilProfileCreator.cs) (revision 44e8b00d548969e48987e6d3227c02e6555b2767) +++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/SoilProfileCreator.cs (.../SoilProfileCreator.cs) (revision b85e9f01322d9f98777fa8d2ce0f37683666805a) @@ -38,7 +38,7 @@ /// /// The layer data to use in the . /// A new . - /// Thrown when any parameter is null. + /// Thrown when is null. public static SoilProfile Create(IEnumerable layersWithSoil) { if (layersWithSoil == null) Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanCalculationGridCreator.cs =================================================================== diff -u -r08c064ff60c918a0368124ae6a2a75d7a063f805 -rb85e9f01322d9f98777fa8d2ce0f37683666805a --- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanCalculationGridCreator.cs (.../UpliftVanCalculationGridCreator.cs) (revision 08c064ff60c918a0368124ae6a2a75d7a063f805) +++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanCalculationGridCreator.cs (.../UpliftVanCalculationGridCreator.cs) (revision b85e9f01322d9f98777fa8d2ce0f37683666805a) @@ -46,30 +46,30 @@ throw new ArgumentNullException(nameof(slipPlane)); } - var kernelSlipPlane = new UpliftVanCalculationGrid + var upliftVanCalculationGrid = new UpliftVanCalculationGrid { LeftGrid = CreateGrid(slipPlane, slipPlane.LeftGrid), RightGrid = CreateGrid(slipPlane, slipPlane.RightGrid) }; - return kernelSlipPlane; + return upliftVanCalculationGrid; } private static CalculationGrid CreateGrid(UpliftVanSlipPlane slipPlane, UpliftVanGrid grid) { - var slipCircleGrid = new CalculationGrid(); + var calculationGrid = new CalculationGrid(); if (!slipPlane.GridAutomaticDetermined) { - slipCircleGrid.GridXLeft = grid.XLeft; - slipCircleGrid.GridXRight = grid.XRight; - slipCircleGrid.GridZTop = grid.ZTop; - slipCircleGrid.GridZBottom = grid.ZBottom; - slipCircleGrid.GridXNumber = grid.NumberOfHorizontalPoints; - slipCircleGrid.GridZNumber = grid.NumberOfVerticalPoints; + calculationGrid.GridXLeft = grid.XLeft; + calculationGrid.GridXRight = grid.XRight; + calculationGrid.GridZTop = grid.ZTop; + calculationGrid.GridZBottom = grid.ZBottom; + calculationGrid.GridXNumber = grid.NumberOfHorizontalPoints; + calculationGrid.GridZNumber = grid.NumberOfVerticalPoints; } - return slipCircleGrid; + return calculationGrid; } } } \ No newline at end of file Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanWaternetCreatorInputCreator.cs =================================================================== diff -u -r5af4cc02a453b09e6bd738f16a24b902ea82fb17 -rb85e9f01322d9f98777fa8d2ce0f37683666805a --- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanWaternetCreatorInputCreator.cs (.../UpliftVanWaternetCreatorInputCreator.cs) (revision 5af4cc02a453b09e6bd738f16a24b902ea82fb17) +++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Creators/Input/UpliftVanWaternetCreatorInputCreator.cs (.../UpliftVanWaternetCreatorInputCreator.cs) (revision b85e9f01322d9f98777fa8d2ce0f37683666805a) @@ -40,11 +40,9 @@ /// The to get the information from. /// A new with the given information from . /// Thrown when is null. - /// Thrown when , - /// or + /// Thrown when /// is an invalid value. - /// Thrown when , - /// or + /// Thrown when /// is a valid value, but unsupported. public static WaternetCreatorInput CreateExtreme(UpliftVanCalculatorInput input) { @@ -74,11 +72,9 @@ /// The to get the information from. /// A new with the given information from . /// Thrown when is null. - /// Thrown when , - /// or + /// Thrown when /// is an invalid value. - /// Thrown when , - /// or + /// Thrown when /// is a valid value, but unsupported. public static WaternetCreatorInput CreateDaily(UpliftVanCalculatorInput input) {