Tests of crack calculator were added
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Cracking
|
||||
{
|
||||
public interface ICrackWidthCalculationLogic : ILogic
|
||||
{
|
||||
IRebarCrackCalculatorInputData InputData { get; set; }
|
||||
RebarCrackResult Result { get; }
|
||||
|
||||
void Run();
|
||||
CrackWidthRebarTupleResult ProcessLongTermCalculations();
|
||||
CrackWidthRebarTupleResult ProcessShortTermCalculations();
|
||||
RebarStressResult GetRebarStressResult(IRebarCrackInputData inputData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user