19 lines
495 B
C#
19 lines
495 B
C#
using LoaderCalculator.Data.Ndms;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
internal interface ICrackedLogic
|
|
{
|
|
IForceTuple StartTuple { get; set; }
|
|
IForceTuple EndTuple { get; set; }
|
|
IEnumerable<INdm> NdmCollection { get; set; }
|
|
bool IsSectionCracked(double factor);
|
|
}
|
|
}
|