Checkig Iput data of crack calculator was changed

This commit is contained in:
Evgeny Redikultsev
2024-05-26 11:35:48 +05:00
parent 16cef8e98e
commit d13304fe06
50 changed files with 901 additions and 206 deletions

View File

@@ -8,14 +8,32 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2024 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperLogics.NdmCalculations.Cracking
{
public class TupleCrackInputData : IInputData
/// <summary>
/// Input data for calculation of crack for specific force tuple
/// </summary>
public class TupleCrackInputData : IInputData, IHasPrimitives
{
/// <inheritdoc/>
public bool IsValid { get; set; }
public string TupleName { get; set; }
/// <summary>
/// Force tuple for long term calculations
/// </summary>
public IForceTuple? LongTermTuple { get; set; }
/// <summary>
/// Force tuple for short term calculations
/// </summary>
public IForceTuple? ShortTermTuple { get; set; }
public List<INdmPrimitive>? NdmPrimitives {get;set;}
/// <inheritdoc/>
public List<INdmPrimitive>? Primitives { get; set;}
/// <summary>
/// Settings ajusted by user
/// </summary>
public UserCrackInputData UserCrackInputData { get; set; }
}
}