-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from MagmaWorks/feature/steel-quality-class
Steel specification
- Loading branch information
Showing
19 changed files
with
844 additions
and
168 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
Materials/IMaterials/StandardMaterials/En/EnSteelCorrosionResistance.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public enum EnSteelCorrosionResistance | ||
{ | ||
None, | ||
W, | ||
WP | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
Materials/IMaterials/StandardMaterials/En/EnSteelDeliveryCondition.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System.ComponentModel; | ||
|
||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public enum EnSteelDeliveryCondition | ||
{ | ||
[Description("As-rolled - EN10025-2")] | ||
AR, | ||
[Description("Normalised rolled in accordance with EN 10025-3")] | ||
N, | ||
[Description("Thermomechanical rolling in accordance with EN 10025-4")] | ||
M, | ||
[Description("Quenched and tempered in accordance with EN 10025-6")] | ||
Q | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Materials/IMaterials/StandardMaterials/En/EnSteelFormingTemperature.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public enum EnSteelFormingTemperature | ||
{ | ||
HotRolled, | ||
ColdFormed | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
Materials/IMaterials/StandardMaterials/En/EnSteelImpactTemperatureProperty.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public enum EnSteelImpactTemperatureProperty | ||
{ | ||
None, | ||
L, | ||
L1 | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Materials/IMaterials/StandardMaterials/En/EnSteelQuality.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public enum EnSteelQuality | ||
{ | ||
None, | ||
JR, | ||
J0, | ||
J2, | ||
K2 | ||
} | ||
} |
7 changes: 3 additions & 4 deletions
7
Materials/IMaterials/StandardMaterials/En/IEnSteelMaterial.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
Materials/IMaterials/StandardMaterials/En/IEnSteelSpecification.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using MagmaWorks.Taxonomy.Serialization; | ||
|
||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public interface IEnSteelSpecification : ITaxonomySerializable | ||
{ | ||
EnExecutionClass ExecutionClassforStaticOrLowSeismicLoading { get; set; } | ||
EnExecutionClass ExecutionClassforFatigueOrHighSeismicLoading { get; set; } | ||
EnSteelCorrosionResistance CorrosionResistance { get; set; } | ||
EnSteelDeliveryCondition DeliveryCondition { get; set; } | ||
EnSteelFormingTemperature FormingTemperature { get; set; } | ||
EnSteelImpactTemperatureProperty ImpactTemperatureProperty { get; set; } | ||
EnSteelQuality Quality { get; set; } | ||
bool HollowSection { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
Materials/IMaterials/StandardMaterials/En/InvalidSteelSpecificationException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System; | ||
|
||
namespace MagmaWorks.Taxonomy.Materials.StandardMaterials.En | ||
{ | ||
public class InvalidSteelSpecificationException : Exception | ||
{ | ||
public InvalidSteelSpecificationException(string t) : base(t) { } | ||
} | ||
} |
Oops, something went wrong.