// Copyright (C) Stichting Deltares 2017. 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; using Core.Common.Base.Data; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.MacroStabilityInwards.Forms.Properties; namespace Ringtoets.MacroStabilityInwards.Forms.Views { /// /// This class represents a row of . /// public class MacroStabilityInwardsSliceRow { /// /// Creates a new instance of . /// /// The to use. /// The index of the slice. /// Thrown when /// is null. public MacroStabilityInwardsSliceRow(MacroStabilityInwardsSlice slice, int index) { if (slice == null) { throw new ArgumentNullException(nameof(slice)); } Name = string.Format(Resources.MacroStabilityInwardsSlicesTable_Name_Slice_0, index); XCenter = slice.XCenter; ZCenterBottom = slice.ZCenterBottom; Width = slice.Width; ArcLength = slice.ArcLength; BottomAngle = slice.BottomAngle; TopAngle = slice.TopAngle; FrictionAngle = slice.FrictionAngle; Cohesion = slice.Cohesion; EffectiveStress = slice.EffectiveStress; EffectiveStressDaily = slice.EffectiveStressDaily; TotalPorePressure = slice.TotalPorePressure; Weight = slice.Weight; PiezometricPorePressure = slice.PiezometricPorePressure; DegreeOfConsolidationPorePressureSoil = slice.DegreeOfConsolidationPorePressureSoil; DegreeOfConsolidationPorePressureLoad = slice.DegreeOfConsolidationPorePressureLoad; PorePressure = slice.PorePressure; VerticalPorePressure = slice.VerticalPorePressure; HorizontalPorePressure = slice.HorizontalPorePressure; ExternalLoad = slice.ExternalLoad; OverConsolidationRatio = slice.OverConsolidationRatio; Pop = slice.Pop; NormalStress = slice.NormalStress; ShearStress = slice.ShearStress; LoadStress = slice.LoadStress; } /// /// Gets the name of the slice. /// public string Name { get; } /// /// Gets the load stress of the slice. /// [kN/m²] /// public RoundedDouble LoadStress { get; } /// /// Gets the shear stress of the slice. /// [kN/m²] /// public RoundedDouble ShearStress { get; } /// /// Gets the normal stress of the slice. /// [kN/m²] /// public RoundedDouble NormalStress { get; } /// /// Gets the POP of the slice. /// [kN/m²] /// public RoundedDouble Pop { get; } /// /// Gets the over consolidation ratio of the slice. /// [-] /// public RoundedDouble OverConsolidationRatio { get; } /// /// Gets the external load of the slice. /// [kN/m²] /// public RoundedDouble ExternalLoad { get; } /// /// Gets the horizontal pressure of the slice. /// [kN/m²] /// public RoundedDouble HorizontalPorePressure { get; } /// /// Gets the vertical pore pressure of the slice. /// [kN/m²] /// public RoundedDouble VerticalPorePressure { get; } /// /// Gets the pore pressure of the slice. /// [kN/m²] /// public RoundedDouble PorePressure { get; } /// /// Gets the pore pressure from degree of consolidation load of the slice. /// [kN/m²] /// public RoundedDouble DegreeOfConsolidationPorePressureLoad { get; } /// /// Gets the pore pressure from degree of consolidation soil of the slice. /// [kN/m²] /// public RoundedDouble DegreeOfConsolidationPorePressureSoil { get; } /// /// Gets the piezometric pore pressure of the slice. /// [kN/m²] /// public RoundedDouble PiezometricPorePressure { get; } /// /// Gets the weight of the slice. /// [kN/m] /// public RoundedDouble Weight { get; } /// /// Gets the total pore pressure of the slice. /// [kN/m²] /// public RoundedDouble TotalPorePressure { get; } /// /// Gets the X center point of the slice. /// [m] /// public RoundedDouble XCenter { get; } /// /// Gets the Z center bottom point of the slice. /// [m+NAP] /// public RoundedDouble ZCenterBottom { get; } /// /// Gets the width of the slice. /// [m] /// public RoundedDouble Width { get; } /// /// Gets the arc length of the slice. /// [m] /// public RoundedDouble ArcLength { get; } /// /// Gets the top angle of the slice. /// [°] /// public RoundedDouble TopAngle { get; } /// /// Gets the bottom angle of the slice. /// [°] /// public RoundedDouble BottomAngle { get; } /// /// Gets the friction angle of the slice. /// [°] /// public RoundedDouble FrictionAngle { get; } /// /// Gets the cohesion of the slice. /// [kN/m²] /// public RoundedDouble Cohesion { get; } /// /// Gets the effective stress of the slice. /// [kN/m²] /// public RoundedDouble EffectiveStress { get; } /// /// Gets the effective stress of the slice under /// daily circumstances. /// [kN/m²] /// public RoundedDouble EffectiveStressDaily { get; } } }