24 lines
714 B
C#
24 lines
714 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Functions;
|
|
using StructureHelperCommon.Models.Materials.Libraries;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.Materials
|
|
{
|
|
internal interface IFunctionMaterial : IHelperMaterial
|
|
{
|
|
double Modulus { get; set; }
|
|
double CompressiveStrength { get; set; }
|
|
double TensileStrength { get; set; }
|
|
List<IMaterialSafetyFactor> SafetyFactors { get; }
|
|
public FunctionStorage FunctionStorage { get; set; }
|
|
public IOneVariableFunction Function { get; set; }
|
|
|
|
|
|
}
|
|
}
|