using System; namespace StructureHelperCommon.Models.Forces { /// /// Interface for generic force for beams /// public interface IForceTuple : ICloneable { /// /// Bending moment round about x-axis /// double Mx { get; set; } /// /// Bending moment round about y-axis /// double My { get; set; } /// /// Longitudinal force along x-axis /// double Nz { get; set; } /// /// Shear force along x-axis /// double Qx { get; set; } /// /// Shear force along z-axis /// double Qy { get; set; } /// /// Twisting moment round about z-axis /// double Mz { get; set; } } }