// Copyright (C) Stichting Deltares 2024. All rights reserved. // // This file is part of the Dam Engine. // // The Dam Engine is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero 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 Affero General Public License for more details. // // You should have received a copy of the GNU Affero 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 Deltares.DamEngine.Data.Standard; using Deltares.DamEngine.Data.Standard.Language; namespace Deltares.DamEngine.Data.Geotechnics; /// /// Soil class, representing a specific soil material and its properties /// [Serializable] public class Soil : IName { // Soil properties private string name = ""; /// /// Initializes a new instance of the class. /// public Soil() { Name = LocalizationManager.GetTranslatedText(this, "DefaultNameSoilMaterial"); } /// /// Initializes a new instance of the class. /// /// The name. /// Unit weight below phreatic level /// Unit weight above phreatic level public Soil(string name, double belowPhreaticLevel, double abovePhreaticLevel) : this() { Name = name; AbovePhreaticLevel = abovePhreaticLevel; BelowPhreaticLevel = belowPhreaticLevel; } /// /// Initializes a new instance of the class. /// /// The name. public Soil(string name) : this() { Name = name; } /// /// Assigns the properties of aSoil to this Soil. /// /// a soil. public void Assign(Soil aSoil) { name = aSoil.Name; DiameterD70 = aSoil.DiameterD70; PermeabKx = aSoil.PermeabKx; ShearStrengthModel = aSoil.ShearStrengthModel; BelowPhreaticLevel = aSoil.BelowPhreaticLevel; AbovePhreaticLevel = aSoil.AbovePhreaticLevel; Cohesion = aSoil.Cohesion; FrictionAngle = aSoil.FrictionAngle; PoP = aSoil.PoP; Ocr = aSoil.Ocr; RatioCuPc = aSoil.RatioCuPc; StrengthIncreaseExponent = aSoil.StrengthIncreaseExponent; SigmaTauCurve = new SigmaTauCurve(); if ((ShearStrengthModel == Geotechnics.ShearStrengthModel.SigmaTauCurve) && (aSoil.SigmaTauCurve != null)) { SigmaTauCurve.Assign(aSoil.SigmaTauCurve); } SuTableCurve = new SuTableCurve(); if ((ShearStrengthModel == Geotechnics.ShearStrengthModel.SuTable) && (aSoil.SuTableCurve != null)) { SuTableCurve.Assign(aSoil.SuTableCurve); } } #region property Name /// /// Gets or sets the name of the soil. /// public string Name { get { return name; } set { name = value; } } /// /// Returns a that represents this instance. /// /// /// A that represents this instance. /// public override string ToString() { return Name; } #endregion property Name #region property Weight /// /// Unit Weight below the phreatic level (kN/m3) /// public double BelowPhreaticLevel { get; set; } = double.NaN; /// /// Unit Weight above the phreatic level (kN/m3) /// public double AbovePhreaticLevel { get; set; } = double.NaN; #endregion #region Piping /// /// Diameter D70 (micrometer). /// /// /// The diameter D70. /// public double DiameterD70 { get; set; } = double.NaN; /// /// Horizontal permeability (m/s) /// /// /// The permeab kx. /// public double PermeabKx { get; set; } = double.NaN; #endregion #region Macrostability /// /// Cohesion (the force that holds together molecules or like particles within a soil) [kN/m2] /// public double Cohesion { get; set; } = double.NaN; /// /// Critical state friction angle (deg) /// public double FrictionAngle { get; set; } = double.NaN; /// /// Pre-overburden pressure (POP) /// Equal to pre-consolidation stress minus effective stress /// public double PoP { get; set; } = double.NaN; /// /// Over-consolidation ratio (OCR) /// public double Ocr { get; set; } = double.NaN; /// /// Ratio Cu/Pc /// public double RatioCuPc { get; set; } = double.NaN; /// Gets or sets the strength increase exponent. /// The strength increase exponent. public double StrengthIncreaseExponent { get; set; } = double.NaN; /// /// Shear strength model to use /// public ShearStrengthModel? ShearStrengthModel { get; set; } /// /// The sigma tau curve (for Shear Strength Model = SigmaTauCurve) /// public SigmaTauCurve SigmaTauCurve { get; set; } = new(); /// /// The su table (for Shear Strength Model = SuTable) /// public SuTableCurve SuTableCurve { get; set; } = new(); #endregion }