using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { /// /// Interface for generic curvature for beams /// public interface IStrainTuple : ICloneable { /// /// Curvature about x-axis /// double Kx { get; set; } /// /// Curvature about y-axis /// double Ky { get; set; } /// /// Strain along z-axis /// double EpsZ { get; set; } /// /// Screw along x-axis /// double Gx { get; set; } /// /// Screw along y-axis /// double Gy { get; set; } /// /// Twisting about z-axis /// double Gz { get; set; } } }