32 lines
823 B
C#
32 lines
823 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
/// <summary>
|
|
/// Logic for calculating width of crack
|
|
/// </summary>
|
|
public interface ICrackWidthLogic
|
|
{
|
|
/// <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; }
|
|
/// <summary>
|
|
/// return width of crack in meters
|
|
/// </summary>
|
|
double GetCrackWidth();
|
|
}
|
|
}
|