Index: DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileValidatorTest.cs
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileValidatorTest.cs (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileValidatorTest.cs (revision 2999)
@@ -0,0 +1,143 @@
+// Copyright (C) Stichting Deltares 2020. All rights reserved.
+//
+// This file is part of the application DAM - UI.
+//
+// DAM - UI is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using Deltares.Dam.Data.StiImporter;
+using NUnit.Framework;
+
+namespace Deltares.Dam.Tests.StiImporter
+{
+ [TestFixture]
+ public class StiFileValidatorTest
+ {
+ private const string testDataFolder = @"TestData\StiImporter\";
+
+ private static IEnumerable GetUnsupportedFileVersions()
+ {
+ yield return new TestCaseData("InvalidSoilVersion.sti", "Soil");
+ yield return new TestCaseData("InvalidGeometryVersion.sti", "Geometry");
+ yield return new TestCaseData("InvalidYieldStressVersionWithYieldStresses.sti", "Preconsolidation stress");
+ }
+
+ [Test]
+ [TestCase(null)]
+ [TestCase("")]
+ [TestCase(" ")]
+ public void Constructor_FilePathNullOrEmpty_ThrowsArgumentException(string filePath)
+ {
+ // Call
+ TestDelegate call = () => new StiFileValidator(filePath);
+
+ // Assert
+ Assert.That(call, Throws.ArgumentException
+ .With.Message.EqualTo("'filePath' cannot be null or consist of whitespaces only."));
+ }
+
+ [Test]
+ public void Constructor_FileResultsInIOException_ThrowsStiFileImporterException()
+ {
+ // Setup
+ var nonExistingFile = "DoesNotExist";
+
+ // Call
+ TestDelegate call = () => new StiFileValidator(nonExistingFile);
+
+ // Assert
+ var exception = Assert.Throws(call);
+ Exception innerException = exception.InnerException;
+ Assert.That(innerException, Is.InstanceOf());
+ Assert.That(exception.Message, Is.EqualTo(innerException.Message));
+ }
+
+ [Test]
+ [TestCase("Tutorial-1a 10.1.4.3.sti")]
+ [TestCase("Tutorial-1a 14.1.2.1.sti")]
+ [TestCase("Tutorial-1a 16.1.2.1.sti")]
+ public void GivenValidatorWithSupportedFileVersions_WhenValidateCalled_ThenNoValidationMessages(string fileName)
+ {
+ // Setup
+ string filePath = Path.Combine(testDataFolder, fileName);
+ var fileValidator = new StiFileValidator(filePath);
+
+ // Call
+ var validationMessages = fileValidator.Validate();
+
+ // Assert
+ CollectionAssert.IsEmpty(validationMessages);
+ }
+
+ [Test]
+ public void GivenValidatorWithSupportedFormat_WhenValidateFileFormatCalled_ThenNoValidationMessages()
+ {
+ // Setup
+ string filePath = Path.Combine(testDataFolder, "Tutorial-1a 10.1.4.3.sti");
+ var fileValidator = new StiFileValidator(filePath);
+
+ // Call
+ var messages = fileValidator.Validate();
+
+ // Assert
+ CollectionAssert.IsEmpty(messages);
+ }
+
+ [Test]
+ [TestCaseSource(nameof(GetUnsupportedFileVersions))]
+ public void GivenValidatorWithUnsupportedFileVersions_WhenValidateFileVersionCalled_ThenStiFileImporterExceptionThrown(
+ string fileName,
+ string propertyName)
+ {
+ // Given
+ string filePath = Path.Combine(testDataFolder, fileName);
+ var fileValidator = new StiFileValidator(filePath);
+
+ // When
+ var messages = fileValidator.Validate();
+
+ // Then
+ string expectedErrorMessage = $"{propertyName} data in '{filePath}' is of a version of D-Geo Stability that is not supported and cannot be read";
+ CollectionAssert.AreEqual(new[]
+ {
+ expectedErrorMessage
+ }, messages);
+ }
+
+ [Test]
+ [TestCase("GeoFile.geo")]
+ [TestCase("SeepFile.SEI")]
+ public void GivenValidatorWithUnsupportedFormat_WhenValidateFileFormatCalled_ThenStiFileImporterExceptionThrown(string fileName)
+ {
+ // Given
+ string filePath = Path.Combine(testDataFolder, fileName);
+ var fileValidator = new StiFileValidator(filePath);
+
+ // When
+ var messages = fileValidator.Validate();
+
+ // Then
+ CollectionAssert.AreEqual(new[]
+ {
+ $"{filePath} is not a D-Geo Stability file (*.sti)."
+ }, messages);
+ }
+ }
+}
\ No newline at end of file
Index: DamClients/DamUI/trunk/src/Dam/Tests/Deltares.Dam.Tests.csproj
===================================================================
diff -u -r2929 -r2999
--- DamClients/DamUI/trunk/src/Dam/Tests/Deltares.Dam.Tests.csproj (.../Deltares.Dam.Tests.csproj) (revision 2929)
+++ DamClients/DamUI/trunk/src/Dam/Tests/Deltares.Dam.Tests.csproj (.../Deltares.Dam.Tests.csproj) (revision 2999)
@@ -149,6 +149,7 @@
+
@@ -720,6 +721,30 @@
PreserveNewest
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
PreserveNewest
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 14.1.2.1.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 14.1.2.1.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 14.1.2.1.sti (revision 2999)
@@ -0,0 +1,1413 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY : Deltares
+LICENSE : Unknown
+DATE : 10/9/2014
+TIME : 2:53:43 AM
+FILENAME : C:\Users\DSC-admin\Documents\D-Geo Stability\Projects\Examples\Tutorial-1a.sti
+CREATED BY : D-Geo Stability version 14.1.2.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1001
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1004
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 11 = number of items
+[SOIL]
+Soft Clay
+SoilColor=16575398
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=14.00
+SoilGamWet=14.00
+SoilRestSlope=0
+SoilCohesion=8.00
+SoilPhi=20.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Medium Clay
+SoilColor=11141025
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=17.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Stiff Clay
+SoilColor=2763429
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Peat
+SoilColor=7077877
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=12.00
+SoilGamWet=12.00
+SoilRestSlope=0
+SoilCohesion=5.00
+SoilPhi=15.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loose Sand
+SoilColor=42495
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Berm Sand
+SoilColor=15728396
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.50
+SoilGamWet=21.00
+SoilRestSlope=0
+SoilCohesion=2.00
+SoilPhi=32.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Sand
+SoilColor=851951
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=29.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Gravel
+SoilColor=5244889
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loam
+SoilColor=13407356
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=20.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Muck
+SoilColor=4163021
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=11.00
+SoilGamWet=11.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Undetermined
+SoilColor=16777215
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=0.01
+SoilGamWet=0.02
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 4 - Number of boundaries -
+ 1
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 4 - Number of boundaries -
+ 0
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+[RUN IDENTIFICATION TITLES]
+Tutorial 1 for D-Geo Stability
+Dike reinforced with berm
+
+[MODEL]
+ 1 : Bishop
+ 1 : C phi
+ 0 : Probabilistic off
+ 1 : Mean
+ 0 : Geotextiles off
+ 0 : Nails off
+ 0 : Zone plot off
+ 0 : Local measurements
+[END OF MODEL]
+[MSEEPNET]
+ Use potential file
+ 0 : Do not use water net of MSeep file
+ 0 : Do not make negative pressures 0
+[UNIT WEIGHT WATER]
+ 9.81 : Unit weight water
+[DEGREE OF CONSOLIDATION]
+ 3 Number of layers
+ 3 100
+ 2 100 100
+ 1 100 100 100
+ 0 capillary water not included
+[degree Temporary loads]
+ 100 100 100
+ 0 capillary water not included
+[degree Free water(Cu)]
+ 100 100 100
+[degree earth quake]
+ 100 100 100
+[CIRCLES]
+ 43.000 51.000 8 X-direction
+ 6.000 9.000 8 Y-direction
+ -1.500 -4.500 8 Tangent lines
+ 0.000 0.000 0 no fixed point used
+[SPENCER SLIP DATA]
+ 0 Number of points
+[SPENCER SLIP DATA 2]
+ 0 Number of points
+[SPENCER SLIP INTERVAL]
+ 2 : Slip spencer interval
+[LINE LOADS]
+ 0 = number of items
+[UNIFORM LOADS ]
+ 0 = number of items
+[TREE ON SLOPE]
+0.00 = WindForce
+0.00 = XCoordinate
+0.00 = YCoordinate
+10.00 = width of root zone
+0.0 = AngleOfDistribution
+[END OF TREE ON SLOPE]
+[EARTH QUAKE]
+ 0.000 = horizontal acceleration
+ 0.000 = vertical acceleration
+ 0.000 = free water moment factor
+[SIGMA-TAU CURVES]
+ 0 = number of items
+[END OF SIGMA-TAU CURVES]
+[BOND STRESS DIAGRAMS]
+ 0 = number of items
+[END OF BOND STRESS DIAGRAMS]
+[MINIMAL REQUIRED CIRCLE DEPTH]
+ 0.00 [m]
+[Slip Circle Selection]
+IsMinXEntryUsed=0
+IsMaxXEntryUsed=0
+XEntryMin=0.00
+XEntryMax=0.00
+[End of Slip Circle Selection]
+[START VALUE SAFETY FACTOR]
+ 1.000 [-]
+[REFERENCE LEVEL CU]
+ 3
+[LIFT SLIP DATA]
+ 0.000 0.000 1 X-direction Left
+ 0.000 0.000 1 Y-direction Left
+ 0.000 0.000 1 X-direction Right
+ 0.000 0.000 1 Y-direction Right
+ 0.000 0.000 1 Y-direction tangent lines
+ 0 Automatic grid calculation (1)
+[EXTERNAL WATER LEVELS]
+ 0 = No water data used
+ 0.00 = Design level
+ 0.30 = Decimate height
+ 1 norm = 1/10000
+ 1 = number of items
+Water data (1)
+ 1 = Phreatic line
+ 0.00 = Level
+ Piezo lines
+ 3 - Number of layers
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+[MODEL FACTOR]
+ 1.00 = Limit value stability factor
+ 0.08 = Standard deviation for limit value stability factor
+ 0.00 = Reference standard deviation for degree of consolidation
+ 100.00 = Length of the section
+ 0 = Use contribution of end section
+ 0.00 = Lateral stress ratio
+ 0.25 = Coefficient of variation contribution edge of section
+[WATER PRESSURE ON HORIZONTAL BAR]
+ 0 Use water pressure on horizontal bar
+[CALCULATION OPTIONS]
+MoveCalculationGrid=1
+ProbCalculationType=2
+SearchMethod=0
+[END OF CALCULATION OPTIONS]
+[PROBABILISTIC DEFAULTS]
+CohesionVariationTotal=0.25
+CohesionDesignPartial=1.25
+CohesionDesignStdDev=-1.65
+CohesionDistribution=3
+PhiVariationTotal=0.15
+PhiDesignPartial=1.10
+PhiDesignStdDev=-1.65
+PhiDistribution=3
+StressTableVariationTotal=0.20
+StressTableDesignPartial=1.15
+StressTableDesignStdDev=-1.65
+StressTableDistribution=3
+RatioCuPcVariationTotal=0.25
+RatioCuPcDesignPartial=1.15
+RatioCuPcDesignStdDev=-1.65
+RatioCuPcDistribution=3
+CuVariationTotal=0.25
+CuDesignPartial=1.15
+CuDesignStdDev=-1.65
+CuDistribution=3
+POPVariationTotal=0.10
+POPDesignPartial=1.10
+POPDesignStdDev=-1.65
+POPDistribution=3
+CompressionRatioVariationTotal=0.25
+CompressionRatioDesignPartial=1.00
+CompressionRatioDesignStdDev=0.00
+CompressionRatioDistribution=3
+ConsolidationCoefTotalStdDev=20.00
+ConsolidationCoefDesignPartial=1.00
+ConsolidationCoefDesignStdDev=1.65
+ConsolidationCoefDistribution=2
+HydraulicPressureTotalStdDev=0.50
+HydraulicPressureDesignPartial=1.00
+HydraulicPressureDesignStdDev=1.65
+HydraulicPressureDistribution=3
+LimitValueBishopMean=1.00
+LimitValueBishopStdDev=0.08
+LimitValueBishopDistribution=3
+LimitValueVanMean=0.95
+LimitValueVanStdDev=0.08
+LimitValueVanDistribution=3
+[END OF PROBABILISTIC DEFAULTS]
+[NEWZONE PLOT DATA]
+ 0.00 = Diketable Height [m]
+ 3.00 = Width top rest profile [m]
+ 0.00 = X co-ordinate indicating start of zone [m]
+ 0.00 = Boundary of M.H.W influence at X [m]
+ 0.00 = Boundary of M.H.W influence at Y [m]
+ 1.19 = Required safety in zone 1a
+ 1.11 = Required safety in zone 1b
+ 1.00 = Required safety in zone 2a
+ 1.00 = Required safety in zone 2b
+ 0.00 = Left side minimum road [m]
+ 0.00 = Right side minimum road [m]
+ 0.90 = Required safety in zone 3a
+ 0.90 = Required safety in zone 3b
+ 1 Stability calculation at right side
+ 0.50 = Remolding reduction factor
+ 0.80 = Schematization reduction factor
+ 1 Overtopping condition less or equal 0.1 l/m/s
+[HORIZONTAL BALANCE]
+HorizontalBalanceXLeft=0.000
+HorizontalBalanceXRight=0.000
+HorizontalBalanceYTop=0.00
+HorizontalBalanceYBottom=0.00
+HorizontalBalanceNYInterval=1
+[END OF HORIZONTAL BALANCE]
+[REQUESTED CIRCLE SLICES]
+ 30 = number of slices
+[REQUESTED LIFT SLICES]
+ 50 = number of slices
+[REQUESTED SPENCER SLICES]
+ 50 = number of slices
+[SOIL RESISTANCE]
+SoilResistanceDowelAction=1
+SoilResistancePullOut=1
+[END OF SOIL RESISTANCE]
+[GENETIC ALGORITHM OPTIONS BISHOP]
+PopulationCount=30
+GenerationCount=30
+EliteCount=2
+MutationRate=0.200
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS BISHOP]
+[GENETIC ALGORITHM OPTIONS LIFTVAN]
+PopulationCount=40
+GenerationCount=40
+EliteCount=2
+MutationRate=0.250
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS LIFTVAN]
+[GENETIC ALGORITHM OPTIONS SPENCER]
+PopulationCount=50
+GenerationCount=50
+EliteCount=2
+MutationRate=0.300
+CrossOverScatterFraction=0.000
+CrossOverSinglePointFraction=0.700
+CrossOverDoublePointFraction=0.300
+MutationJumpFraction=0.000
+MutationCreepFraction=0.900
+MutationInverseFraction=0.100
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS SPENCER]
+[MODEL SPECIAL]
+IsAlternativeStrength=0
+IsAdditionalPorePressure=0
+[END OF MODEL SPECIAL]
+[NAIL TYPE DEFAULTS]
+NailTypeLengthNail=0.00
+NailTypeDiameterNail=0.00
+NailTypeDiameterGrout=0.00
+NailTypeYieldForceNail=0.00
+NailTypePlasticMomentNail=0.00
+NailTypeBendingStiffnessNail=0.00E+00
+NailTypeUseFacingOrBearingPlate=0
+[END OF NAIL TYPE DEFAULTS]
+[END OF INPUT FILE]
Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileValidator.cs
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileValidator.cs (revision 0)
+++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileValidator.cs (revision 2999)
@@ -0,0 +1,137 @@
+// Copyright (C) Stichting Deltares 2020. All rights reserved.
+//
+// This file is part of the application DAM - Clients Library.
+//
+// DAM - UI is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using Deltares.Geotechnics.IO.Importers;
+
+namespace Deltares.Dam.Data.StiImporter
+{
+ ///
+ /// Class which contains methods to determine whether a file is valid to import.
+ ///
+ public class StiFileValidator
+ {
+ // First implementation of code started with SoilVersion = 1001
+ // SoilVersion 1002 added:
+ // Parameter "SoilStrengthIncreaseExponent". This has been correctly implemented in DslGeoIo since SVN rev. 1176
+ // SoilVersion 1003 added:
+ // MatStrengthType option mstCalculatedSuDOV = 9 (is not implemented in Soil, but will be translated to
+ // soil.ShearStrengthModel = ShearStrengthModel.CuCalculated and soil.UsePop = true)
+ // Parameter "SoilPOPTop" (ignored, not present in Soil)
+ // Parameter "SoilPOPBottom" (ignored, not present in Soil)
+ // Parameter "SoilAdditionalFactorLEM" (ignored, not present in Soil)
+ private const int HighestSupportedSoilVersion = 1003;
+ private const int HighestSupportedGeometryVersion = 1000;
+ private const int HighestSupportedYieldStressVersion = 1000;
+
+ private readonly DSerieFileInfo fileInfo;
+ private readonly string filePath;
+ private readonly DSerieImporterHelper importerHelper;
+
+ ///
+ /// Creates a new instance of .
+ ///
+ /// The file path of the file to validate.
+ /// Thrown when
+ /// is null or consists of whitespaces.
+ /// Thrown when the validator
+ /// could not be created.
+ public StiFileValidator(string filePath)
+ {
+ if (string.IsNullOrWhiteSpace(filePath))
+ {
+ throw new ArgumentException($"'{nameof(filePath)}' cannot be null or consist of whitespaces only.");
+ }
+
+ var fileContent = ReadFileContent(filePath);
+
+ importerHelper = new DSerieImporterHelper();
+ fileInfo = importerHelper.ReadVersionInfo(string.Empty, fileContent); // Filename is not used for this operation and can be kept empty
+
+ this.filePath = filePath;
+ }
+
+ ///
+ /// Validates the sti file.
+ ///
+ /// A collection of validation messages, empty if the file was valid.
+ public IEnumerable Validate()
+ {
+ if (fileInfo.DSerieFileType != DSerieFileType.DGeoStability)
+ {
+ return new[]
+ {
+ $"{filePath} is not a D-Geo Stability file (*.sti)."
+ };
+ }
+
+ var messages = new List();
+ if (!IsVersionValid(fileInfo.SoilVersionNumber, HighestSupportedSoilVersion))
+ {
+ messages.Add(GenerateUnsupportedVersionMessage("Soil"));
+ }
+
+ if (!IsVersionValid(fileInfo.GeometryVersionNumber, HighestSupportedGeometryVersion))
+ {
+ messages.Add(GenerateUnsupportedVersionMessage("Geometry"));
+ }
+
+ if (fileInfo.HasYieldStressData && !IsVersionValid(fileInfo.YieldStressVersionNumber, HighestSupportedYieldStressVersion))
+ {
+ messages.Add(GenerateUnsupportedVersionMessage("Preconsolidation stress"));
+ }
+
+ return messages;
+ }
+
+ ///
+ /// Reads the content from .
+ ///
+ /// The file path to read the file contents from.
+ /// A collection of strings of the file content.
+ /// Thrown when the content could not be read successfully.
+ private static List ReadFileContent(string filePath)
+ {
+ try
+ {
+ var fileContent = File.ReadAllLines(filePath).ToList();
+ return fileContent;
+ }
+ catch (IOException e)
+ {
+ throw new StiFileImporterException(e.Message, e);
+ }
+ }
+
+ private string GenerateUnsupportedVersionMessage(string propertyName)
+ {
+ return($"{propertyName} data in '{filePath}' is of a version of D-Geo Stability that is not supported and cannot be read");
+ }
+
+ private static bool IsVersionValid(int versionNumber, int highestSupportedVersionNumber)
+ {
+ return (versionNumber <= highestSupportedVersionNumber);
+ }
+ }
+}
\ No newline at end of file
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidYieldStressVersionWithYieldStresses.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidYieldStressVersionWithYieldStresses.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidYieldStressVersionWithYieldStresses.sti (revision 2999)
@@ -0,0 +1,1454 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY :
+
+DATE : 7/20/2017
+TIME : 9:58:55 AM
+FILENAME : C:\Users\the\Documents\Deltares Systems\D-GeoStability\Examples\Tutorial-1a_17.1.1.1.sti
+CREATED BY : D-Geo Stability version 17.1.1.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1003
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+YieldStress=1001
+D-Geo Stability=1007
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 11 = number of items
+[SOIL]
+Soft Clay
+SoilColor=16575398
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=14.00
+SoilGamWet=14.00
+SoilRestSlope=0
+SoilCohesion=8.00
+SoilPhi=20.00
+SoilDilatancy=20.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=8
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.65
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Medium Clay
+SoilColor=11141025
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=17.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Stiff Clay
+SoilColor=2763429
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Peat
+SoilColor=7077877
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=12.00
+SoilGamWet=12.00
+SoilRestSlope=0
+SoilCohesion=5.00
+SoilPhi=15.00
+SoilDilatancy=15.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loose Sand
+SoilColor=42495
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Berm Sand
+SoilColor=15728396
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.50
+SoilGamWet=21.00
+SoilRestSlope=0
+SoilCohesion=2.00
+SoilPhi=32.00
+SoilDilatancy=32.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Sand
+SoilColor=851951
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=29.00
+SoilDilatancy=29.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Gravel
+SoilColor=5244889
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loam
+SoilColor=13407356
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=20.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Muck
+SoilColor=4163021
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=11.00
+SoilGamWet=11.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Undetermined
+SoilColor=16777215
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=0.01
+SoilGamWet=0.02
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilStrengthIncreaseExponent=0.80
+SoilPOPTop=0.00
+SoilPOPBottom=0.00
+SoilAdditionalFactorLEM=1.00
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+SoilXCoorSoilPc=-100.000
+SoilYCoorSoilPc=-100.000
+SoilIsPopCalculated=0
+SoilIsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 4 - Number of boundaries -
+ 1
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 4 - Number of boundaries -
+ 0
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+[RUN IDENTIFICATION TITLES]
+Tutorial 1 for D-Geo Stability
+Dike reinforced with berm
+
+[MODEL]
+ 1 : Bishop
+ 1 : C phi
+ 0 : Probabilistic off
+ 1 : Mean
+ 0 : Geotextiles off
+ 0 : Nails off
+ 0 : Zone plot off
+ 0 : Local measurements
+[END OF MODEL]
+[MSEEPNET]
+ Use potential file
+ 0 : Do not use water net of MSeep file
+ 0 : Do not make negative pressures 0
+[UNIT WEIGHT WATER]
+ 9.81 : Unit weight water
+[DEGREE OF CONSOLIDATION]
+ 3 Number of layers
+ 3 100
+ 2 100 100
+ 1 100 100 100
+ 0 capillary water not included
+[degree Temporary loads]
+ 100 100 100
+ 0 capillary water not included
+[degree Free water(Cu)]
+ 100 100 100
+[degree earth quake]
+ 100 100 100
+[CIRCLES]
+ 43.000 51.000 8 X-direction
+ 6.000 9.000 8 Y-direction
+ -1.500 -4.500 8 Tangent lines
+ 0.000 0.000 0 no fixed point used
+[SPENCER SLIP DATA]
+ 0 Number of points
+[SPENCER SLIP DATA 2]
+ 0 Number of points
+[SPENCER SLIP INTERVAL]
+ 2 : Slip spencer interval
+[LINE LOADS]
+ 0 = number of items
+[UNIFORM LOADS ]
+ 0 = number of items
+[TREE ON SLOPE]
+0.00 = WindForce
+0.00 = XCoordinate
+0.00 = YCoordinate
+10.00 = width of root zone
+0.0 = AngleOfDistribution
+[END OF TREE ON SLOPE]
+[EARTH QUAKE]
+ 0.000 = horizontal acceleration
+ 0.000 = vertical acceleration
+ 0.000 = free water moment factor
+[SIGMA-TAU CURVES]
+ 0 = number of items
+[END OF SIGMA-TAU CURVES]
+[BOND STRESS DIAGRAMS]
+ 0 = number of items
+[END OF BOND STRESS DIAGRAMS]
+[MEASURED YIELD STRESSES]
+[YIELD STRESSES]
+ 0 = number of items
+[END OF YIELD STRESSES]
+[END OF MEASURED YIELD STRESSES]
+[MINIMAL REQUIRED CIRCLE DEPTH]
+ 0.00 [m]
+[Slip Circle Selection]
+IsMinXEntryUsed=0
+IsMaxXEntryUsed=0
+XEntryMin=0.00
+XEntryMax=0.00
+[End of Slip Circle Selection]
+[START VALUE SAFETY FACTOR]
+ 1.000 [-]
+[REFERENCE LEVEL SU]
+ 16.000 Excavation gamma above freatic level
+ 18.000 Excavation gamma below freatic level
+ 0 number of points
+[END OF REFERENCE LEVEL SU]
+
+[LIFT SLIP DATA]
+ 0.000 0.000 1 X-direction Left
+ 0.000 0.000 1 Y-direction Left
+ 0.000 0.000 1 X-direction Right
+ 0.000 0.000 1 Y-direction Right
+ 0.000 0.000 1 Y-direction tangent lines
+ 0 Automatic grid calculation (1)
+[EXTERNAL WATER LEVELS]
+ 0 = No water data used
+ 0.00 = Design level
+ 0.30 = Decimate height
+ 1 norm = 1/10000
+ 1 = number of items
+Water data (1)
+ 1 = Phreatic line
+ 0.00 = Level
+ Piezo lines
+ 3 - Number of layers
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+[MODEL FACTOR]
+ 1.00 = Limit value stability factor
+ 0.08 = Standard deviation for limit value stability factor
+ 0.00 = Reference standard deviation for degree of consolidation
+ 100.00 = Length of the section
+ 0 = Use contribution of end section
+ 0.00 = Lateral stress ratio
+ 0.25 = Coefficient of variation contribution edge of section
+[CALCULATION OPTIONS]
+MoveCalculationGrid=1
+ProbCalculationType=2
+SearchMethod=0
+[END OF CALCULATION OPTIONS]
+[PROBABILISTIC DEFAULTS]
+CohesionVariationTotal=0.25
+CohesionDesignPartial=1.25
+CohesionDesignStdDev=-1.65
+CohesionDistribution=3
+PhiVariationTotal=0.15
+PhiDesignPartial=1.10
+PhiDesignStdDev=-1.65
+PhiDistribution=3
+StressTableVariationTotal=0.20
+StressTableDesignPartial=1.15
+StressTableDesignStdDev=-1.65
+StressTableDistribution=3
+RatioCuPcVariationTotal=0.25
+RatioCuPcDesignPartial=1.15
+RatioCuPcDesignStdDev=-1.65
+RatioCuPcDistribution=3
+CuVariationTotal=0.25
+CuDesignPartial=1.15
+CuDesignStdDev=-1.65
+CuDistribution=3
+POPVariationTotal=0.10
+POPDesignPartial=1.10
+POPDesignStdDev=-1.65
+POPDistribution=3
+CompressionRatioVariationTotal=0.25
+CompressionRatioDesignPartial=1.00
+CompressionRatioDesignStdDev=0.00
+CompressionRatioDistribution=3
+ConsolidationCoefTotalStdDev=20.00
+ConsolidationCoefDesignPartial=1.00
+ConsolidationCoefDesignStdDev=1.65
+ConsolidationCoefDistribution=2
+HydraulicPressureTotalStdDev=0.50
+HydraulicPressureDesignPartial=1.00
+HydraulicPressureDesignStdDev=1.65
+HydraulicPressureDistribution=3
+LimitValueBishopMean=1.00
+LimitValueBishopStdDev=0.08
+LimitValueBishopDistribution=3
+LimitValueVanMean=0.95
+LimitValueVanStdDev=0.08
+LimitValueVanDistribution=3
+[END OF PROBABILISTIC DEFAULTS]
+[NEWZONE PLOT DATA]
+ 0.00 = Diketable Height [m]
+ 3.00 = Width top rest profile [m]
+ 0.00 = X co-ordinate indicating start of zone [m]
+ 0.00 = Boundary of M.H.W influence at X [m]
+ 0.00 = Boundary of M.H.W influence at Y [m]
+ 1.19 = Required safety in zone 1a
+ 1.11 = Required safety in zone 1b
+ 1.00 = Required safety in zone 2a
+ 1.00 = Required safety in zone 2b
+ 0.00 = Left side minimum road [m]
+ 0.00 = Right side minimum road [m]
+ 0.90 = Required safety in zone 3a
+ 0.90 = Required safety in zone 3b
+ 1 Stability calculation at right side
+ 0.50 = Remolding reduction factor
+ 0.80 = Schematization reduction factor
+ 1 Overtopping condition less or equal 0.1 l/m/s
+[HORIZONTAL BALANCE]
+HorizontalBalanceXLeft=0.000
+HorizontalBalanceXRight=0.000
+HorizontalBalanceYTop=0.00
+HorizontalBalanceYBottom=0.00
+HorizontalBalanceNYInterval=1
+[END OF HORIZONTAL BALANCE]
+[REQUESTED CIRCLE SLICES]
+ 30 = number of slices
+[REQUESTED LIFT SLICES]
+ 50 = number of slices
+[REQUESTED SPENCER SLICES]
+ 50 = number of slices
+[SOIL RESISTANCE]
+SoilResistanceDowelAction=1
+SoilResistancePullOut=1
+[END OF SOIL RESISTANCE]
+[GENETIC ALGORITHM OPTIONS BISHOP]
+PopulationCount=30
+GenerationCount=30
+EliteCount=2
+MutationRate=0.200
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS BISHOP]
+[GENETIC ALGORITHM OPTIONS LIFTVAN]
+PopulationCount=40
+GenerationCount=40
+EliteCount=2
+MutationRate=0.250
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS LIFTVAN]
+[GENETIC ALGORITHM OPTIONS SPENCER]
+PopulationCount=50
+GenerationCount=50
+EliteCount=2
+MutationRate=0.300
+CrossOverScatterFraction=0.000
+CrossOverSinglePointFraction=0.700
+CrossOverDoublePointFraction=0.300
+MutationJumpFraction=0.000
+MutationCreepFraction=0.900
+MutationInverseFraction=0.100
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS SPENCER]
+[MODEL SPECIAL]
+IsAlternativeStrength=0
+IsAdditionalPorePressure=0
+[END OF MODEL SPECIAL]
+[NAIL TYPE DEFAULTS]
+NailTypeLengthNail=0.00
+NailTypeDiameterNail=0.00
+NailTypeDiameterGrout=0.00
+NailTypeYieldForceNail=0.00
+NailTypePlasticMomentNail=0.00
+NailTypeBendingStiffnessNail=0.00E+00
+NailTypeUseFacingOrBearingPlate=0
+[END OF NAIL TYPE DEFAULTS]
+[END OF INPUT FILE]
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidSoilVersion.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidSoilVersion.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidSoilVersion.sti (revision 2999)
@@ -0,0 +1,18 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY : Stichting Deltares Esther
+LICENSE : Unknown
+DATE : 8/22/2016
+TIME : 08:24:36
+FILENAME : D:\DelphiWin32Projects\trunk\data\DGeoStability\Reference Results\Projects\Versions\Tutorial-1a 16.1.2.1.sti
+CREATED BY : D-Geo Stability version 16.1.2.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1004
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1004
+[END OF VERSION]
+
+[END OF INPUT FILE]
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/GeoFile.geo
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/GeoFile.geo (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/GeoFile.geo (revision 2999)
@@ -0,0 +1,169 @@
+GEOMETRY FILE FOR THE M-SERIES
+==============================================================================
+COMPANY : Stichting Deltares Esther
+LICENSE : Unknown
+DATE : 8/22/2016
+TIME : 08:14:11
+FILENAME : D:\DelphiWin32Projects\trunk\data\DGeoStability\Reference Results\Projects\Examples\Tutorial-1a.geo
+CREATED BY : D-Geo Stability version 16.1.2.1
+========================== BEGINNING OF DATA ==========================
+[TITLES]
+ Tutorial 1 for D-Geo Stability
+ Dike reinforced with berm
+[END OF TITLES]
+
+[EXTRA TITLE]
+
+[END OF EXTRA TITLE]
+
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+END OF GEOMETRY FILE
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/SeepFile.SEI
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/SeepFile.SEI (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/SeepFile.SEI (revision 2999)
@@ -0,0 +1,199 @@
+Input file for MSeep.
+==============================================================================
+COMPANY :
+LICENSE : Unknown
+DATE : 2/9/2016
+TIME : 5:07:39 AM
+FILENAME : C:\Users\DSC-admin\Documents\Deltares Systems\MSeep\Projects\Benchmarks\bm2_1.sei
+CREATED BY : MSeep version 16.1.2.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1001
+Geometry=1000
+MSeep=1001
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 1 = number of items
+[SOIL]
+gravel
+SoilColor=9764853
+SoilGamWet=0.01
+SoilPorosity=0.400
+SoilDiameterD70=200.00
+SoilRelativeDensity=20.0
+SoilKASNumber=50.0
+SoilUniformity=1.800
+SoilPermeabKx=1.00000E-03
+SoilPermeabKy=1.00000E-03
+SoilBeddingAngle=37.0
+SoilWhitesConstant=0.250
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 10 - Number of geometry points -
+ 1 0.000 0.000 0.000
+ 2 1.640 0.000 0.000
+ 3 0.000 0.840 0.000
+ 4 1.620 0.840 0.000
+ 5 1.640 0.840 0.000
+ 6 0.000 3.220 0.000
+ 7 1.620 3.220 0.000
+ 8 1.620 0.840 0.000
+ 9 0.000 0.000 0.000
+ 10 0.000 0.000 0.000
+[END OF POINTS]
+
+[CURVES]
+ 5 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 4 5
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 6 7
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 4
+[END OF CURVES]
+
+[BOUNDARIES]
+ 3 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 2 - number of curves on boundary, next line(s) are curvenumbers
+ 2 3
+ 2 - Boundary number
+ 3 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 3
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 3 - Number of boundaries -
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 3 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 3 - Number of boundaries -
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 0 - Number of piezometric level lines -
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 0 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 2 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ gravel
+ 0 - Piezometric level line at top of layer
+ 0 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ gravel
+ 0 - Piezometric level line at top of layer
+ 0 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+
+[Run Identification Titles]
+A dam with two vertical walls
+Benchmark 1 for MSEEP
+
+
+[Calculation Type]
+1 = Steady state - cross section - adpated mesh
+0 = Erosion disabled
+0 = Extended piping rule disabled
+
+[Number of Layers]
+ 2 - Number of layers
+
+[Water Properties]
+9.81 = WaterUnitWeight
+1.33000E-06 = WaterViscosity
+
+[Discharges]
+ 0 - Number of discharges
+ X-Coordinate [m] Y-Coordinate [m] Discharge [m3/s]
+
+[Potentials]
+ 0 - Number of Potentials
+ X-Coordinate [m] Y-Coordinate [m] Potential [m]
+
+[Boundary Lines]
+ 6 - Number of Boundary Lines
+ LineNr Type of boundary line Parameter Type of node 1 From[X,Y]-To[X,Y]
+ 1 3 3.2200000E+00 0 [0.00,0.00] - [0.00,3.22]
+ 2 4 0.0000000E+00 -1 [0.00,3.22] - [1.62,3.22]
+ 3 4 0.0000000E+00 0 [1.62,3.22] - [1.62,0.84]
+ 4 3 8.4000000E-01 0 [1.62,0.84] - [1.64,0.84]
+ 5 3 8.4000000E-01 0 [1.64,0.84] - [1.64,0.00]
+ 6 1 0.0000000E+00 -1 [1.64,0.00] - [0.00,0.00]
+
+[Erosion Setup]
+ErosionExitPoint=-1
+ErosionEntryPoint=-1
+UpstreamHeadBoundaryLineIndex=-1
+[End Erosion Setup]
+
+[Heave Setup]
+0.000 = HeaveGradient
+
+[SHEETPILES]
+ -1 : number of sheetpiles
+
+[ELEMENT SIZES PER LAYER]
+ 2 : number of layers
+ 0.150 0.150 1.000
+ 0.200 0.200 1.000
+
+[REFINEMENT BOXES V2]
+ -1 : number of refinement boxes
+
+END OF INPUT FILE OF MSEEP
Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileImporterException.cs
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileImporterException.cs (revision 0)
+++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StiImporter/StiFileImporterException.cs (revision 2999)
@@ -0,0 +1,76 @@
+// Copyright (C) Stichting Deltares 2020. All rights reserved.
+//
+// This file is part of the application DAM - Clients Library.
+//
+// DAM - UI is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
+using System.Runtime.Serialization;
+
+namespace Deltares.Dam.Data.StiImporter
+{
+ ///
+ /// Exception thrown when something went importing a sti file went wrong.
+ ///
+ [Serializable]
+ public class StiFileImporterException : Exception
+ {
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public StiFileImporterException()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class
+ /// with a specified error message.
+ ///
+ /// The message that describes the error.
+ public StiFileImporterException(string message)
+ : base(message)
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class with a specified error message
+ /// and a reference to the inner exception that is the cause of this exception.
+ ///
+ /// The error message that explains the reason for the exception.
+ /// The exception that is the cause of the current exception,
+ /// or null if no inner exception is specified.
+ public StiFileImporterException(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+
+ ///
+ /// Initializes a new instance of with
+ /// serialized data.
+ /// The that holds the serialized
+ /// object data about the exception being thrown.
+ /// The that contains contextual
+ /// information about the source or destination.
+ /// The parameter is
+ /// null.
+ /// The class name is null or
+ /// is zero (0).
+ protected StiFileImporterException(SerializationInfo info, StreamingContext context) : base(info, context)
+ {
+ }
+ }
+}
\ No newline at end of file
Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Deltares.Dam.Data.csproj
===================================================================
diff -u -r2871 -r2999
--- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Deltares.Dam.Data.csproj (.../Deltares.Dam.Data.csproj) (revision 2871)
+++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Deltares.Dam.Data.csproj (.../Deltares.Dam.Data.csproj) (revision 2999)
@@ -200,6 +200,8 @@
+
+
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 10.1.4.3.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 10.1.4.3.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 10.1.4.3.sti (revision 2999)
@@ -0,0 +1,1406 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY : Deltares
+LICENSE : Unknown
+DATE : 06/11/2013
+TIME : 16:22:25
+FILENAME : C:\Users\DSC\Documents\Deltares Systems\DGeoStability\Projects\Examples\Tutorial-1a.sti
+CREATED BY : D-Geo Stability version 10.1.4.3
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1001
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1003
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 11 = number of items
+[SOIL]
+Soft Clay
+SoilColor=16575398
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=14.00
+SoilGamWet=14.00
+SoilRestSlope=0
+SoilCohesion=8.00
+SoilPhi=20.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Medium Clay
+SoilColor=11141025
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=17.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Stiff Clay
+SoilColor=2763429
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Peat
+SoilColor=7077877
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=12.00
+SoilGamWet=12.00
+SoilRestSlope=0
+SoilCohesion=5.00
+SoilPhi=15.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loose Sand
+SoilColor=42495
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Berm Sand
+SoilColor=15728396
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.50
+SoilGamWet=21.00
+SoilRestSlope=0
+SoilCohesion=2.00
+SoilPhi=32.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Sand
+SoilColor=851951
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=29.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Gravel
+SoilColor=5244889
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loam
+SoilColor=13407356
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=20.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Muck
+SoilColor=4163021
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=11.00
+SoilGamWet=11.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Undetermined
+SoilColor=16777215
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=0.01
+SoilGamWet=0.02
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 4 - Number of boundaries -
+ 1
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 4 - Number of boundaries -
+ 0
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+[RUN IDENTIFICATION TITLES]
+Tutorial 1 for D-Geo Stability
+Dike reinforced with berm
+
+[MODEL]
+ 1 : Bishop
+ 1 : C phi
+ 0 : Probabilistic off
+ 1 : Mean
+ 0 : Geotextiles off
+ 0 : Nails off
+ 0 : Zone plot off
+ 0 : Local measurements
+[END OF MODEL]
+[MSEEPNET]
+ Use potential file
+ 0 : Do not use water net of MSeep file
+ 0 : Do not make negative pressures 0
+[UNIT WEIGHT WATER]
+ 9.81 : Unit weight water
+[DEGREE OF CONSOLIDATION]
+ 3 Number of layers
+ 3 100
+ 2 100 100
+ 1 100 100 100
+ 0 capillary water not included
+[degree Temporary loads]
+ 100 100 100
+ 0 capillary water not included
+[degree Free water(Cu)]
+ 100 100 100
+[degree earth quake]
+ 100 100 100
+[CIRCLES]
+ 43.000 51.000 8 X-direction
+ 6.000 9.000 8 Y-direction
+ -1.500 -4.500 8 Tangent lines
+ 0.000 0.000 0 no fixed point used
+[SPENCER SLIP DATA]
+ 0 Number of points
+[SPENCER SLIP DATA 2]
+ 0 Number of points
+[SPENCER SLIP INTERVAL]
+ 2 : Slip spencer interval
+[LINE LOADS]
+ 0 = number of items
+[UNIFORM LOADS ]
+ 0 = number of items
+[TREE ON SLOPE]
+0.00 = WindForce
+0.00 = XCoordinate
+0.00 = YCoordinate
+10.00 = width of root zone
+0.0 = AngleOfDistribution
+[END OF TREE ON SLOPE]
+[EARTH QUAKE]
+ 0.000 = horizontal acceleration
+ 0.000 = vertical acceleration
+ 0.000 = free water moment factor
+[SIGMA-TAU CURVES]
+ 0 = number of items
+[END OF SIGMA-TAU CURVES]
+[BOND STRESS DIAGRAMS]
+ 0 = number of items
+[END OF BOND STRESS DIAGRAMS]
+[MINIMAL REQUIRED CIRCLE DEPTH]
+ 0.00 [m]
+[Slip Circle Selection]
+IsMinXEntryUsed=0
+IsMaxXEntryUsed=0
+XEntryMin=0.00
+XEntryMax=0.00
+[End of Slip Circle Selection]
+[START VALUE SAFETY FACTOR]
+ 1.000 [-]
+[REFERENCE LEVEL CU]
+ 3
+[LIFT SLIP DATA]
+ 0.000 0.000 1 X-direction Left
+ 0.000 0.000 1 Y-direction Left
+ 0.000 0.000 1 X-direction Right
+ 0.000 0.000 1 Y-direction Right
+ 0.000 0.000 1 Y-direction tangent lines
+ 0 Automatic grid calculation (1)
+[EXTERNAL WATER LEVELS]
+ 0 = No water data used
+ 0.00 = Design level
+ 0.30 = Decimate height
+ 1 norm = 1/10000
+ 1 = number of items
+Water data (1)
+ 1 = Phreatic line
+ 0.00 = Level
+ Piezo lines
+ 3 - Number of layers
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+[MODEL FACTOR]
+ 1.00 = Limit value stability factor
+ 0.08 = Standard deviation for limit value stability factor
+ 0.00 = Reference standard deviation for degree of consolidation
+ 100.00 = Length of the section
+ 0 = Use contribution of end section
+ 0.00 = Lateral stress ratio
+ 0.25 = Coefficient of variation contribution edge of section
+[CALCULATION OPTIONS]
+MoveCalculationGrid=1
+ProbCalculationType=2
+SearchMethod=0
+[END OF CALCULATION OPTIONS]
+[PROBABILISTIC DEFAULTS]
+CohesionVariationTotal=0.25
+CohesionDesignPartial=1.25
+CohesionDesignStdDev=-1.65
+CohesionDistribution=3
+PhiVariationTotal=0.15
+PhiDesignPartial=1.10
+PhiDesignStdDev=-1.65
+PhiDistribution=3
+StressTableVariationTotal=0.20
+StressTableDesignPartial=1.15
+StressTableDesignStdDev=-1.65
+StressTableDistribution=3
+RatioCuPcVariationTotal=0.25
+RatioCuPcDesignPartial=1.15
+RatioCuPcDesignStdDev=-1.65
+RatioCuPcDistribution=3
+CuVariationTotal=0.25
+CuDesignPartial=1.15
+CuDesignStdDev=-1.65
+CuDistribution=3
+POPVariationTotal=0.10
+POPDesignPartial=1.10
+POPDesignStdDev=-1.65
+POPDistribution=3
+CompressionRatioVariationTotal=0.25
+CompressionRatioDesignPartial=1.00
+CompressionRatioDesignStdDev=0.00
+CompressionRatioDistribution=3
+ConsolidationCoefTotalStdDev=20.00
+ConsolidationCoefDesignPartial=1.00
+ConsolidationCoefDesignStdDev=1.65
+ConsolidationCoefDistribution=2
+HydraulicPressureTotalStdDev=0.50
+HydraulicPressureDesignPartial=1.00
+HydraulicPressureDesignStdDev=1.65
+HydraulicPressureDistribution=3
+LimitValueBishopMean=1.00
+LimitValueBishopStdDev=0.08
+LimitValueBishopDistribution=3
+LimitValueVanMean=0.95
+LimitValueVanStdDev=0.08
+LimitValueVanDistribution=3
+[END OF PROBABILISTIC DEFAULTS]
+[NEWZONE PLOT DATA]
+ 0.00 = Diketable Height [m]
+ 0.00 = X co-ordinate indicating start of zone [m]
+ 0.00 = Boundary of M.H.W influence at X [m]
+ 0.00 = Boundary of M.H.W influence at Y [m]
+ 1.19 = Required safety in zone 1a
+ 1.11 = Required safety in zone 1b
+ 1.00 = Required safety in zone 2a
+ 1.00 = Required safety in zone 2b
+ 0.00 = Left side minimum road [m]
+ 0.00 = Right side minimum road [m]
+ 0.90 = Required safety in zone 3a
+ 0.90 = Required safety in zone 3b
+ 1 Stability calculation at right side
+ 0.50 = Remolding reduction factor
+ 0.80 = Schematization reduction factor
+ 1 Overtopping condition less or equal 0.1 l/m/s
+[HORIZONTAL BALANCE]
+HorizontalBalanceXLeft=0.000
+HorizontalBalanceXRight=0.000
+HorizontalBalanceYTop=0.00
+HorizontalBalanceYBottom=0.00
+HorizontalBalanceNYInterval=1
+[END OF HORIZONTAL BALANCE]
+[REQUESTED CIRCLE SLICES]
+ 30 = number of slices
+[REQUESTED LIFT SLICES]
+ 50 = number of slices
+[REQUESTED SPENCER SLICES]
+ 50 = number of slices
+[SOIL RESISTANCE]
+SoilResistanceDowelAction=1
+SoilResistancePullOut=1
+[END OF SOIL RESISTANCE]
+[GENETIC ALGORITHM OPTIONS BISHOP]
+PopulationCount=30
+GenerationCount=30
+EliteCount=2
+MutationRate=0.200
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS BISHOP]
+[GENETIC ALGORITHM OPTIONS LIFTVAN]
+PopulationCount=40
+GenerationCount=40
+EliteCount=2
+MutationRate=0.250
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS LIFTVAN]
+[GENETIC ALGORITHM OPTIONS SPENCER]
+PopulationCount=50
+GenerationCount=50
+EliteCount=2
+MutationRate=0.300
+CrossOverScatterFraction=0.000
+CrossOverSinglePointFraction=0.700
+CrossOverDoublePointFraction=0.300
+MutationJumpFraction=0.000
+MutationCreepFraction=0.900
+MutationInverseFraction=0.100
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS SPENCER]
+[NAIL TYPE DEFAULTS]
+NailTypeLengthNail=0.00
+NailTypeDiameterNail=0.00
+NailTypeDiameterGrout=0.00
+NailTypeYieldForceNail=0.00
+NailTypePlasticMomentNail=0.00
+NailTypeBendingStiffnessNail=0.00E+00
+NailTypeUseFacingOrBearingPlate=0
+[END OF NAIL TYPE DEFAULTS]
+[END OF INPUT FILE]
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidGeometryVersion.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidGeometryVersion.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/InvalidGeometryVersion.sti (revision 2999)
@@ -0,0 +1,18 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY : Stichting Deltares Esther
+LICENSE : Unknown
+DATE : 8/22/2016
+TIME : 08:24:36
+FILENAME : D:\DelphiWin32Projects\trunk\data\DGeoStability\Reference Results\Projects\Versions\Tutorial-1a 16.1.2.1.sti
+CREATED BY : D-Geo Stability version 16.1.2.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1000
+Geometry=1001
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1004
+[END OF VERSION]
+
+[END OF INPUT FILE]
Index: DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 16.1.2.1.sti
===================================================================
diff -u
--- DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 16.1.2.1.sti (revision 0)
+++ DamClients/DamUI/trunk/src/Dam/Tests/TestData/StiImporter/Tutorial-1a 16.1.2.1.sti (revision 2999)
@@ -0,0 +1,1413 @@
+Input file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY : Stichting Deltares Esther
+LICENSE : Unknown
+DATE : 8/22/2016
+TIME : 08:24:36
+FILENAME : D:\DelphiWin32Projects\trunk\data\DGeoStability\Reference Results\Projects\Versions\Tutorial-1a 16.1.2.1.sti
+CREATED BY : D-Geo Stability version 16.1.2.1
+========================== BEGINNING OF DATA ==========================
+[VERSION]
+Soil=1001
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1004
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 11 = number of items
+[SOIL]
+Soft Clay
+SoilColor=16575398
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=14.00
+SoilGamWet=14.00
+SoilRestSlope=0
+SoilCohesion=8.00
+SoilPhi=20.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Medium Clay
+SoilColor=11141025
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=17.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Stiff Clay
+SoilColor=2763429
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Peat
+SoilColor=7077877
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=12.00
+SoilGamWet=12.00
+SoilRestSlope=0
+SoilCohesion=5.00
+SoilPhi=15.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loose Sand
+SoilColor=42495
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Berm Sand
+SoilColor=15728396
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.50
+SoilGamWet=21.00
+SoilRestSlope=0
+SoilCohesion=2.00
+SoilPhi=32.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Sand
+SoilColor=851951
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=29.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Gravel
+SoilColor=5244889
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loam
+SoilColor=13407356
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=20.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Muck
+SoilColor=4163021
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=11.00
+SoilGamWet=11.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Undetermined
+SoilColor=16777215
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=0.01
+SoilGamWet=0.02
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+StrengthIncreaseExponent=0.70
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+IsOCRCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=1.25
+SoilDesignStdCohesion=-1.65
+SoilDesignPartialPhi=1.10
+SoilDesignStdPhi=-1.65
+SoilDesignPartialStressTable=1.15
+SoilDesignStdStressTable=-1.65
+SoilDesignPartialRatioCuPc=1.15
+SoilDesignStdRatioCuPc=-1.65
+SoilDesignPartialCu=1.15
+SoilDesignStdCu=-1.65
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 4 - Number of boundaries -
+ 1
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 4 - Number of boundaries -
+ 0
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+[RUN IDENTIFICATION TITLES]
+Tutorial 1 for D-Geo Stability
+Dike reinforced with berm
+
+[MODEL]
+ 1 : Bishop
+ 1 : C phi
+ 0 : Probabilistic off
+ 1 : Mean
+ 0 : Geotextiles off
+ 0 : Nails off
+ 0 : Zone plot off
+ 0 : Local measurements
+[END OF MODEL]
+[MSEEPNET]
+ Use potential file
+ 0 : Do not use water net of MSeep file
+ 0 : Do not make negative pressures 0
+[UNIT WEIGHT WATER]
+ 9.81 : Unit weight water
+[DEGREE OF CONSOLIDATION]
+ 3 Number of layers
+ 3 100
+ 2 100 100
+ 1 100 100 100
+ 0 capillary water not included
+[degree Temporary loads]
+ 100 100 100
+ 0 capillary water not included
+[degree Free water(Cu)]
+ 100 100 100
+[degree earth quake]
+ 100 100 100
+[CIRCLES]
+ 43.000 51.000 8 X-direction
+ 6.000 9.000 8 Y-direction
+ -1.500 -4.500 8 Tangent lines
+ 0.000 0.000 0 no fixed point used
+[SPENCER SLIP DATA]
+ 0 Number of points
+[SPENCER SLIP DATA 2]
+ 0 Number of points
+[SPENCER SLIP INTERVAL]
+ 2 : Slip spencer interval
+[LINE LOADS]
+ 0 = number of items
+[UNIFORM LOADS ]
+ 0 = number of items
+[TREE ON SLOPE]
+0.00 = WindForce
+0.00 = XCoordinate
+0.00 = YCoordinate
+10.00 = width of root zone
+0.0 = AngleOfDistribution
+[END OF TREE ON SLOPE]
+[EARTH QUAKE]
+ 0.000 = horizontal acceleration
+ 0.000 = vertical acceleration
+ 0.000 = free water moment factor
+[SIGMA-TAU CURVES]
+ 0 = number of items
+[END OF SIGMA-TAU CURVES]
+[BOND STRESS DIAGRAMS]
+ 0 = number of items
+[END OF BOND STRESS DIAGRAMS]
+[MINIMAL REQUIRED CIRCLE DEPTH]
+ 0.00 [m]
+[Slip Circle Selection]
+IsMinXEntryUsed=0
+IsMaxXEntryUsed=0
+XEntryMin=0.00
+XEntryMax=0.00
+[End of Slip Circle Selection]
+[START VALUE SAFETY FACTOR]
+ 1.000 [-]
+[REFERENCE LEVEL CU]
+ 3
+[LIFT SLIP DATA]
+ 0.000 0.000 1 X-direction Left
+ 0.000 0.000 1 Y-direction Left
+ 0.000 0.000 1 X-direction Right
+ 0.000 0.000 1 Y-direction Right
+ 0.000 0.000 1 Y-direction tangent lines
+ 0 Automatic grid calculation (1)
+[EXTERNAL WATER LEVELS]
+ 0 = No water data used
+ 0.00 = Design level
+ 0.30 = Decimate height
+ 1 norm = 1/10000
+ 1 = number of items
+Water data (1)
+ 1 = Phreatic line
+ 0.00 = Level
+ Piezo lines
+ 3 - Number of layers
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+ 1 1 = Pl-top and pl-bottom
+[MODEL FACTOR]
+ 1.00 = Limit value stability factor
+ 0.08 = Standard deviation for limit value stability factor
+ 0.00 = Reference standard deviation for degree of consolidation
+ 100.00 = Length of the section
+ 0 = Use contribution of end section
+ 0.00 = Lateral stress ratio
+ 0.25 = Coefficient of variation contribution edge of section
+[WATER PRESSURE ON HORIZONTAL BAR]
+ 0 Use water pressure on horizontal bar
+[CALCULATION OPTIONS]
+MoveCalculationGrid=1
+ProbCalculationType=2
+SearchMethod=0
+[END OF CALCULATION OPTIONS]
+[PROBABILISTIC DEFAULTS]
+CohesionVariationTotal=0.25
+CohesionDesignPartial=1.25
+CohesionDesignStdDev=-1.65
+CohesionDistribution=3
+PhiVariationTotal=0.15
+PhiDesignPartial=1.10
+PhiDesignStdDev=-1.65
+PhiDistribution=3
+StressTableVariationTotal=0.20
+StressTableDesignPartial=1.15
+StressTableDesignStdDev=-1.65
+StressTableDistribution=3
+RatioCuPcVariationTotal=0.25
+RatioCuPcDesignPartial=1.15
+RatioCuPcDesignStdDev=-1.65
+RatioCuPcDistribution=3
+CuVariationTotal=0.25
+CuDesignPartial=1.15
+CuDesignStdDev=-1.65
+CuDistribution=3
+POPVariationTotal=0.10
+POPDesignPartial=1.10
+POPDesignStdDev=-1.65
+POPDistribution=3
+CompressionRatioVariationTotal=0.25
+CompressionRatioDesignPartial=1.00
+CompressionRatioDesignStdDev=0.00
+CompressionRatioDistribution=3
+ConsolidationCoefTotalStdDev=20.00
+ConsolidationCoefDesignPartial=1.00
+ConsolidationCoefDesignStdDev=1.65
+ConsolidationCoefDistribution=2
+HydraulicPressureTotalStdDev=0.50
+HydraulicPressureDesignPartial=1.00
+HydraulicPressureDesignStdDev=1.65
+HydraulicPressureDistribution=3
+LimitValueBishopMean=1.00
+LimitValueBishopStdDev=0.08
+LimitValueBishopDistribution=3
+LimitValueVanMean=0.95
+LimitValueVanStdDev=0.08
+LimitValueVanDistribution=3
+[END OF PROBABILISTIC DEFAULTS]
+[NEWZONE PLOT DATA]
+ 0.00 = Diketable Height [m]
+ 3.00 = Width top rest profile [m]
+ 0.00 = X co-ordinate indicating start of zone [m]
+ 0.00 = Boundary of M.H.W influence at X [m]
+ 0.00 = Boundary of M.H.W influence at Y [m]
+ 1.19 = Required safety in zone 1a
+ 1.11 = Required safety in zone 1b
+ 1.00 = Required safety in zone 2a
+ 1.00 = Required safety in zone 2b
+ 0.00 = Left side minimum road [m]
+ 0.00 = Right side minimum road [m]
+ 0.90 = Required safety in zone 3a
+ 0.90 = Required safety in zone 3b
+ 1 Stability calculation at right side
+ 0.50 = Remolding reduction factor
+ 0.80 = Schematization reduction factor
+ 1 Overtopping condition less or equal 0.1 l/m/s
+[HORIZONTAL BALANCE]
+HorizontalBalanceXLeft=0.000
+HorizontalBalanceXRight=0.000
+HorizontalBalanceYTop=0.00
+HorizontalBalanceYBottom=0.00
+HorizontalBalanceNYInterval=1
+[END OF HORIZONTAL BALANCE]
+[REQUESTED CIRCLE SLICES]
+ 30 = number of slices
+[REQUESTED LIFT SLICES]
+ 50 = number of slices
+[REQUESTED SPENCER SLICES]
+ 50 = number of slices
+[SOIL RESISTANCE]
+SoilResistanceDowelAction=1
+SoilResistancePullOut=1
+[END OF SOIL RESISTANCE]
+[GENETIC ALGORITHM OPTIONS BISHOP]
+PopulationCount=30
+GenerationCount=30
+EliteCount=2
+MutationRate=0.200
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS BISHOP]
+[GENETIC ALGORITHM OPTIONS LIFTVAN]
+PopulationCount=40
+GenerationCount=40
+EliteCount=2
+MutationRate=0.250
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS LIFTVAN]
+[GENETIC ALGORITHM OPTIONS SPENCER]
+PopulationCount=50
+GenerationCount=50
+EliteCount=2
+MutationRate=0.300
+CrossOverScatterFraction=0.000
+CrossOverSinglePointFraction=0.700
+CrossOverDoublePointFraction=0.300
+MutationJumpFraction=0.000
+MutationCreepFraction=0.900
+MutationInverseFraction=0.100
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS SPENCER]
+[MODEL SPECIAL]
+IsAlternativeStrength=0
+IsAdditionalPorePressure=0
+[END OF MODEL SPECIAL]
+[NAIL TYPE DEFAULTS]
+NailTypeLengthNail=0.00
+NailTypeDiameterNail=0.00
+NailTypeDiameterGrout=0.00
+NailTypeYieldForceNail=0.00
+NailTypePlasticMomentNail=0.00
+NailTypeBendingStiffnessNail=0.00E+00
+NailTypeUseFacingOrBearingPlate=0
+[END OF NAIL TYPE DEFAULTS]
+[END OF INPUT FILE]