Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs
===================================================================
diff -u -rfb6c8cb473282ccd9b920afddb33a2284c7274cd -rbea6e87ff7f6b40ff9fcce4d46ccb55bb3b47535
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs (.../GeneralStabilityStoneCoverWaveConditionsInput.cs) (revision fb6c8cb473282ccd9b920afddb33a2284c7274cd)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs (.../GeneralStabilityStoneCoverWaveConditionsInput.cs) (revision bea6e87ff7f6b40ff9fcce4d46ccb55bb3b47535)
@@ -19,6 +19,8 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Ringtoets.Revetment.Data;
+
namespace Ringtoets.StabilityStoneCover.Data
{
///
@@ -31,43 +33,18 @@
///
public GeneralStabilityStoneCoverWaveConditionsInput()
{
- ABlocks = 1.0;
- BBlocks = 1.0;
- CBlocks = 1.0;
-
- AColumns = 1.0;
- BColumns = 0.4;
- CColumns = 0.8;
+ GeneralBlocksWaveConditionsInput = new GeneralWaveConditionsInput(1.0, 1.0, 1.0);
+ GeneralColumnsWaveConditionsInput = new GeneralWaveConditionsInput(1.0, 0.4, 0.8);
}
///
- /// Gets the 'a' parameter used in wave conditions calculations for blocks.
+ /// Gets the general input parameter used in wave conditions calculations for blocks.
///
- public double ABlocks { get; private set; }
+ public GeneralWaveConditionsInput GeneralBlocksWaveConditionsInput { get; private set; }
///
- /// Gets the 'b' parameter used in wave conditions calculations for blocks.
+ /// Gets the general input parameter used in wave conditions calculations for columns.
///
- public double BBlocks { get; private set; }
-
- ///
- /// Gets the 'c' parameter used in wave conditions calculations for blocks.
- ///
- public double CBlocks { get; private set; }
-
- ///
- /// Gets the 'a' parameter used in wave conditions calculations for columns.
- ///
- public double AColumns { get; private set; }
-
- ///
- /// Gets the 'b' parameter used in wave conditions calculations for columns.
- ///
- public double BColumns { get; private set; }
-
- ///
- /// Gets the 'c' parameter used in wave conditions calculations for columns.
- ///
- public double CColumns { get; private set; }
+ public GeneralWaveConditionsInput GeneralColumnsWaveConditionsInput { get; private set; }
}
}
\ No newline at end of file