Force crack calculator was fixed

This commit is contained in:
RedikultsevEvg
2024-08-04 23:01:10 +05:00
parent e7c7211f54
commit 3eb5aa2b96
54 changed files with 1031 additions and 300 deletions

View File

@@ -0,0 +1,23 @@
using System;
namespace StructureHelperCommon.Models.Calculators
{
/// <summary>
/// Input data for calculators of finding parameters
/// </summary>
public interface IFindParameterCalculatorInputData : IInputData
{
/// <summary>
/// Start value of range where parameter looking for
/// </summary>
double StartValue { get; set; }
/// <summary>
/// End value of range where parameter looking for
/// </summary>
double EndValue { get; set; }
/// <summary>
/// Predicate for checking parameter for true;
/// </summary>
Predicate<double> Predicate { get; set; }
}
}