Tests of crack calculator were added
This commit is contained in:
@@ -10,24 +10,24 @@ namespace StructureHelperLogics.NdmCalculations.Cracking
|
||||
/// <summary>
|
||||
/// Settings for crack calculations assigned by user
|
||||
/// </summary>
|
||||
public class UserCrackInputData : IInputData
|
||||
public class UserCrackInputData : IUserCrackInputData
|
||||
{
|
||||
/// <summary>
|
||||
/// Flag of assigning of user value of softening factor
|
||||
/// </summary>
|
||||
public bool SetSofteningFactor {get;set;}
|
||||
public bool SetSofteningFactor { get; set; }
|
||||
/// <summary>
|
||||
/// User value of softening factor, dimensionless
|
||||
/// </summary>
|
||||
public double SofteningFactor {get;set;}
|
||||
public double SofteningFactor { get; set; }
|
||||
/// <summary>
|
||||
/// Flag of assigning of user value of length between cracks
|
||||
/// </summary>
|
||||
public bool SetLengthBetweenCracks {get;set;}
|
||||
public bool SetLengthBetweenCracks { get; set; }
|
||||
/// <summary>
|
||||
/// Length between cracks, m
|
||||
/// </summary>
|
||||
public double LengthBetweenCracks {get;set;}
|
||||
public double LengthBetweenCracks { get; set; }
|
||||
/// <summary>
|
||||
/// Ultimate long-term crack width, m
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user