// 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; namespace Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityCommon; /// Parameters for the UpliftVan MacroStability kernel; used for IO public class BishopCalculationGrid { /// Gets or sets the IsSearchAreaAutomatic option. /// IsSearchAreaAutomatic. public bool IsSearchAreaAutomatic { get; set; } /// Gets or sets the grid x left. /// The grid x left. public double GridXLeft { get; set; } /// Gets or sets the left grid x right. /// The grid x right. public double GridXRight { get; set; } /// Gets or sets the left grid z top. /// The grid z top. public double GridZTop { get; set; } /// Gets or sets the left grid z bottom. /// The grid z bottom. public double GridZBottom { get; set; } /// Gets or sets the left grid x count. /// The grid x count. public int GridXCount { get; set; } /// Gets or sets the left grid z count. /// The grid z count. public int GridZCount { get; set; } /// Gets or sets the tangent line z top. /// The tangent line z top. /// Gets or sets the tangent line creation automatic or specified. /// The tangent line creation setting . public bool IsTangentLinesAutomatic { get; set; } public double TangentLineZTop { get; set; } /// Gets or sets the tangent line z bottom. /// The tangent line z bottom. public double TangentLineZBottom { get; set; } /// Gets or sets the tangent line count. /// The tangent line count. public int TangentLineCount { get; set; } /// Gets or sets the tangent line levels. /// The tangent line levels. public List TangentLineLevels { get; set; } = new List(); }