// Copyright (C) Stichting Deltares 2025. 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.Collections.Generic; using Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityCommon; using Deltares.DamEngine.Data.General; using Deltares.DamEngine.Data.General.Results; using Deltares.DamEngine.Data.Standard.Calculation; using Deltares.MacroStability.CSharpWrapper; using Point2D = Deltares.DamEngine.Data.Geometry.Point2D; using UpliftVanCalculationGrid = Deltares.MacroStability.CSharpWrapper.UpliftVanCalculationGrid; namespace Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityInwards; public class MacroStabilityOutputItem { /// /// Gets or sets the name of the project. /// /// /// The name of the project. /// public string ProjectName { get; set; } /// /// Gets or sets the calculation path. /// /// /// The calculation path. /// public string CalculationPath { get; set; } /// /// Gets or sets the calculation result. /// /// /// The calculation result. /// public CalculationResult CalculationResult { get; set; } /// /// Gets or sets the circle surface point right x coordinate /// /// /// The circle surface point right x coordinate /// public double CircleSurfacePointRightXCoordinate { get; set; } /// /// Gets or sets the safety factor. /// /// /// The safety factor. /// public double SafetyFactor { get; set; } /// /// Gets or sets the type of the stability model. /// /// /// The type of the stability model. /// public StabilityModelType StabilityModelType { get; set; } /// /// Gets or sets the location (X,Z) of the center point of the active slip circle. /// /// /// The location (X,Z) of the center point of the active slip circle. /// public Point2D ActiveCenterPoint { get; set; } /// /// Gets or sets the radius of the active slip circle. /// /// /// The radius of the active slip circle. /// public double ActiveCenterPointRadius { get; set; } /// /// Gets or sets the location (X,Z) of the center point of the passive slip circle. /// /// /// The location (X,Z) of the center point of the passive slip circle. /// public Point2D PassiveCenterPoint { get; set; } /// /// Gets or sets the radius of the passive slip circle. /// /// /// The radius of the passive slip circle. /// public double PassiveCenterPointRadius { get; set; } /// /// Gets or sets the result slices. /// /// /// The result slices. /// public List ResultSlices { get; set; } /// /// Gets or sets the Bishop calculation circle used for the input. /// /// /// The bishop calculation circle used for the input. /// public BishopCalculationGrid InputBishopCalculationGrid { get; set; } /// /// Gets or sets the Uplift Van calculation grid used for the input. /// /// /// The Uplift Van calculation grid used for the input. /// public MacroStabilityCommon.UpliftVanCalculationGrid InputUpliftVanCalculationGrid { get; set; } }