User data for cracks were added

This commit is contained in:
Evgeny Redikultsev
2024-05-18 15:51:59 +05:00
parent b32a7ce7df
commit 845929406e
31 changed files with 925 additions and 175 deletions

View File

@@ -9,10 +9,23 @@ using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
/// <summary>
/// Interface of logic of obtaining of length between cracks
/// </summary>
public interface ILengthBetweenCracksLogic : ILogic
{
/// <summary>
/// Full collection of ndm parts of cross-section
/// </summary>
IEnumerable<INdm> NdmCollection { get; set; }
/// <summary>
/// Strain matrix in cracked state
/// </summary>
IStrainMatrix StrainMatrix { get; set; }
/// <summary>
/// Returns length between cracks
/// </summary>
/// <returns>Length betwenn cracks</returns>
double GetLength();
}
}