Add trace crack result

This commit is contained in:
Evgeny Redikultsev
2024-12-30 15:42:57 +05:00
parent ba70e0d214
commit 65253a907b
42 changed files with 685 additions and 125 deletions

View File

@@ -0,0 +1,24 @@
using StructureHelperCommon.Models.Calculators;
using StructureHelperLogics.NdmCalculations.Primitives;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
/// <summary>
/// Result of calculation of crack for specific result
/// </summary>
public interface IRebarCrackResult : IResult
{
/// <summary>
/// Specific rebar primitive
/// </summary>
IRebarNdmPrimitive? RebarPrimitive { get; set; }
/// <summary>
/// Result of calculation of crack for long term
/// </summary>
CrackWidthRebarTupleResult? LongTermResult { get; set; }
/// <summary>
/// Result of calculation of crack for short term
/// </summary>
CrackWidthRebarTupleResult? ShortTermResult { get; set; }
}
}