// 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 Deltares.DamEngine.Data.Geotechnics; using NUnit.Framework; namespace Deltares.DamEngine.Data.Tests.Geotechnics; [TestFixture] public class SoilTests { [Test] public void GivenTwoSoilsWhenAssigningThenPropertiesAreAssignedCorrectly() { // Given var sourceSoil = new Soil("Source Soil", 10.0, 20.0) { DiameterD70 = 0.5, PermeabKx = 0.01, Cohesion = 5.0, FrictionAngle = 25.0, PoP = 100.0, Ocr = 1.5, RatioCuPc = 0.8, StrengthIncreaseExponent = 0.3, ShearStrengthModel = ShearStrengthModel.SigmaTauCurve, SigmaTauCurve = new SigmaTauCurve() }; sourceSoil.SigmaTauCurve.Points.Add(new SigmaTauPoint(1.0, 2.0)); sourceSoil.SigmaTauCurve.Points.Add(new SigmaTauPoint(3.0, 4.0)); var targetSoil = new Soil(); // When targetSoil.Assign(sourceSoil); Assert.Multiple(() => { // Then Assert.That(targetSoil.Name, Is.EqualTo(sourceSoil.Name)); Assert.That(targetSoil.DiameterD70, Is.EqualTo(sourceSoil.DiameterD70)); Assert.That(targetSoil.PermeabKx, Is.EqualTo(sourceSoil.PermeabKx)); Assert.That(targetSoil.Cohesion, Is.EqualTo(sourceSoil.Cohesion)); Assert.That(targetSoil.FrictionAngle, Is.EqualTo(sourceSoil.FrictionAngle)); Assert.That(targetSoil.PoP, Is.EqualTo(sourceSoil.PoP)); Assert.That(targetSoil.Ocr, Is.EqualTo(sourceSoil.Ocr)); Assert.That(targetSoil.RatioCuPc, Is.EqualTo(sourceSoil.RatioCuPc)); Assert.That(targetSoil.StrengthIncreaseExponent, Is.EqualTo(sourceSoil.StrengthIncreaseExponent)); Assert.That(targetSoil.ShearStrengthModel, Is.EqualTo(sourceSoil.ShearStrengthModel)); Assert.That(targetSoil.SigmaTauCurve.Points.Count, Is.EqualTo(sourceSoil.SigmaTauCurve.Points.Count)); }); for (var i = 0; i < sourceSoil.SigmaTauCurve.Points.Count; i++) { Assert.That(targetSoil.SigmaTauCurve.Points[i].Sigma, Is.EqualTo(sourceSoil.SigmaTauCurve.Points[i].Sigma)); Assert.That(targetSoil.SigmaTauCurve.Points[i].Tau, Is.EqualTo(sourceSoil.SigmaTauCurve.Points[i].Tau)); } } }