Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs =================================================================== diff -u -r7ddd944b70d252ae493bba48ea9b31c01634082d -r873b8bf10a9c767214fa5a3a1e6cf340e060657f --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs (.../HeightStructuresCalculation.cs) (revision 7ddd944b70d252ae493bba48ea9b31c01634082d) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs (.../HeightStructuresCalculation.cs) (revision 873b8bf10a9c767214fa5a3a1e6cf340e060657f) @@ -21,6 +21,7 @@ using System; using Core.Common.Base; +using Core.Common.Base.Data; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.Probability; using Ringtoets.HeightStructures.Data.Properties; @@ -51,6 +52,7 @@ InputParameters = new HeightStructuresInput(generalInputParameters); NormProbabilityInput = normProbabilityInput; Name = Resources.HeightStructuresCalculation_DefaultName; + AddDemoInput(); } /// @@ -96,5 +98,18 @@ { return Output; } + + private void AddDemoInput() + { + InputParameters.LevelOfCrestOfStructure.Mean = (RoundedDouble) 3.5; + InputParameters.OrientationOfTheNormalOfTheStructure = (RoundedDouble) 115; + InputParameters.AllowableIncreaseOfLevelForStorage.Mean = (RoundedDouble) 1.0; + InputParameters.StorageStructureArea.Mean = (RoundedDouble) 1000000; + InputParameters.FlowWidthAtBottomProtection.Mean = (RoundedDouble) 18; + InputParameters.CriticalOvertoppingDischarge.Mean = (RoundedDouble) 1; + InputParameters.WidthOfFlowApertures.Mean = (RoundedDouble) 18; + InputParameters.DeviationOfTheWaveDirection = (RoundedDouble) 0; + InputParameters.FailureProbabilityOfStructureGivenErosion = (RoundedDouble) 1; + } } } \ No newline at end of file