using StructureHelperLogics.NdmCalculations.Analyses; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Buckling { /// /// Results of calculation of buckling of reinforced concrete section /// public interface IConcreteBucklingResult : INdmResult { /// /// Factor of increasing of bending moment (p-delta effect) in the plain XOZ /// double EtaFactorAlongX { get; set; } /// /// Factor of increasing of bending moment (p-delta effect) in the plain YOZ /// double EtaFactorAlongY { get; set; } } }