Add trace crack result
This commit is contained in:
@@ -6,29 +6,27 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
//Copyright (c) 2024 Redikultsev Evgeny, Ekaterinburg, Russia
|
||||
//Copyright (c) 2025 Redikultsev Evgeny, Ekaterinburg, Russia
|
||||
//All rights reserved.
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Cracking
|
||||
{
|
||||
/// <summary>
|
||||
/// Result of crack calculation for specific force tuple
|
||||
/// </summary>
|
||||
public class TupleCrackResult : IResult
|
||||
/// <inheritdoc/>
|
||||
public class TupleCrackResult : ITupleCrackResult
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public bool IsValid { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public string Description { get; set; }
|
||||
public TupleCrackInputData InputData { get; set; }
|
||||
public string? Description { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public TupleCrackInputData? InputData { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public bool IsCracked { get; set; }
|
||||
public List<RebarCrackResult> RebarResults { get; private set; }
|
||||
public CrackWidthRebarTupleResult LongTermResult { get; set; }
|
||||
public CrackWidthRebarTupleResult ShortTermResult { get; set; }
|
||||
|
||||
public TupleCrackResult()
|
||||
{
|
||||
RebarResults = new ();
|
||||
}
|
||||
/// <inheritdoc/>
|
||||
public List<IRebarCrackResult>? RebarResults { get; private set; } = new();
|
||||
/// <inheritdoc/>
|
||||
public CrackWidthRebarTupleResult? LongTermResult { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public CrackWidthRebarTupleResult? ShortTermResult { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user