Index: Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/GeneralWaveImpactAsphaltCoverWaveConditionsInput.cs =================================================================== diff -u -r0f2a9f1a0422b2c4dbb39efb41f101d39c849d86 -r7ff7777db991e744cb7f4fc885613f1166b1a91a --- Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/GeneralWaveImpactAsphaltCoverWaveConditionsInput.cs (.../GeneralWaveImpactAsphaltCoverWaveConditionsInput.cs) (revision 0f2a9f1a0422b2c4dbb39efb41f101d39c849d86) +++ Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/GeneralWaveImpactAsphaltCoverWaveConditionsInput.cs (.../GeneralWaveImpactAsphaltCoverWaveConditionsInput.cs) (revision 7ff7777db991e744cb7f4fc885613f1166b1a91a) @@ -24,35 +24,32 @@ namespace Riskeer.WaveImpactAsphaltCover.Data { /// - /// Class that holds all the static wave conditions input parameters. + /// Class that holds all the static wave impact asphalt cover wave conditions input parameters. /// public class GeneralWaveImpactAsphaltCoverWaveConditionsInput { /// /// Creates a new instance of . /// - /// The 'a' parameter used in wave conditions calculations. - /// The 'b' parameter used in wave conditions calculations. - /// The 'c' parameter used in wave conditions calculations. - public GeneralWaveImpactAsphaltCoverWaveConditionsInput(double a, double b, double c) + public GeneralWaveImpactAsphaltCoverWaveConditionsInput() { - A = new RoundedDouble(2, a); - B = new RoundedDouble(2, b); - C = new RoundedDouble(2, c); + A = new RoundedDouble(2, 1.0); + B = new RoundedDouble(2); + C = new RoundedDouble(2); } /// - /// Gets the 'a' parameter used in wave conditions calculations. + /// Gets the 'a' parameter used in wave impact asphalt cover wave conditions calculations. /// public RoundedDouble A { get; } /// - /// Gets the 'b' parameter used in wave conditions calculations. + /// Gets the 'b' parameter used in wave impact asphalt cover wave conditions calculations. /// public RoundedDouble B { get; } /// - /// Gets the 'c' parameter used in wave conditions calculations. + /// Gets and sets the 'c' parameter used in wave impact asphalt cover wave conditions calculations. /// public RoundedDouble C { get; set; } } Index: Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs =================================================================== diff -u -r0f2a9f1a0422b2c4dbb39efb41f101d39c849d86 -r7ff7777db991e744cb7f4fc885613f1166b1a91a --- Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs (.../WaveImpactAsphaltCoverFailureMechanism.cs) (revision 0f2a9f1a0422b2c4dbb39efb41f101d39c849d86) +++ Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs (.../WaveImpactAsphaltCoverFailureMechanism.cs) (revision 7ff7777db991e744cb7f4fc885613f1166b1a91a) @@ -48,7 +48,7 @@ Name = RiskeerCommonDataResources.HydraulicBoundaryConditions_DisplayName }; ForeshoreProfiles = new ForeshoreProfileCollection(); - GeneralInput = new GeneralWaveImpactAsphaltCoverWaveConditionsInput(1.0, 0.0, 0.0); + GeneralInput = new GeneralWaveImpactAsphaltCoverWaveConditionsInput(); CalculationsInputComments = new Comment(); }