namespace Deltares.Stability.Calculation
{
///
///
///
public static class Constants
{
///
/// Gets the grid data ID.
///
public static string GridDataID
{
get
{
return Inner.Constants.GridDataID;
}
}
///
/// Gets the name of the X left key.
///
///
/// The name of the X left key.
///
public static string XLeftKeyName
{
get
{
return Inner.Constants.XLeftTag;
}
}
///
/// Gets the name of the X right key.
///
///
/// The name of the X right key.
///
public static string XRightKeyName
{
get
{
return Inner.Constants.XRightTag;
}
}
///
/// Gets the name of the Z bottom key.
///
///
/// The name of the Z bottom key.
///
public static string ZBottomKeyName
{
get
{
return Inner.Constants.ZBottomTag;
}
}
///
/// Gets the name of the Z top key.
///
///
/// The name of the Z top key.
///
public static string ZTopKeyName
{
get
{
return Inner.Constants.ZTopTag;
}
}
///
/// Gets the name of the Z interval key.
///
///
/// The name of the Z interval key.
///
public static string ZIntervalKeyName
{
get
{
return Inner.Constants.ZIntervalTag;
}
}
///
/// Gets the name of the X interval key.
///
///
/// The name of the X interval key.
///
public static string XIntervalKeyName
{
get
{
return Inner.Constants.XIntervalTag;
}
}
///
/// Gets the no value safety factory.
///
///
/// The value is used as the start value. If this value remains after processing,
/// no calculations are done or something went wrong
///
public static double NoValueSafetyFactory
{
get
{
return Inner.Constants.CFMinStart;
}
}
}
}