Chang UserManualRus

This commit is contained in:
Evgeny Redikultsev
2025-06-22 16:25:55 +05:00
parent 1ebe1bbcd1
commit d45d37edb7
15 changed files with 83 additions and 26 deletions

View File

@@ -1,21 +1,36 @@
using StructureHelperCommon.Models;
using StructureHelperCommon.Models.Calculators;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implements result of calculating of strength of inclined section fore shear
/// </summary>
public interface IBeamShearSectionLogicResult : IResult
{
/// <summary>
/// Reference back to input data for calculating
/// </summary>
IBeamShearSectionLogicInputData InputData { get; set; }
/// <summary>
/// Ultimate shear force due to cocrete
/// </summary>
public double ConcreteStrength { get; set; }
/// <summary>
/// Ultimate shear force due to stirrups
/// </summary>
public double StirrupStrength { get; set; }
/// <summary>
/// Total ultimate strength
/// </summary>
public double TotalStrength { get; set; }
/// <summary>
/// Ration of load to total strength
/// </summary>
public double FactorOfUsing { get; }
/// <summary>
/// Trace of calculating
/// </summary>
public IShiftTraceLogger TraceLogger { get; }
}
}