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 DeflectionResult : IDeflectionResult
|
||||
{
|
||||
public double UltimateDeflection { get; set; } = 0.0;
|
||||
public double Curvature { get; set; } = 0.0;
|
||||
public double Deflection { get; set; } = 0.0;
|
||||
|
||||
public bool IsDeflectionLessThanUltimate => Math.Abs(Deflection) <= Math.Abs(UltimateDeflection);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user