Index: System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj =================================================================== diff -u -rf6fffc6ccaf30accf1014ebb6992f01b93f1050a -rcb224d44e8112cf33e20c83b2221ff5b53a8e11e --- System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision f6fffc6ccaf30accf1014ebb6992f01b93f1050a) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -528,6 +528,9 @@ true 89c0f5fb-52ff-40f4-b42f-9ce63891301a + + 0adb26cb-0c2c-46ba-87b9-974b3c023812 + 5a8d1d39-770a-499a-bd2b-f165e9451f94 @@ -939,6 +942,9 @@ 6a737ffa-3e0c-4c81-bdc5-78b47fbd8ea6 + + ce0048b3-8a4c-4b4f-843a-e7a76a683fda + b20a1f0c-135a-46a7-935a-43e5165f32a7 @@ -2420,7 +2426,7 @@ Always 55f842ba-2cc9-4ba2-b80f-75e4bdbb75e7 - + Always 6827c86e-753b-4849-9c40-0455c419adb9 Index: System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxsqc =================================================================== diff -u -red40e697b9f0f408d4f771aaa106218067403a45 -rcb224d44e8112cf33e20c83b2221ff5b53a8e11e --- System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxsqc (.../AutomatedSystemTests.rxsqc) (revision ed40e697b9f0f408d4f771aaa106218067403a45) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxsqc (.../AutomatedSystemTests.rxsqc) (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -11,7 +11,7 @@ }, { "Enabled": "False", - "TestSuite": "WorkOnProgressDavid", + "TestSuite": "WorkInProgressDavid", "RunConfig": "TestRun" }, { Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ReadDataScenariosView.cs =================================================================== diff -u -rf6fffc6ccaf30accf1014ebb6992f01b93f1050a -rcb224d44e8112cf33e20c83b2221ff5b53a8e11e --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ReadDataScenariosView.cs (.../ReadDataScenariosView.cs) (revision f6fffc6ccaf30accf1014ebb6992f01b93f1050a) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ReadDataScenariosView.cs (.../ReadDataScenariosView.cs) (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -89,7 +89,7 @@ int indexName = GetIndex(rowHeader, "Naam"); int indexFailureProbability = GetIndex(rowHeader, "Faalkans"); - var dataView = new DataSectionScenariosView(); + var dataView = new DataRowsTableSectionScenariosView(); rows.RemoveAt(0); foreach (var row in rows) { var calcInfo = new CalculationInformationInScenariosView(); @@ -113,7 +113,14 @@ dataView.DataScenariosViewList.Add(calcInfo); } - jsonDataScenariosView = JsonConvert.SerializeObject(dataView, Formatting.Indented); + + var dataFM = new DataSectionScenariosView(); + dataFM.IndexSection = Int32.Parse(sectionIndex); + dataFM.NameSection = sectionname; + dataFM.DataSection = dataView; + dataSectionScenariosView.Add(dataFM); + + jsonDataScenariosView = JsonConvert.SerializeObject(dataSectionScenariosView, Formatting.Indented); } private string GetAV(Cell cl) @@ -126,14 +133,14 @@ return row.Cells.ToList().FindIndex(cl=>GetAV(cl).Contains(name)); } - private List BuildDataScenariosView(string jsonString) + private List BuildDataScenariosView(string jsonString) { - List dataFMScenariosView; + List dataFMScenariosView; if (jsonString=="") { - dataFMScenariosView = new List(); + dataFMScenariosView = new List(); } else { var error = false; - dataFMScenariosView = JsonConvert.DeserializeObject>(jsonString, new JsonSerializerSettings + dataFMScenariosView = JsonConvert.DeserializeObject>(jsonString, new JsonSerializerSettings { Error = (s, e) => { @@ -153,18 +160,18 @@ } - public class DataFMScenariosView + public class DataSectionScenariosView { public int IndexSection {get; set;} - public string Name {get; set;} - public DataSectionScenariosView DataSection {get; set;} + public string NameSection {get; set;} + public DataRowsTableSectionScenariosView DataSection {get; set;} } - public class DataSectionScenariosView + public class DataRowsTableSectionScenariosView { public List DataScenariosViewList {get; set;} - public DataSectionScenariosView() + public DataRowsTableSectionScenariosView() { this.DataScenariosViewList = new List(); } Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ValidateSectionResultAsCombinationContributionsInFMResultView.cs =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ValidateSectionResultAsCombinationContributionsInFMResultView.cs (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/ActionsDocumentView/ValidateSectionResultAsCombinationContributionsInFMResultView.cs (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -0,0 +1,150 @@ +/* + * Created by Ranorex + * User: rodriqu_dd + * Date: 14/12/2020 + * Time: 10:21 + * + * To change this template use Tools > Options > Coding > Edit standard headers. + */ +using System; +using System.Globalization; +using System.Linq; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Drawing; +using System.Threading; +using WinForms = System.Windows.Forms; +using Newtonsoft.Json; + +using Ranorex; +using Ranorex.Core; +using Ranorex.Core.Testing; + +namespace AutomatedSystemTests.Modules.ActionsDocumentView +{ + /// + /// Description of ValidateSectionResultAsCombinationContributionsInFMResultView. + /// + [TestModule("B8F1AECF-C5F5-4C4A-BDA3-27D9FFB17F53", ModuleType.UserCode, 1)] + public class ValidateSectionResultAsCombinationContributionsInFMResultView : ITestModule + { + + string _jsonDataScenariosView = ""; + [TestVariable("ec137b62-f031-4865-9b56-d28ed3a2ceb6")] + public string jsonDataScenariosView + { + get { return _jsonDataScenariosView; } + set { _jsonDataScenariosView = value; } + } + + /// + /// Constructs a new instance. + /// + public ValidateSectionResultAsCombinationContributionsInFMResultView() + { + // Do not delete - a parameterless constructor is required! + } + + /// + /// Performs the playback of actions in this module. + /// + /// You should not call this method directly, instead pass the module + /// instance to the method + /// that will in turn invoke this method. + void ITestModule.Run() + { + Mouse.DefaultMoveTime = 0; + Keyboard.DefaultKeyPressTime = 0; + Delay.SpeedFactor = 0.0; + + var repo =global::AutomatedSystemTests.AutomatedSystemTestsRepository.Instance; + + var dataSectionScenariosView = BuildDataScenariosView(jsonDataScenariosView); + + var table = repo.RiskeerMainWindow.DocumentViewContainerUncached.FM_ResultView.Table.Self; + var rows = table.Rows; + + var headerRow =rows[0]; + int indexColumnSectionName = GetIndex(headerRow, "Vak"); + int indexColumnCombinedProbability = GetIndex(headerRow, "Gedetailleerde toets per vak\r\nfaalkans"); + rows.RemoveAt(0); + + foreach (var dataSection in dataSectionScenariosView) { + var rowSection = rows[dataSection.IndexSection]; + var cellProb = rowSection.Cells[indexColumnCombinedProbability]; + cellProb.Focus(); + cellProb.Select(); + string actualProb = GetAV(cellProb); + Report.Info("Validating section: " + rowSection.Cells[indexColumnSectionName]); + + ValidateSectionResult(dataSection, actualProb); + } + } + + private void ValidateSectionResult(DataSectionScenariosView data, string actualProb) + { + System.Globalization.CultureInfo currentCulture = CultureInfo.CurrentCulture; + double expectedSumWeightedProbs = 0; + for (int i = 0; i < data.DataSection.DataScenariosViewList.Count; i++) { + var currentCalculation = data.DataSection.DataScenariosViewList[i]; + if (currentCalculation.InFinalRating) { + string numeratorNoSeparators = currentCalculation.FailureProbability.Substring(2, currentCalculation.FailureProbability.Length - 2).Replace(currentCulture.NumberFormat.NumberGroupSeparator, String.Empty); + long numerator = Int64.Parse(numeratorNoSeparators); + double currentCalcProbability = 1.0 / numerator; + expectedSumWeightedProbs += currentCalcProbability * currentCalculation.Contribution; + } + } + expectedSumWeightedProbs = expectedSumWeightedProbs / 100; + long numeratorExpectedProb = (long) Math.Round(1/expectedSumWeightedProbs); + string expectedExactProbFraction = "1/" + numeratorExpectedProb.ToString(currentCulture); + if (expectedExactProbFraction==actualProb.Replace(currentCulture.NumberFormat.NumberGroupSeparator, String.Empty)) { + Report.Info("Validating if expected probability (" + expectedExactProbFraction + ") is exactly equal to actual one (" + actualProb.Replace(currentCulture.NumberFormat.NumberGroupSeparator, String.Empty) + ")."); + Validate.AreEqual(actualProb.Replace(currentCulture.NumberFormat.NumberGroupSeparator, String.Empty), expectedExactProbFraction); + } else { + Report.Info("Expected probability (" + expectedExactProbFraction + ") is not exactly equal to actual one (" + actualProb + ")."); + Report.Info("Validatign if they are almost equal (within 0.01 %)"); + long actualNumerator = Int64.Parse(actualProb.Substring(2, actualProb.Length-2).Replace(currentCulture.NumberFormat.NumberGroupSeparator, String.Empty)); + double actualSumWeightedProbs = 1.0 / actualNumerator; + double relativeDeviation = Math.Abs(actualSumWeightedProbs-expectedSumWeightedProbs) / expectedSumWeightedProbs; + Validate.IsTrue(relativeDeviation<0.0001); + } + } + + private int GetIndex(Row row, string name) + { + return row.Cells.ToList().FindIndex(cl=>GetAV(cl).Contains(name)); + } + + private string GetAV(Cell cl) + { + return cl.Element.GetAttributeValueText("AccessibleValue"); + } + + private List BuildDataScenariosView(string jsonString) + { + List dataFMScenariosView; + if (jsonString=="") { + dataFMScenariosView = new List(); + } else { + var error = false; + dataFMScenariosView = JsonConvert.DeserializeObject>(jsonString, new JsonSerializerSettings + { + Error = (s, e) => + { + error = true; + e.ErrorContext.Handled = true; + } + } + ); + if (error==true) { + + Report.Log(ReportLevel.Error, "error unserializing json string for data scenarios view: " + jsonString); + } + + } + return dataFMScenariosView; + } + + } +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/ResetVariable.cs =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/ResetVariable.cs (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/ResetVariable.cs (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -0,0 +1,66 @@ +/* + * Created by Ranorex + * User: rodriqu_dd + * Date: 14/12/2020 + * Time: 12:18 + * + * To change this template use Tools > Options > Coding > Edit standard headers. + */ +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Drawing; +using System.Threading; +using WinForms = System.Windows.Forms; + +using Ranorex; +using Ranorex.Core; +using Ranorex.Core.Testing; + +namespace AutomatedSystemTests.Modules.Calculation +{ + /// + /// Description of ResetVarriable. + /// + [TestModule("FB4C2F53-1A6B-4793-BF45-593FD01B933D", ModuleType.UserCode, 1)] + public class ResetVariable : ITestModule + { + + string _variableToReset = ""; + [TestVariable("c6798ebf-20c3-4776-9043-ff16ac64a580")] + public string variableToReset + { + get { return _variableToReset; } + set { _variableToReset = value; } + } + + + string _newValueForvariable = ""; + [TestVariable("15db2839-9a99-440e-b01a-b5fc66032d72")] + public string newValueForvariable + { + get { return _newValueForvariable; } + set { _newValueForvariable = value; } + } + + /// + /// Constructs a new instance. + /// + public ResetVariable() + { + // Do not delete - a parameterless constructor is required! + } + + /// + /// Performs the playback of actions in this module. + /// + /// You should not call this method directly, instead pass the module + /// instance to the method + /// that will in turn invoke this method. + void ITestModule.Run() + { + variableToReset = newValueForvariable; + } + } +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/WorkInProgressDavid.rxtst =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/WorkInProgressDavid.rxtst (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/WorkInProgressDavid.rxtst (revision cb224d44e8112cf33e20c83b2221ff5b53a8e11e) @@ -0,0 +1,7576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + labelFM + + + trajectToAdd + + + pathToHBCInPE + + + pathToHBCItemInPE + + + pathToSectionsInPE + + + pathToSurfaceLinesInPE + + + pathToSubsurfaceSchematizationsInPE + + + pathToDikeProfilesInPE + + + pathToForelandProfilesInPE + + + pathToStructuresInPE + + + pathToCalculationsInPE + + + pathToScenariosInPE + + + pathToResultsInPE + + + pathToHBCFile + + + pathToSectionsDivisionsFile + + + pathToSurfaceLinesFile + + + pathToSubsurfaceSchematizationsFile + + + pathToDikeProfilesFile + + + pathToForelandProfilesFile + + + pathToStructuresFile + + + expectedStructureCalculations + + + listIndecesHBCLocationsToCalculate + + + rangeConfigurationCalculationsLoopSections + + + listIndecesItemsToGenerateCalculations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ labelFM + + trajectToAdd + + pathToHBCInPE + + pathToHBCItemInPE + + pathToSectionsInPE + + pathToSurfaceLinesInPE + + pathToSubsurfaceSchematizationsInPE + + pathToDikeProfilesInPE + + pathToForelandProfilesInPE + + pathToStructuresInPE + + pathToCalculationsInPE + + pathToScenariosInPE + + pathToResultsInPE + + pathToHBCFile + + pathToSectionsDivisionsFile + + pathToSurfaceLinesFile + + pathToSubsurfaceSchematizationsFile + + pathToDikeProfilesFile + + pathToForelandProfilesFile + + pathToStructuresFile + + expectedStructureCalculations + + listIndecesHBCLocationsToCalculate + + rangeConfigurationCalculationsLoopSections + + listIndecesItemsToGenerateCalculations +
+ STPH + + 12-2 + + Traject 12-2>Hydraulische belastingen + + Traject 12-2>Hydraulische belastingen>Waterstanden>Categoriegrens A + + Traject 12-2>Dijken en dammen - Piping>Invoer>Vakindeling + + Traject 12-2>Dijken en dammen - Piping>Invoer>Profielschematisaties + + Traject 12-2>Dijken en dammen - Piping>Invoer>Stochastische ondergrondmodellen + + + + + Traject 12-2>Dijken en dammen - Piping>Berekeningen + + Traject 12-2>Dijken en dammen - Piping>Oordeel>Scenario's + + Traject 12-2>Dijken en dammen - Piping>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_IJsselmeer_12-2_v02\WBI2017_IJsselmeer_12-2_v02.sqlite + + X:\script17\STPH\vakindeling_12-2.shp + + X:\script17\STPH\surfacelines traject 12-2.csv + + X:\script17\STPH\Ondergrond traject 12_2_met_DSoil_v17_2_1_987.soil + + + + + [Berekeningen->[12_2_02500->[12_2_02500 Segment_12004_1D1->[Opmerkingen][Invoer][Resultaat]][12_2_02500 Segment_12004_1D2->[Opmerkingen][Invoer][Resultaat]][12_2_02500 Segment_12004_1D3->[Opmerkingen][Invoer][Resultaat]]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat]]] + + 1 + + 1 + + 2 +
+ GEKB + + 12-2 + + Traject 12-2 (1)>Hydraulische belastingen + + Traject 12-2 (1)>Hydraulische belastingen>Waterstanden>Categoriegrens A + + Traject 12-2 (1)>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Invoer>Vakindeling + + + + Traject 12-2 (1)>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Invoer>Dijkprofielen + + + + Traject 12-2 (1)>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Berekeningen + + Traject 12-2 (1)>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Oordeel>Scenario's + + Traject 12-2 (1)>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_IJsselmeer_12-2_v02\WBI2017_IJsselmeer_12-2_v02.sqlite + + X:\script17\GEKB\vakindeling Grasbekledingen erosie kruin en binnentalud 12-2.shp + + + + X:\script17\GEKB\Dijkprofielen 12-2.shp + + + + [Berekeningen->[profiel001->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]][profiel002->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]][profiel003->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]][profiel004->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]][profiel005->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat->[Sterkte berekening][HBN][Overslagdebiet]]]] + + 0,2,4,7,8 + + 2-6 + + 0,1,2,3,4 +
+ STBI + + 41-1 + + 41-1>Hydraulische belastingen + + 41-1>Hydraulische belastingen>Waterstanden>Categoriegrens A + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Invoer>Vakindeling + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Invoer>Profielschematisaties + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Invoer>Stochastische ondergrondmodellen + + + + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Berekeningen + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Oordeel>Scenario's + + 41-1>Dijken en dammen - Macrostabiliteit binnenwaarts>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_Bovenrijn_41-1_v04\WBI2017_Bovenrijn_41-1_v04.sqlite + + X:\script17\STBI\vakindeling_41-1.shp + + X:\script17\STBI\surfaceline.csv + + X:\script17\STBI\ondergrond_41-1.soil + + + + + [Berekeningen->[Vak_41-123->[Vak_41-123 Vak_41-123_Segment_41009_1D2->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D3->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D4->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D6->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D7->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D1->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D8->[Opmerkingen][Invoer][Resultaat]][Vak_41-123 Vak_41-123_Segment_41009_1D5->[Opmerkingen][Invoer][Resultaat]]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat]]] + + 98 + + 7 + + 0 +
+ HTKW + + 36-2 + + 36-2>Hydraulische belastingen + + 36-2>Hydraulische belastingen>Waterstanden>Categoriegrens A + + 36-2>Kunstwerken - Hoogte kunstwerk>Invoer>Vakindeling + + + + + 36-2>Kunstwerken - Hoogte kunstwerk>Invoer>Voorlandprofielen + + 36-2>Kunstwerken - Hoogte kunstwerk>Invoer>Kunstwerken + + 36-2>Kunstwerken - Hoogte kunstwerk>Berekeningen + + 36-2>Kunstwerken - Hoogte kunstwerk>Oordeel>Scenario's + + 36-2>Kunstwerken - Hoogte kunstwerk>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_Bovenmaas_36-2_v03\WBI2017_Bovenmaas_36-2_v03.sqlite + + X:\script17\HTKW\vakindeling_traject_36-2.shp + + + + + X:\script17\HTKW\voorland_traject_36-2.shp + + X:\script17\HTKW\HTkw_traject_36-2.shp + + [Berekeningen->['Keersluis Cuijk'->[Opmerkingen][Invoer][Resultaat]]['Gemaal van Sasse'->[Opmerkingen][Invoer][Resultaat]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat]]] + + 16,112 + + 8-9 + + 0,1 +
+ BSKW + + 34-1 + + 34-1>Hydraulische belastingen + + 34-1>Hydraulische belastingen>Waterstanden>Categoriegrens A + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Invoer>Vakindeling + + + + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Invoer>Voorlandprofielen + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Invoer>Kunstwerken + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Berekeningen + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Oordeel>Scenario's + + 34-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_Benedenrijn_34-1_v04\WBI2017_Benedenrijn_34-1_v04.sqlite + + X:\script17\BSKW\vakindeling_traject_34-1.shp + + + + + X:\script17\BSKW\voorland_traject_34-1.shp + + X:\script17\BSKW\BSkw_traject_34-1.shp + + [Berekeningen->['Amersluis'->[Opmerkingen][Invoer][Resultaat]]['Gemaal Schuddebeurs'->[Opmerkingen][Invoer][Resultaat]]['Gemaal Hollandsch Diep'->[Opmerkingen][Invoer][Resultaat]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat]]] + + 169,216,229 + + 10-12 + + 0,1,2 +
+ STKWp + + 44-2 + + 44-2>Hydraulische belastingen + + 44-2>Hydraulische belastingen>Waterstanden>Categoriegrens A + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Invoer>Vakindeling + + + + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Invoer>Voorlandprofielen + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Invoer>Kunstwerken + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Berekeningen + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Oordeel>Scenario's + + 44-2>Kunstwerken - Sterkte en stabiliteit puntconstructies>Oordeel>Resultaat + + X:\commonData\databases\WBI2017_Markermeer_13-9_13a-1_44-2_v02\WBI2017_Markermeer_13-9_13a-1_44-2_v02.sqlite + + X:\script17\STKWp\vakindeling_traject_44-2.shp + + + + + X:\script17\STKWp\voorland_traject_44-2.shp + + X:\script17\STKWp\STkwp_traject_44-2.shp + + [Berekeningen->[Kunstwerk1->[Opmerkingen][Invoer][Resultaat]][Kunstwerk2->[Opmerkingen][Invoer][Resultaat]][Kunstwerk3->[Opmerkingen][Invoer][Resultaat]][Kunstwerk4->[Opmerkingen][Invoer][Resultaat]][Nieuwe berekening->[Opmerkingen][Invoer][Resultaat]]] + + 18,21,32 + + 13-16 + + 0,1,2,3 +
+
+ + + + calculationName + + + rowIndexOnRightTableCalculationsView + + + rangeLoopParametersInPropertiesPanel + + + rangeLoopParametersInTableCalculationsView + + + fmLabel + + + originalDefiingItem + + + temporaryNewDefiningItem + + + pathToDefiningItemInPP + + + shortPathToDefiningItemInPP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ calculationName + + rowIndexOnRightTableCalculationsView + + rangeLoopParametersInPropertiesPanel + + rangeLoopParametersInTableCalculationsView + + fmLabel + + originalDefiingItem + + temporaryNewDefiningItem + + pathToDefiningItemInPP + + shortPathToDefiningItemInPP +
+ 12_2_02500 Segment_12004_1D1 + + 0 + + 1-4 + + 1 + + STPH + + Segment_12004_1D1 + + Segment_12004_1D3 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ 12_2_02500 Segment_12004_1D2 + + 1 + + 1-4 + + 2 + + STPH + + Segment_12004_1D2 + + Segment_12004_1D1 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ 12_2_02500 Segment_12004_1D3 + + 2 + + 1-4 + + 3 + + STPH + + Segment_12004_1D3 + + Segment_12004_1D2 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ profiel001 + + 0 + + 5 + + 4 + + GEKB + + profiel001 + + profiel005 + + Schematisatie>Dijkprofiel + + Dijkprofiel +
+ profiel002 + + 0 + + 5 + + 5 + + GEKB + + profiel002 + + profiel001 + + Schematisatie>Dijkprofiel + + Dijkprofiel +
+ profiel003 + + 0 + + 5 + + 6 + + GEKB + + profiel003 + + profiel002 + + Schematisatie>Dijkprofiel + + Dijkprofiel +
+ profiel004 + + 0 + + 5 + + 7 + + GEKB + + profiel004 + + profiel003 + + Schematisatie>Dijkprofiel + + Dijkprofiel +
+ profiel005 + + 0 + + 5 + + 8 + + GEKB + + profiel005 + + profiel004 + + Schematisatie>Dijkprofiel + + Dijkprofiel +
+ Vak_41-123 Vak_41-123_Segment_41009_1D2 + + 0 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D2 + + Vak_41-123_Segment_41009_1D5 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D3 + + 1 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D3 + + Vak_41-123_Segment_41009_1D2 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D4 + + 2 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D4 + + Vak_41-123_Segment_41009_1D3 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D6 + + 3 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D6 + + Vak_41-123_Segment_41009_1D4 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D7 + + 4 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D7 + + Vak_41-123_Segment_41009_1D6 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D1 + + 5 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D1 + + Vak_41-123_Segment_41009_1D7 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D8 + + 6 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D8 + + Vak_41-123_Segment_41009_1D1 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ Vak_41-123 Vak_41-123_Segment_41009_1D5 + + 7 + + 6-19 + + 9 + + STBI + + Vak_41-123_Segment_41009_1D5 + + Vak_41-123_Segment_41009_1D8 + + Schematisatie>Ondergrondschematisatie + + Ondergrondschematisatie +
+ 'Keersluis Cuijk' + + 0 + + 20-21 + + 10 + + HTKW + + 'Keersluis Cuijk' + + 'Gemaal van Sasse' + + Algemeen>Kunstwerk + + Kunstwerk +
+ 'Gemaal van Sasse' + + 0 + + 22-23 + + 11 + + HTKW + + 'Gemaal van Sasse' + + 'Keersluis Cuijk' + + Algemeen>Kunstwerk + + Kunstwerk +
+ 'Amersluis' + + 0 + + 24-25 + + 12 + + BSKW + + 'Amersluis' + + 'Gemaal Hollandsch Diep' + + Algemeen>Kunstwerk + + Kunstwerk +
+ 'Gemaal Schuddebeurs' + + 0 + + 26-27 + + 13 + + BSKW + + 'Gemaal Schuddebeurs' + + 'Amersluis' + + Algemeen>Kunstwerk + + Kunstwerk +
+ 'Gemaal Hollandsch Diep' + + 0 + + 28 + + 14-15 + + BSKW + + 'Gemaal Hollandsch Diep' + + 'Gemaal Schuddebeurs' + + Algemeen>Kunstwerk + + Kunstwerk +
+ Kunstwerk1 + + 0 + + 29-30 + + 16 + + STKWp + + Kunstwerk1 + + Kunstwerk4 + + Algemeen>Kunstwerk + + Kunstwerk +
+ Kunstwerk2 + + 0 + + 31-32 + + 17 + + STKWp + + Kunstwerk2 + + Kunstwerk1 + + Algemeen>Kunstwerk + + Kunstwerk +
+ Kunstwerk3 + + 0 + + 33-35 + + 18 + + STKWp + + Kunstwerk3 + + Kunstwerk2 + + Algemeen>Kunstwerk + + Kunstwerk +
+ Kunstwerk4 + + 0 + + 36-38 + + 19 + + STKWp + + Kunstwerk4 + + Kunstwerk3 + + Algemeen>Kunstwerk + + Kunstwerk +
+
+ + + + pathToParameterInPropertiesPanel + + + newValue + + + typeParameter + + + labelFM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ pathToParameterInPropertiesPanel + + newValue + + typeParameter + + labelFM +
+ Hydraulische gegevens>Dempingsfactor bij uittredepunt>Verwachtingswaarde + + 0.71 + + Double + + STPH +
+ Hydraulische gegevens>Dempingsfactor bij uittredepunt>Standaardafwijking + + 0.071 + + Double + + STPH +
+ Hydraulische gegevens>Binnendijkse waterstand>Verwachtingswaarde + + -2.83 + + Double + + STPH +
+ Hydraulische gegevens>Binnendijkse waterstand>Standaardafwijking + + 0.054 + + Double + + STPH +
+ Sterkte berekening>Illustratiepunten inlezen + + True + + Text + + GEKB +
+ Hydraulische gegevens>Waterspanningen>Gemiddeld hoog water + + 12 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>PL 1 initiële hoogte onder buitenkruin [m+NAP] + + 12 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>PL 1 initiële hoogte onder binnenkruin [m+NAP] + + 12 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Leklengte buitenwaarts PL 3 [m] + + 100 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Leklengte binnenwaarts PL 3 [m] + + 100 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Leklengte buitenwaarts PL 4 [m] + + 100 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Leklengte binnenwaarts PL 4 [m] + + 100 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Stijghoogte PL 2 buitenwaarts [m+NAP] + + 10 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Stijghoogte PL 2 binnenwaarts [m+NAP] + + 10 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Extreme omstandigheden>Polderpeil [m+NAP] + + 8 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Extreme omstandigheden>Indringingslengte [m] + + 2 + + Double + + STBI +
+ Hydraulische gegevens>Waterspanningen>Dagelijkse omstandigheden>Polderpeil [m+NAP] + + 8 + + Double + + STBI +
+ Instellingen>Minimale glijvlakdiepte [m] + + 2 + + Double + + STBI +
+ Instellingen>Minimale glijvlaklengte [m] + + 3 + + Double + + STBI +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel3 + + DropDown + + HTKW +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + HTKW +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel4 + + DropDown + + HTKW +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + HTKW +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel2 + + DropDown + + BSKW +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + BSKW +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel3 + + DropDown + + BSKW +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + BSKW +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + BSKW +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel1 + + DropDown + + STKWp +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + STKWp +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel2 + + DropDown + + STKWp +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + STKWp +
+ Bezwijken waterkerende constructie-onderdelen>Belastingschematisering + + Kwadratisch + + Text + + STKWp +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel3 + + DropDown + + STKWp +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + STKWp +
+ Bezwijken waterkerende constructie-onderdelen>Belastingschematisering + + Kwadratisch + + Text + + STKWp +
+ Voorland en (haven)dam>Voorlandprofiel + + profiel4 + + DropDown + + STKWp +
+ Uitvoer>Illustratiepunten inlezen + + True + + Text + + STKWp +
+
+ + + + nameParameter + + + valueParameter + + + fmLabel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ nameParameter + + valueParameter + + fmLabel +
+ Hydraulische belastingenlocatie + + YM_1_12-2_dk_00022 (674 m) + + STPH +
+ Hydraulische belastingenlocatie + + YM_1_12-2_dk_00022 (674 m) + + STPH +
+ Hydraulische belastingenlocatie + + YM_1_12-2_dk_00022 (674 m) + + STPH +
+ Hydraulische belastingenlocatie + + YM_2_12-2_dk_00012 (1,5 km) + + GEKB +
+ Hydraulische belastingenlocatie + + YM_2_12-2_dk_00035 (555 m) + + GEKB +
+ Hydraulische belastingenlocatie + + YM_2_12-2_dk_00125 (9,7 km) + + GEKB +
+ Hydraulische belastingenlocatie + + YM_2_12-2_dk_00072 (1,9 km) + + GEKB +
+ Hydraulische belastingenlocatie + + YM_2_12-2_dk_00076 (5,7 km) + + GEKB +
+ Hydraulische belastingenlocatie + + 041-01_0113_1_WA_km0892 (294 m) + + STBI +
+ Hydraulische belastingenlocatie + + MA_1_36-2_dk_00212 (59 m) + + HTKW +
+ Hydraulische belastingenlocatie + + MA_1_36-2_dk_00308 (74 m) + + HTKW +
+ Hydraulische belastingenlocatie + + 034-01_0170_9_AM_km0259 (60 m) + + BSKW +
+ Hydraulische belastingenlocatie + + 034-01_0217_9_HD_km0980 (64 m) + + BSKW +
+ Hydraulische belastingenlocatie + + 034-01_0230_9_HD_km0981 (61 m) + + BSKW +
+ Voorlandprofiel + + profiel4 + + BSKW +
+ Hydraulische belastingenlocatie + + MM_3_13a-1_vl07_00001 (421 m) + + STKWp +
+ Hydraulische belastingenlocatie + + MM_3_44-2_vl05_00001 (1,3 km) + + STKWp +
+ Hydraulische belastingenlocatie + + MM_3_44-2_vl05_00001 (1,2 km) + + STKWp +
+ Hydraulische belastingenlocatie + + MM_3_44-2_hd05_00001 (1,7 km) + + STKWp +
+
+ + + + nameSection + + + indexSection + + + rangeLoopCalculationsForEachSection + + + fmLabel + + + originalDefiningSchemtizationItem + + + temporaryNewItem + + + pathToDefiningSchematizationItemInPP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ nameSection + + indexSection + + rangeLoopCalculationsForEachSection + + fmLabel + + originalDefiningSchemtizationItem + + temporaryNewItem + + pathToDefiningSchematizationItemInPP +
+ 12_2_02500 + + 2 + + 1-3 + + STPH + + + +
+ profiel001 + + 0 + + 4 + + GEKB + + + +
+ profiel002 + + 1 + + 5 + + GEKB + + + +
+ profiel003 + + 2 + + 6 + + GEKB + + + +
+ profiel004 + + 3 + + 7 + + GEKB + + + +
+ profiel005 + + 4 + + 8 + + GEKB + + + +
+ 41-123 + + 23 + + 9-16 + + STBI + + + +
+ 36-2_2 + + 2 + + 17 + + HTKW + + 'Keersluis Cuijk' + + 'Gemaal van Sasse' + + Algemeen>Kunstwerk +
+ 36-2_23 + + 23 + + 18 + + HTKW + + 'Gemaal van Sasse' + + 'Keersluis Cuijk' + + Algemeen>Kunstwerk +
+ 34-1_34 + + 34 + + 19 + + BSKW + + 'Amersluis' + + 'Gemaal Hollandsch Diep' + + Algemeen>Kunstwerk +
+ 34-1_43 + + 43 + + 20 + + BSKW + + 'Gemaal Schuddebeurs' + + 'Amersluis' + + Algemeen>Kunstwerk +
+ 34-1_46 + + 46 + + 21 + + BSKW + + 'Gemaal Hollandsch Diep' + + 'Gemaal Schuddebeurs' + + Algemeen>Kunstwerk +
+ 44-2_14 + + 14 + + 22 + + STKWp + + Kunstwerk1 + + Kunstwerk2 + + Algemeen>Kunstwerk +
+ 44-2_17 + + 17 + + 23 + + STKWp + + Kunstwerk2 + + Kunstwerk3 + + Algemeen>Kunstwerk +
+ 44-2_21 + + 21 + + 24 + + STKWp + + Kunstwerk3 + + Kunstwerk4 + + Algemeen>Kunstwerk +
+ 44-2_25 + + 25 + + 25 + + STKWp + + Kunstwerk4 + + Kunstwerk1 + + Algemeen>Kunstwerk +
+
+ + + + fmLabel + + + pathToResultItem + + + pathToReferenceCSVFile + + + pathToVakindelingInProjectExplorer + + + group + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ fmLabel + + pathToResultItem + + pathToReferenceCSVFile + + pathToVakindelingInProjectExplorer + + group +
+ STPH + + Traject 50-1>Dijken en dammen - Piping>Oordeel>Resultaat + + X:\script22\reference\Traject_50-1_Dijken_en_dammen_-_Piping_Oordeel_Resultaat.csv + + Traject 50-1>Dijken en dammen - Piping>Invoer>Vakindeling + + 2 +
+ GEKB + + Traject 50-1>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Oordeel>Resultaat + + X:\script22\reference\Traject_50-1_Dijken_en_dammen_-_Grasbekleding_erosie_kruin_en_binnentalud_Oordeel_Resultaat.csv + + Traject 50-1>Dijken en dammen - Grasbekleding erosie kruin en binnentalud>Invoer>Vakindeling + + 1 +
+ STMI + + Traject 50-1>Dijken en dammen - Microstabiliteit>Oordeel>Resultaat + + X:\script22\reference\Traject_50-1_Dijken_en_dammen_-_Microstabiliteit_Oordeel_Resultaat.csv + + Traject 50-1>Dijken en dammen - Microstabiliteit>Invoer>Vakindeling + + 4 +
+ ZST + + Traject 50-1>Dijken en dammen - Stabiliteit steenzetting>Oordeel>Resultaat + + X:\script22\reference\Traject_50-1_Dijken_en_dammen_-_Stabiliteit_steenzetting_Oordeel_Resultaat.csv + + Traject 50-1>Dijken en dammen - Stabiliteit steenzetting>Invoer>Vakindeling + + 3 +
+ BSKW + + Traject 50-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Oordeel>Resultaat + + X:\script22\reference\Traject_50-1_Kunstwerken_-_Betrouwbaarheid_sluiting_kunstwerk_Oordeel_Resultaat.csv + + Traject 50-1>Kunstwerken - Betrouwbaarheid sluiting kunstwerk>Invoer>Vakindeling + + 1 +
+
+ + + + iterationLabel + + + indexRow + + + substringColumnHeader + + + expectedValue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ iterationLabel + + indexRow + + substringColumnHeader + + expectedValue +
+ Vaknummer 1, Gecombineerd vakoordeel + + 0 + + Gecombineerd + + VIv +
+ Vaknummer 1, STPH vakoordeel + + 0 + + STPH + + VIv +
+ Vaknummer 2, Gecombineerd vakoordeel + + 1 + + Gecombineerd + + VIv +
+ Vaknummer 2, STPH vakoordeel + + 1 + + STPH + + VIv +
+ Vaknummer 3, Gecombineerd vakoordeel + + 2 + + Gecombineerd + + VIv +
+ Vaknummer 3, STPH vakoordeel + + 2 + + STPH + + VIv +
+ Vaknummer 4, Gecombineerd vakoordeel + + 3 + + Gecombineerd + + VIv +
+ Vaknummer 4, STPH vakoordeel + + 3 + + STPH + + VIv +
+ Vaknummer 5, Gecombineerd vakoordeel + + 4 + + Gecombineerd + + VIv +
+ Vaknummer 5, STPH vakoordeel + + 4 + + STPH + + VIv +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Newtonsoft.Json.dll + + + Ranorex Automation Helpers.dll + + +
Fisheye: Tag cb224d44e8112cf33e20c83b2221ff5b53a8e11e refers to a dead (removed) revision in file `System tests/AutomatedSystemTests/AutomatedSystemTests/WorkOnProgressDavid.rxtst'. Fisheye: No comparison available. Pass `N' to diff?