71 lines
2.8 KiB
C#
71 lines
2.8 KiB
C#
using StructureHelperCommon.Infrastructures.Exceptions;
|
|
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Loggers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public class CrackWidthLogicSP63 : ICrackWidthLogic
|
|
{
|
|
CrackWidthLogicInputDataSP63 inputData;
|
|
public ICrackWidthLogicInputData InputData {get;set;}
|
|
public IShiftTraceLogger? TraceLogger { get; set; }
|
|
|
|
public double GetCrackWidth()
|
|
{
|
|
TraceLogger?.AddMessage(LoggerStrings.CalculatorType(this), TraceLogStatuses.Service);
|
|
TraceLogger?.AddMessage("Method of crack width calculation based on SP 63.13330.2018");
|
|
CheckOptions();
|
|
//check if strain of concrete greater than strain of rebar
|
|
if (inputData.ConcreteStrain > inputData.RebarStrain) { return 0d; }
|
|
double width = (inputData.RebarStrain - inputData.ConcreteStrain) * inputData.Length;
|
|
width *= inputData.TermFactor * inputData.BondFactor * inputData.StressStateFactor * inputData.PsiSFactor;
|
|
return width;
|
|
}
|
|
|
|
private void CheckOptions()
|
|
{
|
|
string errorString = string.Empty;
|
|
if (InputData is not CrackWidthLogicInputDataSP63)
|
|
{
|
|
errorString = ErrorStrings.ExpectedWas(typeof(CrackWidthLogicInputDataSP63), InputData.GetType());
|
|
}
|
|
inputData = InputData as CrackWidthLogicInputDataSP63;
|
|
if (inputData.Length <=0d)
|
|
{
|
|
errorString = ErrorStrings.DataIsInCorrect + $": length between cracks L={inputData.Length} must be greate than zero";
|
|
}
|
|
if (inputData.TermFactor <= 0d)
|
|
{
|
|
errorString = ErrorStrings.DataIsInCorrect + $": Term factor {inputData.TermFactor} must be greate than zero";
|
|
|
|
}
|
|
if (inputData.BondFactor <= 0d)
|
|
{
|
|
errorString = ErrorStrings.DataIsInCorrect + $": Bond factor {inputData.BondFactor} must be greate than zero";
|
|
|
|
}
|
|
if (inputData.StressStateFactor <= 0d)
|
|
{
|
|
errorString = ErrorStrings.DataIsInCorrect + $": Bond factor {inputData.StressStateFactor} must be greate than zero";
|
|
|
|
}
|
|
if (inputData.PsiSFactor <= 0d)
|
|
{
|
|
errorString = ErrorStrings.DataIsInCorrect + $": PsiS factor {inputData.PsiSFactor} must be greate than zero";
|
|
|
|
}
|
|
if (errorString != string.Empty)
|
|
{
|
|
TraceLogger?.AddMessage(errorString, TraceLogStatuses.Error);
|
|
throw new StructureHelperException(errorString);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|