Change curvature calculator
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses.Curvatures
|
||||
{
|
||||
public class CurvatureSectionResult : ICurvatureSectionResult
|
||||
{
|
||||
public ICurvatureForceCalculatorResult InputData { get; set; }
|
||||
public ICurvatureTermResult LongTermResult { get; set; }
|
||||
public ICurvatureTermResult ShortTermResult { get; set; }
|
||||
public bool IsValid { get; set; } = true;
|
||||
public string? Description { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user