Add beam shear window

This commit is contained in:
Evgeny Redikultsev
2025-03-02 21:30:39 +05:00
parent e4a23f5139
commit 382ff6ed36
63 changed files with 886 additions and 134 deletions

View File

@@ -0,0 +1,33 @@
using StructureHelperCommon.Infrastructures.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Materials
{
public class MaterialStrengthByLibMaterial : IMaterialStrengthByLibMaterial
{
public Guid Id { get; }
public ILibMaterial LibMaterial { get; }
public MaterialStrengthByLibMaterial(Guid id, ILibMaterial libMaterial)
{
Id = id;
LibMaterial = libMaterial;
}
public (double Compressive, double Tensile) GetStrength(LimitStates limitState, CalcTerms calcTerm)
{
return LibMaterial.GetStrength(limitState, calcTerm);
}
public object Clone()
{
throw new NotImplementedException();
}
}
}