22 lines
582 B
C#
22 lines
582 B
C#
using LoaderCalculator.Data.Matrix;
|
|
using LoaderCalculator.Data.Ndms;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
/// <summary>
|
|
/// Logic fo calculating of tensile area of RC crosssection
|
|
/// </summary>
|
|
public interface ITensileAreaLogic
|
|
{
|
|
IEnumerable<INdm> NdmCollection { get; set; }
|
|
IStrainMatrix StrainMatrix { get; set; }
|
|
double GetTensileArea();
|
|
}
|
|
}
|