Index: Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/SubCalculator/ISellmeijerCalculator.cs
===================================================================
diff -u -rc2fe76d04e1517a4e0aaf62184bccd413de0e472 -r89488cc05b12fd5720cd28a4eeeb001dc9b1456d
--- Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/SubCalculator/ISellmeijerCalculator.cs (.../ISellmeijerCalculator.cs) (revision c2fe76d04e1517a4e0aaf62184bccd413de0e472)
+++ Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/SubCalculator/ISellmeijerCalculator.cs (.../ISellmeijerCalculator.cs) (revision 89488cc05b12fd5720cd28a4eeeb001dc9b1456d)
@@ -1,5 +1,26 @@
-using System.Collections.Generic;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+using System.Collections.Generic;
+
namespace Ringtoets.Piping.KernelWrapper.SubCalculator
{
///
@@ -8,82 +29,82 @@
public interface ISellmeijerCalculator
{
///
- /// Sets the BeddingAngle property to use in the Sellmeijer calculation
+ /// Sets the BeddingAngle property to use in the Sellmeijer calculation.
///
double BeddingAngle { set; }
///
- /// Sets the D70 to use in the Sellmeijer calculation
+ /// Sets the D70 property to use in the Sellmeijer calculation.
///
double D70 { set; }
///
- /// Sets the D70Mean property to use in the Sellmeijer calculation
+ /// Sets the D70Mean property to use in the Sellmeijer calculation.
///
double D70Mean { set; }
///
- /// Sets the DAquifer property to use in the Sellmeijer calculation
+ /// Sets the DAquifer property to use in the Sellmeijer calculation.
///
double DAquifer { set; }
///
- /// Sets the DarcyPermeability property to use in the Sellmeijer calculation
+ /// Sets the DarcyPermeability property to use in the Sellmeijer calculation.
///
double DarcyPermeability { set; }
///
- /// Sets the DTotal property to use in the Sellmeijer calculation
+ /// Sets the DTotal property to use in the Sellmeijer calculation.
///
double DTotal { set; }
///
- /// Sets the GammaSubParticles property to use in the Sellmeijer calculation
+ /// Sets the GammaSubParticles property to use in the Sellmeijer calculation.
///
double GammaSubParticles { set; }
///
- /// Sets the Gravity property to use in the Sellmeijer calculation
+ /// Sets the Gravity property to use in the Sellmeijer calculation.
///
double Gravity { set; }
///
- /// Sets the HExit property to use in the Sellmeijer calculation
+ /// Sets the HExit property to use in the Sellmeijer calculation.
///
double HExit { set; }
///
- /// Sets the HRiver property to use in the Sellmeijer calculation
+ /// Sets the HRiver property to use in the Sellmeijer calculation.
///
double HRiver { set; }
///
- /// Sets the KinematicViscosityWater property to use in the Sellmeijer calculation
+ /// Sets the KinematicViscosityWater property to use in the Sellmeijer calculation.
///
double KinematicViscosityWater { set; }
///
- /// Sets the ModelFactorPiping property to use in the Sellmeijer calculation
+ /// Sets the ModelFactorPiping property to use in the Sellmeijer calculation.
///
double ModelFactorPiping { set; }
///
- /// Sets the Rc property to use in the Sellmeijer calculation
+ /// Sets the Rc property to use in the Sellmeijer calculation.
///
double Rc { set; }
///
- /// Sets the SeepageLength property to use in the Sellmeijer calculation
+ /// Sets the SeepageLength property to use in the Sellmeijer calculation.
///
double SeepageLength { set; }
///
- /// Sets the VolumetricWeightOfWater property to use in the Sellmeijer calculation
+ /// Sets the VolumetricWeightOfWater property to use in the Sellmeijer calculation.
///
double VolumetricWeightOfWater { set; }
///
- /// Sets the WhitesDragCoefficient property to use in the Sellmeijer calculation
+ /// Sets the WhitesDragCoefficient property to use in the Sellmeijer calculation.
///
double WhitesDragCoefficient { set; }
@@ -105,6 +126,7 @@
///
/// Performs the Sellmeijer validation.
///
+ /// A list of validation strings.
List Validate();
}
}
\ No newline at end of file