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,31 @@
using StructureHelperCommon.Models.Calculators;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
/// <summary>
/// Result of crack calculation for specific force tuple
/// </summary>
public interface ITupleCrackResult : IResult
{
/// <summary>
/// Reference to input data for calculation
/// </summary>
TupleCrackInputData? InputData { get; set; }
/// <summary>
/// True if cross-section has been cracked under specific force combination
/// </summary>
bool IsCracked { get; set; }
/// <summary>
/// Result of calculation of crack width for long term force combination
/// </summary>
CrackWidthRebarTupleResult? LongTermResult { get; set; }
/// <summary>
/// Collection of resuls for specific rebars
/// </summary>
List<IRebarCrackResult>? RebarResults { get; }
/// <summary>
/// Result of calculation of crack width for short term force combination
/// </summary>
CrackWidthRebarTupleResult? ShortTermResult { get; set; }
}
}