Index: DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs =================================================================== diff -u -r6157 -r6229 --- DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs (.../FactoryForSoilProfiles.cs) (revision 6157) +++ DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs (.../FactoryForSoilProfiles.cs) (revision 6229) @@ -1365,6 +1365,18 @@ return soilLayer2D; } + public static SoilLayer2D CreateTriangularSoilLayer2D(Point2D point1, Point2D point2, Point2D point3, SoilProfile2D soilProfile2D, Soil soil = null, bool isAquifer = false) + { + return CreatePolygoneSoilLayer2D([ + ..new[] + { + point1, + point2, + point3 + } + ], soil, soilProfile2D, isAquifer); + } + public static SoilLayer2D CreateQuadrilateralSoilLayer2D(Point2D point1, Point2D point2, Point2D point3, Point2D point4, SoilProfile2D soilProfile2D, Soil soil = null, bool isAquifer = false) { return CreatePolygoneSoilLayer2D([ @@ -1407,6 +1419,22 @@ } ], soil, soilProfile2D, isAquifer); } + + public static SoilLayer2D CreateHeptagonSoilLayer2D(Point2D point1, Point2D point2, Point2D point3, Point2D point4, Point2D point5, Point2D point6, Point2D point7, SoilProfile2D soilProfile2D, Soil soil = null,bool isAquifer = false) + { + return CreatePolygoneSoilLayer2D([ + ..new[] + { + point1, + point2, + point3, + point4, + point5, + point6, + point7 + } + ], soil, soilProfile2D, isAquifer); + } public static SoilLayer2D CreatePolygoneSoilLayer2D(List points, Soil soil, SoilProfile2D soilProfile2D, bool isAquifer = false) { Index: DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geotechnics/SoilProfile2DSurfaceLineHelperTests.cs =================================================================== diff -u -r6086 -r6229 --- DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geotechnics/SoilProfile2DSurfaceLineHelperTests.cs (.../SoilProfile2DSurfaceLineHelperTests.cs) (revision 6086) +++ DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geotechnics/SoilProfile2DSurfaceLineHelperTests.cs (.../SoilProfile2DSurfaceLineHelperTests.cs) (revision 6229) @@ -311,4 +311,304 @@ Assert.That(newSoilProfile2D.Geometry.InnerLoopsCount, Is.EqualTo(1)); }); } + + [Test, TestCaseSource(nameof(ZigZagSurfaceLinesTestCases)), Category("Work_In_Progress")] + public void GivenComplexShiftedSoilProfile2D_WhenCombiningWithZigZagSurfaceLine_ThenCorrectNewSoilProfile2DIsCreated(TestCaseZigZagSurfaceLine testCaseSurfaceLine) + { + // Given + SoilProfile2D soilProfile2D = FactoryForSoilProfiles.CreateSoilProfile2DWithSixSurfacesFormingTwoLayers(testCaseSurfaceLine.GivenXStartOfSoilProfile); + var defaultSoil = new Soil + { + Name = "Filling material" + }; + // When + SoilProfile2D newSoilProfile2D = SoilProfile2DSurfaceLineHelper.CombineSurfaceLineWithSoilProfile2D( + testCaseSurfaceLine.GivenZigZagSurfaceLine.Geometry, soilProfile2D, defaultSoil); + + // Then + if (testCaseSurfaceLine.ExpectedSurfaceCount == 0) + { + Assert.That(newSoilProfile2D, Is.Null); + } + else + { + Assert.That(newSoilProfile2D, Is.Not.Null); + Assert.That(newSoilProfile2D.Surfaces, Has.Count.EqualTo(testCaseSurfaceLine.ExpectedSurfaceCount)); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedFilling1); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedFilling2); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedExtendedSurface1); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedExtendedSurface3); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedExtendedSurface4); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedExtendedSurface6); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface1); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface2); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface3); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface4); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface5); + CheckSoilProfileContainsSoilLayer(newSoilProfile2D, testCaseSurfaceLine.ExpectedSurface6); + } + + // New surface line is checked only for test case 6 + if (testCaseSurfaceLine.TestNumber == 6) + { + Assert.That(newSoilProfile2D, Is.Not.Null); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints, Has.Count.EqualTo(8)); + Assert.Multiple(() => + { + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[0].X, Is.EqualTo(10)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[0].Z, Is.EqualTo(10)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[1].X, Is.EqualTo(30)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[1].Z, Is.EqualTo(12)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[2].X, Is.EqualTo(50)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[2].Z, Is.EqualTo(10)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[3].X, Is.EqualTo(60)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[3].Z, Is.EqualTo(9)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[4].X, Is.EqualTo(70)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[4].Z, Is.EqualTo(8)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[5].X, Is.EqualTo(90)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[5].Z, Is.EqualTo(10)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[6].X, Is.EqualTo(110)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[6].Z, Is.EqualTo(12)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[7].X, Is.EqualTo(130)); + Assert.That(newSoilProfile2D.Geometry.SurfaceLine.CalcPoints[7].Z, Is.EqualTo(10)); + }); + } + } + + + private static IEnumerable ZigZagSurfaceLinesTestCases + { + get + { + SoilProfile2D newSoilProfile2D = new SoilProfile2D(); + var soil1 = new Soil("Soil1"); + var soil2 = new Soil("Soil2"); + var soil3 = new Soil("Soil3"); + var soil4 = new Soil("Soil4"); + var soil5 = new Soil("Soil5"); + var soil6 = new Soil("Soil6"); + var soilFilling = new Soil("Filling material"); + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 1, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-50, 10), + GivenXStartOfSoilProfile = -60, + ExpectedSurfaceCount = 10, + // 4 extra surfaces created : 2 below the highest corners of the "zigzag" surface line + 2 on the left side (between Z=60 and 70) + ExpectedFilling1 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(-50, 10), new Point2D(-30, 12), new Point2D(-10, 10), new Point2D(-20, 10), newSoilProfile2D, soilFilling), + ExpectedFilling2 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(30, 10), new Point2D(50, 12), new Point2D(70, 10), new Point2D(60, 10), newSoilProfile2D, soilFilling), + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, 60, 70, newSoilProfile2D, soil3), + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 70, newSoilProfile2D, soil6), + ExpectedSurface1 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, -50, -20, newSoilProfile2D, soil1), + ExpectedSurface2 = FactoryForSoilProfiles.CreateHexagonSoilLayer2D(new Point2D(-20, 10), new Point2D(-10, 10), new Point2D(0, 9), new Point2D(0, 0),new Point2D(-10, 0), new Point2D(-20, 0), newSoilProfile2D, soil2), + ExpectedSurface3 = FactoryForSoilProfiles.CreateHeptagonSoilLayer2D(new Point2D(0, 9), new Point2D(10, 8), new Point2D(30, 10), new Point2D(60, 10), new Point2D(60, 0), new Point2D(35, 0), new Point2D(0, 0), newSoilProfile2D, soil3), + ExpectedSurface4 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-50, 0), new Point2D(-20, 0), new Point2D(-10, 0), new Point2D(-10, -15), new Point2D(-50, -15), newSoilProfile2D, soil4), + ExpectedSurface5 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-10, 0), new Point2D(0, 0), new Point2D(35, 0), new Point2D(35, -15), new Point2D(-10, -15), newSoilProfile2D, soil5), + ExpectedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 35, 60, newSoilProfile2D, soil6) + + }).SetName("Test 1: Surface line intersects the surface line of the shifted soil profile and starts at the " + + "same point (X=-50)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine() + { + TestNumber = 2, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-50, 13), + GivenXStartOfSoilProfile = -60, + ExpectedSurfaceCount = 9, + // 3 extra surfaces created: 1 below the "zigzag" surface line + 2 on the left side (between Z=60 and 70) + ExpectedFilling1 = FactoryForSoilProfiles.CreatePolygoneSoilLayer2D([ + ..new[] + { + new Point2D(-50, 13), + new Point2D(-30, 15), + new Point2D(10, 11), + new Point2D(50, 15), + new Point2D(70, 13), + new Point2D(70, 10), + new Point2D(60, 10), + new Point2D(0, 10), + new Point2D(-20, 10), + new Point2D(-50, 10) + } + ], soilFilling, newSoilProfile2D), + ExpectedFilling2 = null, + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, 60, 70, newSoilProfile2D, soil3), + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 70, newSoilProfile2D, soil6), + ExpectedSurface1 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, -50, -20, newSoilProfile2D, soil1), + ExpectedSurface2 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-20, 10), new Point2D(0, 10), new Point2D(0, 0), new Point2D(-10, 0), new Point2D(-20, 0), newSoilProfile2D, soil2), + ExpectedSurface3 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(0, 10), new Point2D(60, 10), new Point2D(60, 0), new Point2D(35, 0), new Point2D(0, 0), newSoilProfile2D, soil3), + ExpectedSurface4 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-50, 0), new Point2D(-20, 0), new Point2D(-10, 0), new Point2D(-10, -15), new Point2D(-50, -15), newSoilProfile2D, soil4), + ExpectedSurface5 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-10, 0), new Point2D(0, 0), new Point2D(35, 0), new Point2D(35, -15), new Point2D(-10, -15), newSoilProfile2D, soil5), + ExpectedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 35, 60, newSoilProfile2D, soil6) + }).SetName("Test 2: Surface line is completely above the surface line of shifted soil profile (shift = 10) " + + "and starts at the same point (X=-50)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 3, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-50, 5), + GivenXStartOfSoilProfile = -60, + ExpectedSurfaceCount = 8, + // 2 extra surfaces created on the left side (between Z=60 and 70) + ExpectedFilling1 = null, + ExpectedFilling2 = null, + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(60, 6), new Point2D(70, 5), new Point2D(70, 0), new Point2D(60, 0), newSoilProfile2D, soil3), + ExpectedExtendedSurface4= null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 70, newSoilProfile2D, soil6), + ExpectedSurface1 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-50, 5), new Point2D(-30, 7), new Point2D(-20, 6), new Point2D(-20, 0), new Point2D(-50, 0), newSoilProfile2D, soil1), + ExpectedSurface2 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-20, 6), new Point2D(0, 4), new Point2D(0, 0), new Point2D(-10, 0),new Point2D(-20, 0), newSoilProfile2D, soil2), + ExpectedSurface3 = FactoryForSoilProfiles.CreateHeptagonSoilLayer2D(new Point2D(0, 4), new Point2D(10, 3), new Point2D(50, 7), new Point2D(60, 6), new Point2D(60, 0), new Point2D(35, 0), new Point2D(0, 0), newSoilProfile2D, soil3), + ExpectedSurface4 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-50, 0), new Point2D(-20, 0), new Point2D(-10, 0), new Point2D(-10, -15), new Point2D(-50, -15), newSoilProfile2D, soil4), + ExpectedSurface5 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-10, 0), new Point2D(0, 0), new Point2D(35, 0), new Point2D(35, -15), new Point2D(-10, -15), newSoilProfile2D, soil5), + ExpectedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 35, 60, newSoilProfile2D, soil6) + }).SetName("Test 3: Surface line is completely in the top layer of the shifted soil profile (shift = 10) and " + + "starts at the same point (X=-50)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 4, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-50, 0), + GivenXStartOfSoilProfile = -60, + ExpectedSurfaceCount = 8, + // 2 extra surfaces created on the left side (between Z=60 and 70) + ExpectedFilling1 = null, + ExpectedFilling2 = null, + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(60, 1), new Point2D(70, 0), new Point2D(60, 0), newSoilProfile2D, soil3), + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 70, newSoilProfile2D, soil6), + ExpectedSurface1 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(-50, 0), new Point2D(-30, 2), new Point2D(-20, 1), new Point2D(-20, 0), newSoilProfile2D, soil1), + ExpectedSurface2 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(-20, 1), new Point2D(-10, 0), new Point2D(-20, 0), newSoilProfile2D, soil2), + ExpectedSurface3 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(30, 0), new Point2D(50, 2), new Point2D(60, 1), new Point2D(60, 0), new Point2D(35, 0), newSoilProfile2D, soil3), + ExpectedSurface4 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-50, 0), new Point2D(-20, 0), new Point2D(-10, 0), new Point2D(-10, -15), new Point2D(-50, -15), newSoilProfile2D, soil4), + ExpectedSurface5 = FactoryForSoilProfiles.CreateHexagonSoilLayer2D(new Point2D(-10, 0), new Point2D(10, -2), new Point2D(30, 0), new Point2D(35, 0), new Point2D(35, -15), new Point2D(-10, -15), newSoilProfile2D, soil5), + ExpectedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 35, 60, newSoilProfile2D, soil6) + }).SetName("Test 4: Surface line intersects the layer separation of shifted soil profile (shift = 10) " + + "and starts at the same point (X=-50)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 5, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-40, 10), + GivenXStartOfSoilProfile = -65, + ExpectedSurfaceCount = 10, + // Only few surfaces are tested + ExpectedFilling1 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(-40, 10), new Point2D(-20, 12), new Point2D(0, 10), new Point2D(-20, 10), newSoilProfile2D, soilFilling), + ExpectedFilling2 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(40, 10), new Point2D(60, 12), new Point2D(80, 10), new Point2D(60, 10), newSoilProfile2D, soilFilling), + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, 60, 80, newSoilProfile2D, soil3), + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 80, newSoilProfile2D, soil6), + ExpectedSurface1 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, -40, -20, newSoilProfile2D, soil1), + ExpectedSurface2 = null, // not null but not tested + ExpectedSurface3 = null, // not null but not tested + ExpectedSurface4 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-40, 0), new Point2D(-20, 0), new Point2D(-10, 0), new Point2D(-10, -15), new Point2D(-40, -15), newSoilProfile2D, soil4), + ExpectedSurface5 = null, // not null but not tested + ExpectedSurface6 = null // not null but not tested + }).SetName("Test 5: Surface line intersects the surface line of shifted soil profile (shift = 15) and" + + "starts at X=-40 (i.e. 10 m right)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 6, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(10, 10), + GivenXStartOfSoilProfile = -30, + ExpectedSurfaceCount = 7, + // Only few surfaces are tested + ExpectedFilling1 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(10, 10), new Point2D(30, 12), new Point2D(50, 10), newSoilProfile2D, soilFilling), + ExpectedFilling2 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(90, 10), new Point2D(110, 12), new Point2D(130, 10), newSoilProfile2D, soilFilling), + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = FactoryForSoilProfiles.CreateHexagonSoilLayer2D(new Point2D(60, 9), new Point2D(70, 8), new Point2D(90, 10), new Point2D(130, 10), new Point2D(130, 0), new Point2D(60, 0), newSoilProfile2D, soil3), + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 60, 130, newSoilProfile2D, soil6), + ExpectedSurface1 = null, + ExpectedSurface2 = null, + ExpectedSurface3 = FactoryForSoilProfiles.CreateHexagonSoilLayer2D(new Point2D(10, 10), new Point2D(50, 10), new Point2D(60, 9), new Point2D(60, 0), new Point2D(35, 0), new Point2D(10, 0), newSoilProfile2D, soil3), + ExpectedSurface4 = null, + ExpectedSurface5 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 10, 35, newSoilProfile2D, soil5), + ExpectedSurface6 = null // not null but not tested + }).SetName("Test 6: Surface line intersects the surface line of shifted soil profile (shift = -20) and" + + "starts at X=10 (i.e. 60 m right)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 7, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-60, 10), + GivenXStartOfSoilProfile = -80, + ExpectedSurfaceCount = 10, + // Only few surfaces are tested + ExpectedFilling1 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(-60, 10), new Point2D(-40, 12), new Point2D(-20, 10), new Point2D(-50, 10), newSoilProfile2D, soilFilling), + ExpectedFilling2 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(20, 10), new Point2D(40, 12), new Point2D(60, 10), newSoilProfile2D, soilFilling), + ExpectedExtendedSurface1 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(10, 0, -60, -50, newSoilProfile2D, soil1), + ExpectedExtendedSurface3 = null, + ExpectedExtendedSurface4 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, -60, -50, newSoilProfile2D, soil4), + ExpectedExtendedSurface6 = null, + ExpectedSurface1 = null, // not null but not tested + ExpectedSurface2 = null, // not null but not tested + ExpectedSurface3 = null, // not null but not tested + ExpectedSurface4 = null, // not null but not tested + ExpectedSurface5 = null, // not null but not tested + ExpectedSurface6 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, 35, 60, newSoilProfile2D, soil6) + }).SetName("Test 7: Surface line intersects the surface line of shifted soil profile (shift = 30) and" + + "starts at X=-60 (i.e. 10 m left)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 8, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(-110, 10), + GivenXStartOfSoilProfile = -25, + ExpectedSurfaceCount = 9, + // Only few surfaces are tested + ExpectedFilling1 = FactoryForSoilProfiles.CreateTriangularSoilLayer2D(new Point2D(-110, 10), new Point2D(-90, 12), new Point2D(-70, 10), newSoilProfile2D, soilFilling), + ExpectedFilling2 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-30, 10), new Point2D(-10, 12), new Point2D(10, 10), new Point2D(0, 10), new Point2D(-20, 10), newSoilProfile2D, soilFilling), + ExpectedExtendedSurface1 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-110, 10), new Point2D(-70, 10), new Point2D(-50, 8), new Point2D(-50, 0), new Point2D(-110, 0), newSoilProfile2D, soil1), + ExpectedExtendedSurface3 = null, + ExpectedExtendedSurface4 = FactoryForSoilProfiles.CreateRectangularSoilLayer2D(0, -15, -110, -50, newSoilProfile2D, soil4), + ExpectedExtendedSurface6 = null, + ExpectedSurface1 = null, // not null but not tested + ExpectedSurface2 = null, // not null but not tested + ExpectedSurface3 = null, // not null but not tested + ExpectedSurface4 = null, //not null but not tested + ExpectedSurface5 = FactoryForSoilProfiles.CreatePentagonSoilLayer2D(new Point2D(-10, 0), new Point2D(0, 0), new Point2D(10, 0), new Point2D(10, -15), new Point2D(-10, -15), newSoilProfile2D, soil5), + ExpectedSurface6 = null + }).SetName("Test 8: Surface line intersects the surface line of shifted soil profile (shift = -25) and" + + "starts at X=-110 (i.e. 60 m left)"); + + yield return new TestCaseData( + new TestCaseZigZagSurfaceLine + { + TestNumber = 9, + GivenZigZagSurfaceLine = FactoryForSurfaceLines.CreateSurfaceLineInZigZag(50, -5), + GivenXStartOfSoilProfile = -50, + ExpectedSurfaceCount = 2, + ExpectedFilling1 = null, + ExpectedFilling2 = null, + ExpectedExtendedSurface1 = null, + ExpectedExtendedSurface3 = null, + ExpectedExtendedSurface4 = null, + ExpectedExtendedSurface6 = FactoryForSoilProfiles.CreateHeptagonSoilLayer2D(new Point2D(60, -4), new Point2D(70, -3), new Point2D(110, -7), new Point2D(150, -3), new Point2D(170, -5), new Point2D(170, -15), new Point2D(60, -15), newSoilProfile2D, soil6), + ExpectedSurface1 = null, + ExpectedSurface2 = null, + ExpectedSurface3 = null, + ExpectedSurface4 = null, + ExpectedSurface5 = null, + ExpectedSurface6 = FactoryForSoilProfiles.CreateQuadrilateralSoilLayer2D(new Point2D(50, -5), new Point2D(60, -4), new Point2D(60, -15), new Point2D(50, -15), newSoilProfile2D, soil6) + }).SetName("Test 9: Surface line starts inside surface 6 (right bottom) of the soil profile"); + + } + } + } \ No newline at end of file