using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.NdmCalculations.Analyses.Curvatures
{
///
/// Implements properties for calculation deflections
///
public interface IDeflectionFactor : ISaveable
{
///
/// Factors for calculating deflections, dimensionless
///
IForceTuple DeflectionFactors { get; set; }
///
/// Maximum deflections, metres
///
double SpanLength { get; set; }
IForceTuple MaxDeflections { get; set; }
}
}