25 lines
629 B
C#
25 lines
629 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public interface ICrackWidthLogicInputData
|
|
{
|
|
/// <summary>
|
|
/// strain of rebar, dimensionless
|
|
/// </summary>
|
|
double RebarStrain { get; set; }
|
|
/// <summary>
|
|
/// strain of concrete, dimensionless
|
|
/// </summary>
|
|
double ConcreteStrain { get; set; }
|
|
/// <summary>
|
|
/// Length between cracks in meters
|
|
/// </summary>
|
|
double Length { get; set; }
|
|
}
|
|
}
|