// 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.Collections.Generic;
using Deltares.DamEngine.Data.Geometry;
using Deltares.DamEngine.Data.Geotechnics;
namespace Deltares.DamEngine.Data.General.Results;
///
/// Class holding the results for the Stability design calculation
///
public class StabilityDesignResults
{
///
/// Gets or sets the number of iterations.
///
///
/// The number of iterations.
///
public int? NumberOfIterations { get; set; }
///
/// Gets or sets the result message.
///
///
/// The result message.
///
public string ResultMessage { get; set; } = "";
///
/// Gets or sets the stability safety factor.
///
///
/// The stability safety factor.
///
public double? SafetyFactor { get; set; }
///
/// Gets or sets the local entry point x.
///
///
/// The local entry point x.
///
public double? LocalEntryPointX { get; set; }
///
/// Gets or sets the local exit point x.
///
///
/// The local exit point x.
///
public double? LocalExitPointX { get; set; }
///
/// Gets or sets the uplift situation.
///
///
/// The uplift situation.
///
public UpliftSituation? UpliftSituation { get; set; }
///
/// Gets or sets the redesigned surface line stability.
///
///
/// The redesigned surface line stability.
///
public SurfaceLine2 RedesignedSurfaceLine { 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; }
}