Add curvature calculator DTOs

This commit is contained in:
Evgeny Redikultsev
2025-11-23 17:19:36 +05:00
parent 7ab4909c67
commit 5daa32a954
77 changed files with 1415 additions and 165 deletions

View File

@@ -0,0 +1,41 @@
using Newtonsoft.Json;
using StructureHelperCommon.Models;
using StructureHelperCommon.Models.Calculators;
using StructureHelperLogics.NdmCalculations.Analyses.Curvatures;
using System;
using System.Collections.Generic;
using System.Text;
namespace DataAccess.DTOs
{
public class CurvatureCalculatorDTO : ICurvatureCalculator
{
[JsonProperty("Id")]
public Guid Id { get; }
[JsonProperty("Name")]
public string Name { get; set; }
[JsonProperty("InputData")]
public ICurvatureCalculatorInputData InputData { get; set; }
[JsonProperty("ShowTraceData")]
public bool ShowTraceData { get; set; }
[JsonIgnore]
public IResult Result => throw new NotImplementedException();
[JsonIgnore]
public IShiftTraceLogger? TraceLogger { get; set; }
public CurvatureCalculatorDTO(Guid id)
{
Id = id;
}
public object Clone()
{
throw new NotImplementedException();
}
public void Run()
{
throw new NotImplementedException();
}
}
}

View File

@@ -0,0 +1,26 @@
using Newtonsoft.Json;
using StructureHelperCommon.Models.Forces;
using StructureHelperLogics.NdmCalculations.Analyses.Curvatures;
using StructureHelperLogics.NdmCalculations.Primitives;
using System;
using System.Collections.Generic;
using System.Text;
namespace DataAccess.DTOs
{
public class CurvatureCalculatorInputDataDTO : ICurvatureCalculatorInputData
{
[JsonProperty("Id")]
public Guid Id { get; }
[JsonProperty("DesignFactor")]
public IDeflectionFactor DeflectionFactor { get; set; }
[JsonProperty("ForceActions")]
public List<IForceAction> ForceActions { get; } = [];
[JsonProperty("Primitives")]
public List<INdmPrimitive> Primitives { get; } = [];
public CurvatureCalculatorInputDataDTO(Guid id)
{
Id = id;
}
}
}

View File

@@ -0,0 +1,24 @@
using Newtonsoft.Json;
using StructureHelperCommon.Models.Forces;
using StructureHelperLogics.NdmCalculations.Analyses.Curvatures;
namespace DataAccess.DTOs
{
public class DeflectionFactorDTO : IDeflectionFactor
{
[JsonProperty("Id")]
public Guid Id { get; }
[JsonProperty("DeflectionFactors")]
public IForceTuple DeflectionFactors { get; set; }
[JsonProperty("SpanLength")]
public double SpanLength { get; set; }
[JsonProperty("MaxDeflections")]
public IForceTuple MaxDeflections { get; set; }
public DeflectionFactorDTO(Guid id)
{
Id = id;
}
}
}

View File

@@ -58,6 +58,18 @@ namespace DataAccess.DTOs
newList.AddRange(GetNdmPrimitiveList());
newList.AddRange(GetBeamShearList());
newList.AddRange(GetValueDiagramList());
newList.AddRange(GetCurvatureList());
return newList;
}
private static IEnumerable<(Type type, string name)> GetCurvatureList()
{
List<(Type type, string name)> newList = new()
{
{ (typeof(CurvatureCalculatorDTO), "CurvatureCalculator") },
{ (typeof(CurvatureCalculatorInputDataDTO), "CurvatureCalculatorInputData") },
{ (typeof(DeflectionFactorDTO), "DeflectionFactor") },
};
return newList;
}