Interpolation View for calculation result was added
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using StructureHelperCommon.Infrastructures.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Materials.Libraries
|
||||
{
|
||||
public interface IMaterialSafetyFactor : ICloneable
|
||||
{
|
||||
string Name { get; set; }
|
||||
bool Take { get; set; }
|
||||
string Description { get; set; }
|
||||
List<IMaterialPartialFactor> PartialFactors { get; }
|
||||
double GetFactor(StressStates stressState, CalcTerms calcTerm, LimitStates limitStates);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user