// 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;
using Deltares.DamEngine.Data.General;
using Deltares.DamEngine.Data.Geotechnics;
namespace Deltares.DamEngine.Calculators.KernelWrappers.Common;
///
/// Input that all dam kernels share
///
public class DamKernelInput
{
///
/// Gets or sets the calculation directory.
///
///
/// The calculation directory.
///
public string CalculationDir { get; set; }
///
/// Gets or sets the project directory.
///
///
/// The project directory.
///
public string ProjectDir { get; set; }
///
/// Gets or sets the location.
///
///
/// The location.
///
public Location Location { get; set; }
///
/// Gets or sets the filename prefix.
///
///
/// The filename prefix.
///
public string FilenamePrefix { get; set; }
///
/// Gets or sets the sub soil scenario.
///
///
/// The sub soil scenario.
///
public SoilGeometryProbability SubSoilScenario { get; set; }
///
/// Gets or sets the date time (for operational calculation)
///
///
/// The date time.
///
public DateTime TimeStepDateTime { get; set; }
///
/// The high river level
///
public double RiverLevelHigh { get; set; }
///
/// The low river level
///
public double? RiverLevelLow { get; set; }
///
/// Gets or sets the dam failure mechanism calculation specification.
///
///
/// The dam failure mechanism calculation specification.
///
public DamFailureMechanismeCalculationSpecification DamFailureMechanismeCalculationSpecification { get; set; }
///
/// Gets or sets the current embankment soil (either DikeEmbakmentSoil or ShoulderEmbankmentSoil).
///
///
/// The current embankment soil.
///
public Soil CurrentEmbankmentSoil { get; set; }
///
/// Gets or sets the original soil profile 2D.
/// Used during the design process to restore the original soil profile 2D.
///
public SoilProfile2D OriginalSoilProfile2D { get; set; }
}