Eurocode 3 and Eurocode 8 Design Library
Construction of a column object
Namespace:
EC3Design
Assembly:
EC3Design (in EC3Design.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Column(
string _ID,
double _Length,
Object _Section,
Material _Material,
Node _StartingNode,
Node _EndingNode,
bool _BracedAboutMajorAxis,
bool _BracedAboutMinorAxis
)
Public Sub New (
_ID As String,
_Length As Double,
_Section As Object,
_Material As Material,
_StartingNode As Node,
_EndingNode As Node,
_BracedAboutMajorAxis As Boolean,
_BracedAboutMinorAxis As Boolean
)
Parameters
- _ID
- Type: SystemString
Column ID - _Length
- Type: SystemDouble
Length - _Section
- Type: SystemObject
Section object - _Material
- Type: EC3DesignMaterial
Material object - _StartingNode
- Type: EC3DesignNode
Starting node object - _EndingNode
- Type: EC3DesignNode
Starting node object - _BracedAboutMajorAxis
- Type: SystemBoolean
Has to be set true, if the column is braced about its major axis (in xz local system) - _BracedAboutMinorAxis
- Type: SystemBoolean
Has to be set true, if the column is braced about its minor axis (in xy local system)
See Also