Tests of crack calculator were added

This commit is contained in:
RedikultsevEvg
2024-08-12 12:46:40 +05:00
parent 3eb5aa2b96
commit 45dbd7a1ca
53 changed files with 1041 additions and 277 deletions

View File

@@ -11,23 +11,16 @@ using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
public class RebarCrackInputData : IInputData
/// <inheritdoc/>
public class RebarCrackInputData : IRebarCrackInputData
{
/// <summary>
/// Collection of ndms where work of crackable material in tension was assigned according to material properties
/// </summary>
/// <inheritdoc/>
public IEnumerable<INdm> CrackableNdmCollection { get; set; }
/// <summary>
/// Collection of ndms where work of concrete is disabled
/// </summary>
/// <inheritdoc/>
public IEnumerable<INdm> CrackedNdmCollection { get; set; }
/// <summary>
/// Force tuple for calculation
/// </summary>
/// <inheritdoc/>
public ForceTuple ForceTuple { get; set; }
/// <summary>
/// Base length beetwen cracks
/// </summary>
/// <inheritdoc/>
public double LengthBeetwenCracks { get; set; }
}
}