using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
///
/// Logic for calculating width of crack
///
public interface ICrackWidthLogic
{
///
/// strain of rebar, dimensionless
///
double RebarStrain { get; set; }
///
/// strain of concrete, dimensionless
///
double ConcreteStrain { get; set; }
///
/// Length between cracks in meters
///
double Length { get; set; }
///
/// return width of crack in meters
///
double GetCrackWidth();
}
}