StructuralCombinationCrossSection Class |
[This is preliminary documentation and is subject to change.]
Namespace: ModelExchanger.AnalysisDataModel.Libraries
public sealed class StructuralCombinationCrossSection : StructuralCrossSection, IEquatable<StructuralCombinationCrossSection>, IStructuralCrossSectionWithFormCode, IStructuralCrossSectionWithDescriptionId, IStructuralCrossSectionWithParameters, IStructuralCrossSectionWithProfile
The StructuralCombinationCrossSection type exposes the following members.
Name | Description | |
---|---|---|
StructuralCombinationCrossSection |
Create a cross section which is a combination of 2 manufactured cross sections
|
Name | Description | |
---|---|---|
CrossSectionalProperties |
Additional properties which define the cross section
(Inherited from StructuralCrossSection.) | |
CrossSectionType |
Defines the type of cross section
(Inherited from StructuralCrossSection.) | |
DescriptionId |
The description of the hot rolled and cold formed cross-section referring to the source of manufacturer.
| |
FormCode |
Helps to define hot rolled or cold formed profiles.
The shape of the cross-section is uniquely identified by a so-called FormCode.
The FormCode defines the shape and in some cases also additional parameters like distance between bolt holes, unit warping coordinates etc.
| |
Id |
The ID of the Analysis object.
Needs to be unique within the entire model
(Inherited from StructuralAnalysisObjectBase.) | |
Material |
The material out of which the Cross Section exists.
(Inherited from StructuralCrossSection.) | |
Name |
The name of the Analysis object.
Needs to be unique within it's type
(Inherited from StructuralAnalysisObjectBase.) | |
Parameters |
Represents dimensions of the cross-section.
| |
Profile |
Defines name of the industrially manufactured profile in the globally common format (naming).
| |
StructuralName |
The name of the cross section in a Structural Model to which this cross section is mapped.
(Inherited from StructuralCrossSection.) |
Name | Description | |
---|---|---|
Equals(Object) |
Check if this object is the same as the provided object.
(Overrides StructuralCrossSectionEquals(Object).) | |
Equals(StructuralAnalysisObjectBase) |
Check if this object is the same as the provided object.
(Inherited from StructuralAnalysisObjectBase.) | |
Equals(StructuralCombinationCrossSection) | Indicates whether the current object is equal to another object of the same type. | |
Equals(StructuralCrossSection) | Indicates whether the current object is equal to another object of the same type. (Inherited from StructuralCrossSection.) | |
GetHashCode |
Retrieves the hashcode of the object
(Overrides StructuralCrossSectionGetHashCode.) |
Name | Description | |
---|---|---|
PropertyChanged | (Inherited from StructuralAnalysisObjectBase.) |
/// <summary> /// Create combination cross sections /// </summary> /// <param name="materials">The available materials from the model</param> /// <returns>A collection of combination cross sections</returns> private IReadOnlyCollection<StructuralCrossSection> CreateCombinationCrossSections( IReadOnlyDictionary<string, StructuralMaterial> materials) { StructuralMaterial mat2 = materials["MAT2"]; return new StructuralCrossSection[] { new StructuralCombinationCrossSection(Guid.NewGuid(), "CS31", mat2, "HEA200", FormCode.ISection, DescriptionId.EuropeanWideFlangeBeam, new[] { Length.FromMillimeters(190D), Length.FromMillimeters(200D), Length.FromMillimeters(200D), Length.FromMillimeters(10D), Length.FromMillimeters(10D), Length.FromMillimeters(6.5D), }) }; }