Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/IUpliftVanKernel.cs
===================================================================
diff -u -r9e7f13c8c892fe5f9ba0c3e8eec2542be55c8c0d -rf5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7
--- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/IUpliftVanKernel.cs (.../IUpliftVanKernel.cs) (revision 9e7f13c8c892fe5f9ba0c3e8eec2542be55c8c0d)
+++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/IUpliftVanKernel.cs (.../IUpliftVanKernel.cs) (revision f5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7)
@@ -125,7 +125,7 @@
///
/// Sets whether the tangent lines are automatically determined or not.
///
- void SetTangentLinesAutomaticDetermined(bool slipPlaneTangentLinesAutomaticAtBoundaries);
+ void SetTangentLinesAutomaticDetermined(bool tangentLinesAutomaticDetermined);
///
/// Sets the fixed soil stresses.
Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs
===================================================================
diff -u -rea9770b83ed5e59f58b05ae908a0f033c1ad8313 -rf5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7
--- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs (.../UpliftVanKernelWrapper.cs) (revision ea9770b83ed5e59f58b05ae908a0f033c1ad8313)
+++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.KernelWrapper/Kernels/UpliftVan/UpliftVanKernelWrapper.cs (.../UpliftVanKernelWrapper.cs) (revision f5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7)
@@ -150,11 +150,11 @@
});
}
- public void SetPreConsolidationStresses(IEnumerable preconsolidationStresses)
+ public void SetPreConsolidationStresses(IEnumerable preConsolidationStresses)
{
kernelModel.StabilityModel.ConstructionStages.ForEachElementDo(cs =>
{
- cs.PreconsolidationStresses.AddRange(preconsolidationStresses);
+ cs.PreconsolidationStresses.AddRange(preConsolidationStresses);
});
}
Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs
===================================================================
diff -u -r41933726374a5f613d6fef329fa5393c5a57ed8c -rf5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7
--- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs (.../UpliftVanKernelStub.cs) (revision 41933726374a5f613d6fef329fa5393c5a57ed8c)
+++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs (.../UpliftVanKernelStub.cs) (revision f5ebc1dfa980a1de2c2b9d1c30b3612b99c3fcc7)
@@ -156,9 +156,9 @@
SoilModel = soilModel;
}
- public void SetSoilProfile(SoilProfile2D soilProfile2D)
+ public void SetSoilProfile(SoilProfile2D soilProfile)
{
- SoilProfile = soilProfile2D;
+ SoilProfile = soilProfile;
}
public void SetWaternetDaily(WtiStabilityWaternet waternetDaily)
@@ -191,9 +191,9 @@
GridAutomaticDetermined = gridAutomaticDetermined;
}
- public void SetTangentLinesAutomaticDetermined(bool slipPlaneTangentLinesAutomaticAtBoundaries)
+ public void SetTangentLinesAutomaticDetermined(bool tangentLinesAutomaticDetermined)
{
- TangentLinesAutomaticDetermined = slipPlaneTangentLinesAutomaticAtBoundaries;
+ TangentLinesAutomaticDetermined = tangentLinesAutomaticDetermined;
}
public void SetFixedSoilStresses(IEnumerable soilStresses)