Files
StructureHelper/StructureHelperLogics/Models/BeamShears/BeamShearSectionLogicResult.cs
2025-08-10 18:24:46 +05:00

29 lines
969 B
C#

using StructureHelperCommon.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
public class BeamShearSectionLogicResult : IBeamShearSectionLogicResult
{
public bool IsValid { get; set; }
public string? Description { get; set; }
public IBeamShearSectionLogicInputData InputData { get; set; }
public IBeamShearSectionLogicInputData ResultInputData { get; set; }
public double ConcreteStrength { get; set; }
public double StirrupStrength { get; set; }
public double TotalStrength { get; set; }
public double FactorOfUsing { get => InputData.ForceTuple.Qy / TotalStrength; }
public IShiftTraceLogger TraceLogger { get; }
public BeamShearSectionLogicResult(IShiftTraceLogger traceLogger)
{
TraceLogger = traceLogger;
}
}
}