Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ConvergenceParserTest.cs =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ConvergenceParserTest.cs (.../ConvergenceParserTest.cs) (revision 4bf03fe0c441a3f3d439bc7ffe09350227435178) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ConvergenceParserTest.cs (.../ConvergenceParserTest.cs) (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -22,6 +22,7 @@ using System; using System.Data.SQLite; using System.IO; +using System.Security.AccessControl; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.HydraRing.Calculation.Exceptions; @@ -32,19 +33,13 @@ [TestFixture] public class ConvergenceParserTest { - private const string emptyWorkingDirectory = "EmptyWorkingDirectory"; - private const string invalidFileInDirectory = "InvalidFile"; - private const string emptyFileInDirectory = "EmptyDatabase"; private const string convergenceOnBetaForSection1 = "ConvergenceOnBetaSection1"; - private const string convergenceOnValueForSection1 = "ConvergenceOnValueSection1"; - private const string convergenceOnBothForSection1 = "ConvergenceOnBothSection1"; - private const string noConvergenceForSection1 = "NoConvergenceSection1"; - private const string convergenceOnAllButLastIterationForSection1 = "ConvergenceOnAllButLastIteration"; - private const string convergenceNull = "ConvergenceNull"; - private static readonly string testDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.Calculation, Path.Combine("Parsers", nameof(ConvergenceParser))); + private static readonly string testDirectory = Path.Combine(TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.Calculation, "Parsers"), + nameof(ConvergenceParser)); + [Test] - public void DefaultConstrutor_Always_CreatesNewHydraRingFileParser() + public void Constructor_Always_CreatesNewHydraRingFileParser() { // Call var parser = new ConvergenceParser(); @@ -72,7 +67,7 @@ public void Parse_WithWorkingDirectoryWithoutExpectedFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyWorkingDirectory); + string path = Path.Combine(testDirectory, "EmptyWorkingDirectory"); var parser = new ConvergenceParser(); // Call @@ -87,23 +82,23 @@ public void Parse_WithWorkingDirectoryWithInvalidOutputFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, invalidFileInDirectory); + string path = Path.Combine(testDirectory, "InvalidFile"); var parser = new ConvergenceParser(); // Call TestDelegate test = () => parser.Parse(path, 1); // Assert - var exception = Assert.Throws(test); - Assert.IsInstanceOf(exception.InnerException); + var exception = Assert.Throws(test); Assert.AreEqual("Er kon geen resultaat gelezen worden uit de Hydra-Ring uitvoerdatabase.", exception.Message); + Assert.IsInstanceOf(exception.InnerException); } [Test] public void Parse_WithWorkingDirectoryWithEmptyFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyFileInDirectory); + string path = Path.Combine(testDirectory, "EmptyDatabase"); var parser = new ConvergenceParser(); // Call @@ -135,7 +130,7 @@ public void Parse_ResultNull_ThrowHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, convergenceNull); + string path = Path.Combine(testDirectory, "ConvergenceNull"); var parser = new ConvergenceParser(); // Call @@ -148,8 +143,8 @@ } [Test] - [TestCase(noConvergenceForSection1)] - [TestCase(convergenceOnAllButLastIterationForSection1)] + [TestCase("NoConvergenceSection1")] + [TestCase("ConvergenceOnAllButLastIteration")] public void Parse_WithWorkingDirectoryWithFileWithFalseResult_SetOutputFalse(string testSubDirectory) { // Setup @@ -160,13 +155,13 @@ parser.Parse(path, 1); // Assert - Assert.IsFalse(parser.Output.Value); + Assert.IsFalse(parser.Output); } [Test] [TestCase(convergenceOnBetaForSection1)] - [TestCase(convergenceOnValueForSection1)] - [TestCase(convergenceOnBothForSection1)] + [TestCase("ConvergenceOnValueSection1")] + [TestCase("ConvergenceOnBothSection1")] public void Parse_WithWorkingDirectoryWithFileWithTrueResult_SetOutputTrue(string testSubDirectory) { // Setup @@ -177,7 +172,27 @@ parser.Parse(path, 1); // Assert - Assert.IsTrue(parser.Output.Value); + Assert.IsTrue(parser.Output); } + + [Test] + public void Parse_ErrorWhileReadingFile_ThrowsHydraRingFileParserException() + { + // Setup + var parser = new ConvergenceParser(); + string workingDirectory = Path.Combine(testDirectory, "ValidFile"); + + using (new DirectoryPermissionsRevoker(testDirectory, FileSystemRights.ReadData)) + { + // Call + TestDelegate call = () => parser.Parse(workingDirectory, 1); + + // Assert + var exception = Assert.Throws(call); + var expectedMessage = "Er kon geen resultaat gelezen worden uit de Hydra-Ring uitvoerdatabase."; + Assert.AreEqual(expectedMessage, exception.Message); + Assert.IsInstanceOf(exception.InnerException); + } + } } } \ No newline at end of file Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/DunesBoundaryConditionsCalculationParserTest.cs =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/DunesBoundaryConditionsCalculationParserTest.cs (.../DunesBoundaryConditionsCalculationParserTest.cs) (revision 4bf03fe0c441a3f3d439bc7ffe09350227435178) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/DunesBoundaryConditionsCalculationParserTest.cs (.../DunesBoundaryConditionsCalculationParserTest.cs) (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -33,18 +33,10 @@ [TestFixture] public class DunesBoundaryConditionsCalculationParserTest { - private const string emptyWorkingDirectory = "EmptyWorkingDirectory"; - private const string invalidFileInDirectory = "InvalidFile"; - private const string emptyFileInDirectory = "EmptyDatabase"; - private const string noResultsOnLastIteration = "ResultsOnAllButLastIteration"; - private const string permissionDenied = "NoPermissionsToRead"; - private const string validFileNoWaveHeight = "ValidFileNoWaveHeight"; - private const string validFileNoWavePeriod = "ValidFileNoWavePeriod"; - private const string validFileNoWaterLevel = "ValidFileNoWaterLevel"; - private const string validFile= "ValidFile"; + private const string validFile = "ValidFile"; private readonly string testDirectory = Path.Combine(TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.Calculation, "Parsers"), - "DunesBoundaryConditionsParser"); + nameof(DunesBoundaryConditionsCalculationParser)); [Test] public void Constructor_ExpectedValues() @@ -75,7 +67,7 @@ public void Parse_WithWorkingDirectoryWithoutExpectedFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyWorkingDirectory); + string path = Path.Combine(testDirectory, "EmptyWorkingDirectory"); var parser = new DunesBoundaryConditionsCalculationParser(); // Call @@ -90,7 +82,7 @@ public void Parse_WithWorkingDirectoryWithInvalidOutputFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, invalidFileInDirectory); + string path = Path.Combine(testDirectory, "InvalidFile"); var parser = new DunesBoundaryConditionsCalculationParser(); // Call @@ -106,7 +98,7 @@ public void Parse_WithWorkingDirectoryWithEmptyFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyFileInDirectory); + string path = Path.Combine(testDirectory, "EmptyDatabase"); var parser = new DunesBoundaryConditionsCalculationParser(); // Call @@ -123,7 +115,7 @@ { // Setup var parser = new DunesBoundaryConditionsCalculationParser(); - var workingDirectory = Path.Combine(testDirectory, permissionDenied); + string workingDirectory = Path.Combine(testDirectory, validFile); using (new DirectoryPermissionsRevoker(testDirectory, FileSystemRights.ReadData)) { @@ -139,10 +131,10 @@ } [Test] - [TestCase(validFileNoWaveHeight)] - [TestCase(validFileNoWavePeriod)] - [TestCase(validFileNoWaterLevel)] - [TestCase(noResultsOnLastIteration)] + [TestCase("ValidFileNoWaveHeight")] + [TestCase("ValidFileNoWavePeriod")] + [TestCase("ValidFileNoWaterLevel")] + [TestCase("ResultsOnAllButLastIteration")] public void Parse_NotAllColumnsHasResults_ThrowHydraRingFileParserException(string subFolder) { // Setup @@ -158,8 +150,6 @@ Assert.IsInstanceOf(exception.InnerException); } - - [Test] public void Parse_ValidDataForOtherSection_ThrowsHydraRingFileParserException() { Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ExceedanceProbabilityCalculationParserTest.cs =================================================================== diff -u -rb253fd5ebc5d5800f5757be8b04820cb4ca05724 -raaba4b75a68957cc119907739669b990275f4ca4 --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ExceedanceProbabilityCalculationParserTest.cs (.../ExceedanceProbabilityCalculationParserTest.cs) (revision b253fd5ebc5d5800f5757be8b04820cb4ca05724) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ExceedanceProbabilityCalculationParserTest.cs (.../ExceedanceProbabilityCalculationParserTest.cs) (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -22,6 +22,7 @@ using System; using System.Data.SQLite; using System.IO; +using System.Security.AccessControl; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.HydraRing.Calculation.Exceptions; @@ -32,11 +33,7 @@ [TestFixture] public class ExceedanceProbabilityCalculationParserTest { - private const string emptyWorkingDirectory = "EmptyWorkingDirectory"; - private const string invalidFileInDirectory = "InvalidFile"; - private const string emptyFileInDirectory = "EmptyDatabase"; private const string validFile = "ValidFile"; - private const string betaNull = "BetaNull"; private readonly string testDirectory = Path.Combine(TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.Calculation, "Parsers"), nameof(ExceedanceProbabilityCalculationParser)); @@ -70,7 +67,7 @@ public void Parse_WithWorkingDirectoryWithoutExpectedFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyWorkingDirectory); + string path = Path.Combine(testDirectory, "EmptyWorkingDirectory"); var parser = new ExceedanceProbabilityCalculationParser(); // Call @@ -85,7 +82,7 @@ public void Parse_WithWorkingDirectoryWithInvalidOutputFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, invalidFileInDirectory); + string path = Path.Combine(testDirectory, "InvalidFile"); var parser = new ExceedanceProbabilityCalculationParser(); // Call @@ -101,7 +98,7 @@ public void Parse_WithWorkingDirectoryWithEmptyFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyFileInDirectory); + string path = Path.Combine(testDirectory, "EmptyDatabase"); var parser = new ExceedanceProbabilityCalculationParser(); // Call @@ -140,14 +137,14 @@ parser.Parse(path, 1); // Assert - Assert.AreEqual(3.42848, parser.Output.Value); + Assert.AreEqual(3.42848, parser.Output); } [Test] public void Parse_BetaNull_ThrowHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, betaNull); + string path = Path.Combine(testDirectory, "BetaNull"); var parser = new ExceedanceProbabilityCalculationParser(); // Call @@ -158,5 +155,25 @@ Assert.AreEqual("Er is geen resultaat voor de betrouwbaarheidsindex van de faalkans gevonden in de Hydra-Ring uitvoerdatabase.", exception.Message); Assert.IsInstanceOf(exception.InnerException); } + + [Test] + public void Parse_ErrorWhileReadingFile_ThrowsHydraRingFileParserException() + { + // Setup + var parser = new ExceedanceProbabilityCalculationParser(); + string workingDirectory = Path.Combine(testDirectory, validFile); + + using (new DirectoryPermissionsRevoker(testDirectory, FileSystemRights.ReadData)) + { + // Call + TestDelegate call = () => parser.Parse(workingDirectory, 1); + + // Assert + var exception = Assert.Throws(call); + var expectedMessage = "Er kon geen resultaat gelezen worden uit de Hydra-Ring uitvoerdatabase."; + Assert.AreEqual(expectedMessage, exception.Message); + Assert.IsInstanceOf(exception.InnerException); + } + } } } \ No newline at end of file Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ReliabilityIndexCalculationParserTest.cs =================================================================== diff -u -r9a23940073476cb6293dd921afb5298d0aeaab7d -raaba4b75a68957cc119907739669b990275f4ca4 --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ReliabilityIndexCalculationParserTest.cs (.../ReliabilityIndexCalculationParserTest.cs) (revision 9a23940073476cb6293dd921afb5298d0aeaab7d) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Parsers/ReliabilityIndexCalculationParserTest.cs (.../ReliabilityIndexCalculationParserTest.cs) (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -22,6 +22,7 @@ using System; using System.Data.SQLite; using System.IO; +using System.Security.AccessControl; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.HydraRing.Calculation.Exceptions; @@ -32,12 +33,7 @@ [TestFixture] public class ReliabilityIndexCalculationParserTest { - private const string emptyWorkingDirectory = "EmptyWorkingDirectory"; - private const string invalidFileInDirectory = "InvalidFile"; - private const string emptyFileInDirectory = "EmptyDatabase"; private const string validFile = "ValidFile"; - private const string betaNull = "BetaNull"; - private const string valueNull = "ValueNull"; private readonly string testDirectory = Path.Combine(TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.Calculation, "Parsers"), nameof(ReliabilityIndexCalculationParser)); @@ -71,7 +67,7 @@ public void Parse_WithWorkingDirectoryWithoutExpectedFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyWorkingDirectory); + string path = Path.Combine(testDirectory, "EmptyWorkingDirectory"); var parser = new ReliabilityIndexCalculationParser(); // Call @@ -86,7 +82,7 @@ public void Parse_WithWorkingDirectoryWithInvalidOutputFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, invalidFileInDirectory); + string path = Path.Combine(testDirectory, "InvalidFile"); var parser = new ReliabilityIndexCalculationParser(); // Call @@ -102,7 +98,7 @@ public void Parse_WithWorkingDirectoryWithEmptyFile_ThrowsHydraRingFileParserException() { // Setup - string path = Path.Combine(testDirectory, emptyFileInDirectory); + string path = Path.Combine(testDirectory, "EmptyDatabase"); var parser = new ReliabilityIndexCalculationParser(); // Call @@ -146,8 +142,8 @@ } [Test] - [TestCase(betaNull)] - [TestCase(valueNull)] + [TestCase("BetaNull")] + [TestCase("ValueNull")] public void Parse_BetaOrValueNull_ThrowHydraRingFileParserException(string subFolder) { // Setup @@ -162,5 +158,25 @@ Assert.AreEqual("Er is geen resultaat voor de betrouwbaarheidsindex van de berekende kans van voorkomen gevonden in de Hydra-Ring uitvoerdatabase.", exception.Message); Assert.IsInstanceOf(exception.InnerException); } + + [Test] + public void Parse_ErrorWhileReadingFile_ThrowsHydraRingFileParserException() + { + // Setup + var parser = new ReliabilityIndexCalculationParser(); + string workingDirectory = Path.Combine(testDirectory, validFile); + + using (new DirectoryPermissionsRevoker(testDirectory, FileSystemRights.ReadData)) + { + // Call + TestDelegate call = () => parser.Parse(workingDirectory, 1); + + // Assert + var exception = Assert.Throws(call); + var expectedMessage = "Er kon geen resultaat gelezen worden uit de Hydra-Ring uitvoerdatabase."; + Assert.AreEqual(expectedMessage, exception.Message); + Assert.IsInstanceOf(exception.InnerException); + } + } } } \ No newline at end of file Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/EmptyDatabase/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/InvalidFile/output.sqlite =================================================================== diff -u --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/InvalidFile/output.sqlite (revision 0) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/InvalidFile/output.sqlite (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -0,0 +1 @@ \ No newline at end of file Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/NoPermissionsToRead/1-output.txt =================================================================== diff -u --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/NoPermissionsToRead/1-output.txt (revision 0) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/NoPermissionsToRead/1-output.txt (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -0,0 +1,7 @@ +Executable name : D:\Repos\Ringtoets\Ringtoets\DuneErosion\test\Ringtoets.DuneErosion.Service.Test\bin\Debug\HydraRing\MechanismComputation.exe +Executable version : 16.3.1.7317 +===================================================================================== + Considered water level = 3.50000 + Computed local water level = 3.49999 + Computed wave height = 2.32674 + Computed wave period = 10.10509 \ No newline at end of file Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/ResultsOnAllButLastIteration/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/ValidFile/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/ValidFileNoWaterLevel/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/ValidFileNoWaveHeight/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/ValidFileNoWavePeriod/output.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waterLevel/1-output.txt =================================================================== diff -u --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waterLevel/1-output.txt (revision 0) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waterLevel/1-output.txt (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -0,0 +1,645 @@ +===================================================================================== + Computed local water level = 4.82903 + Computed wave height = 2.88936 + Computed wave period = 10.65437 +===================================================================================== + Submechanism = Reference water level dunes + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration X + Windrichting = 0.000000 1.20000E+01 0.00000E+00 + Waterstand Den Helder = 0.000000 1.20000E+01 4.06341E+00 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 4.65393E+00 + Waterstand IJmuiden = 0.000000 1.20000E+01 4.56195E+00 + Waterstand OS11 = 0.000000 1.20000E+01 4.64004E+00 + Waterstand Vlissingen = 0.000000 1.20000E+01 5.07999E+00 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 2.72311E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 8.10532E-02 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 1.11061E-01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 1.06394E-01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 1.01085E-01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 9.61699E-02 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 1.01957E+00 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 0.00000E+00 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 9.90000E-01 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 9.60000E-01 +===================================================================================== + Status = Mechanisme given wind direction + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to dike section given wind direction + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 1 + Beta = 4.986436 + Pf = 3.07997E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 2 + Beta = 8.007073 + Pf = 5.93392E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 3 + Beta = 8.058976 + Pf = 3.88718E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 4 + Beta = 8.094845 + Pf = 2.89738E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 5 + Beta = 8.052795 + Pf = 4.08856E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 6 + Beta = 8.057766 + Pf = 3.92582E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 7 + Beta = 8.131667 + Pf = 2.13999E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 8 + Beta = 6.972083 + Pf = 1.57140E-12 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 9 + Beta = 5.902850 + Pf = 1.79236E-09 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 10 + Beta = 4.802501 + Pf = 7.84496E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 11 + Beta = 4.280813 + Pf = 9.31707E-06 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 1 + Beta = 5.572213 + Pf = 1.26091E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 2 + Beta = 8.387664 + Pf = 2.50901E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 3 + Beta = 8.387647 + Pf = 2.50936E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 4 + Beta = 8.387637 + Pf = 2.50958E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 5 + Beta = 8.387651 + Pf = 2.50928E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 6 + Beta = 8.387649 + Pf = 2.50933E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 7 + Beta = 8.387605 + Pf = 2.51024E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 8 + Beta = 7.223773 + Pf = 2.54660E-13 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 9 + Beta = 6.214870 + Pf = 2.57898E-10 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 10 + Beta = 5.247173 + Pf = 7.73790E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 11 + Beta = 4.838952 + Pf = 6.53506E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 12 + Beta = 4.818006 + Pf = 7.25953E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Combined over wind directions + Governing wind direction = 12 + Beta = 4.675240 + Pf = 1.46970E-06 + Variable Alpha Duration + Windrichting = -0.420448 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.899052 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.122187 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Final result for calculation period + Beta = 3.270521 + Pf = 5.36809E-04 + Variable Alpha Duration + Windrichting = -0.420448 4.38300E+03 + Waterstand Den Helder = 0.000000 4.38300E+03 + Waterstand Hoek van Holland = -0.899052 4.38300E+03 + Waterstand IJmuiden = 0.000000 4.38300E+03 + Waterstand OS11 = 0.000000 4.38300E+03 + Waterstand Vlissingen = 0.000000 4.38300E+03 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 4.38300E+03 + Onzekerheid waterstand Den Helder = 0.000000 4.38300E+03 + Onzekerheid waterstand Hoek van Holland = -0.122187 4.38300E+03 + Onzekerheid waterstand IJmuiden = 0.000000 4.38300E+03 + Onzekerheid waterstand OS11 = 0.000000 4.38300E+03 + Onzekerheid waterstand Vlissingen = 0.000000 4.38300E+03 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 4.38300E+03 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Elapsed time = 2.545000 seconds Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waveHeight/1-output.txt =================================================================== diff -u --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waveHeight/1-output.txt (revision 0) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-waveHeight/1-output.txt (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -0,0 +1,645 @@ +===================================================================================== + Considered water level = 4.82912 + Computed local water level = 4.82903 + Computed wave period = 10.65437 +===================================================================================== + Submechanism = Reference water level dunes + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration X + Windrichting = 0.000000 1.20000E+01 0.00000E+00 + Waterstand Den Helder = 0.000000 1.20000E+01 4.06341E+00 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 4.65393E+00 + Waterstand IJmuiden = 0.000000 1.20000E+01 4.56195E+00 + Waterstand OS11 = 0.000000 1.20000E+01 4.64004E+00 + Waterstand Vlissingen = 0.000000 1.20000E+01 5.07999E+00 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 2.72311E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 8.10532E-02 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 1.11061E-01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 1.06394E-01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 1.01085E-01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 9.61699E-02 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 1.01957E+00 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 0.00000E+00 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 9.90000E-01 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 9.60000E-01 +===================================================================================== + Status = Mechanisme given wind direction + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to dike section given wind direction + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 1 + Beta = 4.986436 + Pf = 3.07997E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 2 + Beta = 8.007073 + Pf = 5.93392E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 3 + Beta = 8.058976 + Pf = 3.88718E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 4 + Beta = 8.094845 + Pf = 2.89738E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 5 + Beta = 8.052795 + Pf = 4.08856E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 6 + Beta = 8.057766 + Pf = 3.92582E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 7 + Beta = 8.131667 + Pf = 2.13999E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 8 + Beta = 6.972083 + Pf = 1.57140E-12 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 9 + Beta = 5.902850 + Pf = 1.79236E-09 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 10 + Beta = 4.802501 + Pf = 7.84496E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 11 + Beta = 4.280813 + Pf = 9.31707E-06 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 1 + Beta = 5.572213 + Pf = 1.26091E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 2 + Beta = 8.387664 + Pf = 2.50901E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 3 + Beta = 8.387647 + Pf = 2.50936E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 4 + Beta = 8.387637 + Pf = 2.50958E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 5 + Beta = 8.387651 + Pf = 2.50928E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 6 + Beta = 8.387649 + Pf = 2.50933E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 7 + Beta = 8.387605 + Pf = 2.51024E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 8 + Beta = 7.223773 + Pf = 2.54660E-13 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 9 + Beta = 6.214870 + Pf = 2.57898E-10 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 10 + Beta = 5.247173 + Pf = 7.73790E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 11 + Beta = 4.838952 + Pf = 6.53506E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 12 + Beta = 4.818006 + Pf = 7.25953E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Combined over wind directions + Governing wind direction = 12 + Beta = 4.675240 + Pf = 1.46970E-06 + Variable Alpha Duration + Windrichting = -0.420448 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.899052 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.122187 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Final result for calculation period + Beta = 3.270521 + Pf = 5.36809E-04 + Variable Alpha Duration + Windrichting = -0.420448 4.38300E+03 + Waterstand Den Helder = 0.000000 4.38300E+03 + Waterstand Hoek van Holland = -0.899052 4.38300E+03 + Waterstand IJmuiden = 0.000000 4.38300E+03 + Waterstand OS11 = 0.000000 4.38300E+03 + Waterstand Vlissingen = 0.000000 4.38300E+03 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 4.38300E+03 + Onzekerheid waterstand Den Helder = 0.000000 4.38300E+03 + Onzekerheid waterstand Hoek van Holland = -0.122187 4.38300E+03 + Onzekerheid waterstand IJmuiden = 0.000000 4.38300E+03 + Onzekerheid waterstand OS11 = 0.000000 4.38300E+03 + Onzekerheid waterstand Vlissingen = 0.000000 4.38300E+03 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 4.38300E+03 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Elapsed time = 2.545000 seconds Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-wavePeriod/1-output.txt =================================================================== diff -u --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-wavePeriod/1-output.txt (revision 0) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsCalculationParser/output-no-wavePeriod/1-output.txt (revision aaba4b75a68957cc119907739669b990275f4ca4) @@ -0,0 +1,645 @@ +===================================================================================== + Considered water level = 4.82912 + Computed local water level = 4.82903 + Computed wave height = 2.88936 +===================================================================================== + Submechanism = Reference water level dunes + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration X + Windrichting = 0.000000 1.20000E+01 0.00000E+00 + Waterstand Den Helder = 0.000000 1.20000E+01 4.06341E+00 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 4.65393E+00 + Waterstand IJmuiden = 0.000000 1.20000E+01 4.56195E+00 + Waterstand OS11 = 0.000000 1.20000E+01 4.64004E+00 + Waterstand Vlissingen = 0.000000 1.20000E+01 5.07999E+00 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 2.72311E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 8.10532E-02 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 1.11061E-01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 1.06394E-01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 1.01085E-01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 9.61699E-02 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 1.01957E+00 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 0.00000E+00 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 9.90000E-01 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 9.60000E-01 +===================================================================================== + Status = Mechanisme given wind direction + Wind direction = 12 + Closing situation = 1 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to dike section given wind direction + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 1 + Beta = 4.986436 + Pf = 3.07997E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 2 + Beta = 8.007073 + Pf = 5.93392E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 3 + Beta = 8.058976 + Pf = 3.88718E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 4 + Beta = 8.094845 + Pf = 2.89738E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 5 + Beta = 8.052795 + Pf = 4.08856E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 6 + Beta = 8.057766 + Pf = 3.92582E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 7 + Beta = 8.131667 + Pf = 2.13999E-16 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 8 + Beta = 6.972083 + Pf = 1.57140E-12 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 9 + Beta = 5.902850 + Pf = 1.79236E-09 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 10 + Beta = 4.802501 + Pf = 7.84496E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 11 + Beta = 4.280813 + Pf = 9.31707E-06 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Upscaled to largest block duration + Wind direction = 12 + Beta = 4.173112 + Pf = 1.50324E-05 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 1 + Beta = 5.572213 + Pf = 1.26091E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.989734 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.142920 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 2 + Beta = 8.387664 + Pf = 2.50901E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978410 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.206674 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 3 + Beta = 8.387647 + Pf = 2.50936E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978620 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205677 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 4 + Beta = 8.387637 + Pf = 2.50958E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978752 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205049 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 5 + Beta = 8.387651 + Pf = 2.50928E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978586 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205837 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 6 + Beta = 8.387649 + Pf = 2.50933E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978613 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.205708 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 7 + Beta = 8.387605 + Pf = 2.51024E-17 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.978971 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.203998 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 8 + Beta = 7.223773 + Pf = 2.54660E-13 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.984075 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.177756 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 9 + Beta = 6.214870 + Pf = 2.57898E-10 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.986026 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.166594 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 10 + Beta = 5.247173 + Pf = 7.73790E-08 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.988590 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.150634 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 11 + Beta = 4.838952 + Pf = 6.53506E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.990649 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.136434 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Dike section and wind direction + Wind direction = 12 + Beta = 4.818006 + Pf = 7.25953E-07 + Variable Alpha Duration + Windrichting = 0.000000 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.991483 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.130236 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Combined over wind directions + Governing wind direction = 12 + Beta = 4.675240 + Pf = 1.46970E-06 + Variable Alpha Duration + Windrichting = -0.420448 1.20000E+01 + Waterstand Den Helder = 0.000000 1.20000E+01 + Waterstand Hoek van Holland = -0.899052 1.20000E+01 + Waterstand IJmuiden = 0.000000 1.20000E+01 + Waterstand OS11 = 0.000000 1.20000E+01 + Waterstand Vlissingen = 0.000000 1.20000E+01 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 1.20000E+01 + Onzekerheid waterstand Den Helder = 0.000000 1.20000E+01 + Onzekerheid waterstand Hoek van Holland = -0.122187 1.20000E+01 + Onzekerheid waterstand IJmuiden = 0.000000 1.20000E+01 + Onzekerheid waterstand OS11 = 0.000000 1.20000E+01 + Onzekerheid waterstand Vlissingen = 0.000000 1.20000E+01 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 1.20000E+01 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Status = Final result for calculation period + Beta = 3.270521 + Pf = 5.36809E-04 + Variable Alpha Duration + Windrichting = -0.420448 4.38300E+03 + Waterstand Den Helder = 0.000000 4.38300E+03 + Waterstand Hoek van Holland = -0.899052 4.38300E+03 + Waterstand IJmuiden = 0.000000 4.38300E+03 + Waterstand OS11 = 0.000000 4.38300E+03 + Waterstand Vlissingen = 0.000000 4.38300E+03 + Windsnelheid Hoek van Holland | wl HvH = 0.000000 4.38300E+03 + Onzekerheid waterstand Den Helder = 0.000000 4.38300E+03 + Onzekerheid waterstand Hoek van Holland = -0.122187 4.38300E+03 + Onzekerheid waterstand IJmuiden = 0.000000 4.38300E+03 + Onzekerheid waterstand OS11 = 0.000000 4.38300E+03 + Onzekerheid waterstand Vlissingen = 0.000000 4.38300E+03 +Onzekerheid windsnelheid Hoek van Hollan = 0.000000 4.38300E+03 + Modelonzekerheid lokale waterstand = 0.000000 4.38300E+03 + Modelonzekerheid golfhoogte = 0.000000 4.38300E+03 + Modelonzekerheid golfperiode = 0.000000 4.38300E+03 +===================================================================================== + Elapsed time = 2.545000 seconds Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/EmptyDatabase/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Fisheye: Tag aaba4b75a68957cc119907739669b990275f4ca4 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/InvalidFile/output.sqlite'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag aaba4b75a68957cc119907739669b990275f4ca4 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/NoPermissionsToRead/1-output.txt'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/ResultsOnAllButLastIteration/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/ValidFile/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/ValidFileNoWaterLevel/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/ValidFileNoWaveHeight/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/ValidFileNoWavePeriod/output.sqlite =================================================================== diff -u -r4bf03fe0c441a3f3d439bc7ffe09350227435178 -raaba4b75a68957cc119907739669b990275f4ca4 Binary files differ Fisheye: Tag aaba4b75a68957cc119907739669b990275f4ca4 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/output-no-waterLevel/1-output.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag aaba4b75a68957cc119907739669b990275f4ca4 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/output-no-waveHeight/1-output.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag aaba4b75a68957cc119907739669b990275f4ca4 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/test-data/Parsers/DunesBoundaryConditionsParser/output-no-wavePeriod/1-output.txt'. Fisheye: No comparison available. Pass `N' to diff?