Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs =================================================================== diff -u -r06abcaadc2936c0bf3fde73916c051f37f698505 -ref2c6cb7afd29e17ada49f5a18b9e21968122232 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision 06abcaadc2936c0bf3fde73916c051f37f698505) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision ef2c6cb7afd29e17ada49f5a18b9e21968122232) @@ -31,24 +31,6 @@ /// public class PipingProbabilityAssessmentInput : IStorable { - private readonly NormDependentFactorCollection heaveNormDependentFactorCollection = new NormDependentFactorCollection( - Tuple.Create(100, 0.16), - Tuple.Create(300, 0.15), - Tuple.Create(1000, 0.13), - Tuple.Create(3000, 0.12), - Tuple.Create(10000, 0.11), - Tuple.Create(30000, 0.10), - Tuple.Create(300000, 0.09)); - - private readonly NormDependentFactorCollection sellmeijerNormDependentFactorCollection = new NormDependentFactorCollection( - Tuple.Create(100, 0.32), - Tuple.Create(300, 0.28), - Tuple.Create(1000, 0.24), - Tuple.Create(3000, 0.21), - Tuple.Create(10000, 0.19), - Tuple.Create(30000, 0.17), - Tuple.Create(300000, 0.13)); - private double a; private RoundedDouble upliftCriticalSafetyFactor; @@ -121,27 +103,5 @@ public double SectionLength { get; set; } public long StorageId { get; set; } - - /// - /// Gets the norm dependent factor which is used in the relation between safety factor and reliability index - /// for the Sellmeijer failure mechanism. - /// - /// The norm for which to obtain the factor. - /// A factor which can be used in a semi-probabilistic assessment. - public RoundedDouble GetSellmeijerNormDependentFactor(int norm) - { - return new RoundedDouble(2, sellmeijerNormDependentFactorCollection.GetFactorFromNorm(norm)); - } - - /// - /// Gets the norm dependent factor which is used in the relation between safety factor and reliability index - /// for the heave failure mechanism. - /// - /// The norm for which to obtain the factor. - /// A factor which can be used in a semi-probabilistic assessment. - public RoundedDouble GetHeaveNormDependentFactor(int norm) - { - return new RoundedDouble(2, heaveNormDependentFactorCollection.GetFactorFromNorm(norm)); - } } } \ No newline at end of file