Buckling calculator was changed, accidental eccentricity logic was added
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using StructureHelperCommon.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -8,9 +9,15 @@ namespace StructureHelperLogics.NdmCalculations.Buckling
|
||||
{
|
||||
internal class ConstPhiLLogic : IConcretePhiLLogic
|
||||
{
|
||||
private const double phiL = 2.0d;
|
||||
|
||||
public IShiftTraceLogger? TraceLogger { get; set; }
|
||||
|
||||
public double GetPhil()
|
||||
{
|
||||
return 2.0d;
|
||||
var message = string.Format("Simple method of calculatinf of effect of long term load, PhiL = {0}, dimensionless", phiL);
|
||||
TraceLogger?.AddMessage(message);
|
||||
return phiL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user