Refactoring WIP

This commit is contained in:
Nikolai Smirnov
2022-07-08 11:38:25 +05:00
parent fc4f1f1db3
commit 2c4df04c5c
43 changed files with 832 additions and 833 deletions

View File

@@ -0,0 +1,12 @@
namespace StructureHelper.Models.Materials
{
public class RebarDefinition : MaterialDefinitionBase
{
public RebarDefinition(string materialClass, double youngModulus, double compressiveStrengthCoef, double tensileStrengthCoef, double materialCoefInCompress, double materialCoefInTension) : base(materialClass, youngModulus, compressiveStrengthCoef, tensileStrengthCoef, materialCoefInCompress, materialCoefInTension)
{
YoungModulus = youngModulus/* * Math.Pow(10, 11)*/;
CompressiveStrength = compressiveStrengthCoef/* * Math.Pow(10, 6)*/;
TensileStrength = tensileStrengthCoef/* * Math.Pow(10, 6)*/;
}
}
}