// Copyright (C) Stichting Deltares 2021. 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.
namespace Deltares.DamEngine.Data.General
{
///
/// Types of (calculation) models for Stability.
///
public enum MStabModelType
{
Bishop,
Spencer,
Fellenius,
UpliftVan,
UpliftSpencer,
BishopRandomField,
HorizontalBalance,
BishopUpliftVan,
SpencerHigh, // #Bka added SpencerHigh/SpencerLow as quick fix. Should be replaced with options for Spencer later! These enums should be removed.
SpencerLow,
BishopWti, // #Bka: for now, only UpliftVanWti is to be used of all Wti options.
UpliftSpencerWti
}
///
/// Types of Intrusion Vertical Water Pressures
///
public enum IntrusionVerticalWaterPressureType
{
Standard,
Linear,
FullHydroStatic,
HydroStatic,
SemiTimeDependent
}
///
/// Types of MStab Shear Strength models
///
public enum MStabShearStrength
{
CPhi,
StressTables,
CuCalculated,
CuMeasured,
CuGradient,
Default
}
///
/// Types of MStab Search Methods
///
public enum MStabSearchMethod
{
Grid,
GeneticAlgorithm
}
///
/// Types of MStab Grid Positions
///
public enum MStabGridPosition
{
Left,
Right
}
///
/// Types of MStab Zones
///
public enum MStabZonesType
{
NoZones = 0,
ZoneAreas = 1,
ForbiddenZone = 2
}
///
/// Types of tangent lines definitions.
///
public enum TangentLinesDefinition
{
OnBoundaryLines = 0,
Specified = 1
}
///
/// Types of GridSize Determinations
///
public enum GridSizeDetermination
{
Automatic = 0,
Specified = 1
}
}