Show / Hide Table of Contents

    Class ColdFormedChannelShape

    Cold formed channel shape

    Inheritance
    object
    Shape
    RolledShape
    ColdFormedShape
    ColdFormedChannelShape
    Inherited Members
    ColdFormedShape.GetWebBends()
    ColdFormedShape.GetTopFlangeBends()
    ColdFormedShape.GetBottomFlangeBends()
    ColdFormedShape.Thickness
    ColdFormedShape.Radius
    ColdFormedShape.WebGage1
    ColdFormedShape.WebGage2
    ColdFormedShape.WebGage3
    ColdFormedShape.BottomFlangeWidth
    ColdFormedShape.BottomLipLength
    ColdFormedShape.BottomLipReturnAngle
    ColdFormedShape.BottomLipReturnLength
    ColdFormedShape.TopFlangeWidth
    ColdFormedShape.TopLipLength
    ColdFormedShape.TopLipReturnAngle
    ColdFormedShape.TopLipReturnLength
    RolledShape.Depth
    RolledShape.NominalDepth
    RolledShape.WeightPerUnitFoot
    Shape.GetHashCode()
    Shape.Equals(object)
    Shape.SectionSize
    Shape.IsAvailable
    Shape.SourceReference
    object.GetType()
    object.ToString()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public sealed class ColdFormedChannelShape : ColdFormedShape

    Constructors

    ColdFormedChannelShape()

    Cold formed channel shape

    Declaration
    public ColdFormedChannelShape()

    Properties

    BottomFlangeAngle

    The angle in the range (radians equivalent of -80 degrees, radian equivalent of 80 degrees) between the web and bottom flange. Perpendicular is specified as 0.0 radians. An angle between (0.0, pi/2.0) forms an acute relationship and (-pi/2.0, 0.0) is obtuse.

    Declaration
    public double BottomFlangeAngle { get; set; }
    Property Value
    Type Description
    double

    BottomFlangeGage1

    The distance in inches from the backside of the web to the first gage line of the bottom flange.

    Declaration
    public double BottomFlangeGage1 { get; set; }
    Property Value
    Type Description
    double

    BottomFlangeGage2

    The distance in inches from the first bottom flange gage line to the second gage line of the bottom flange.

    Declaration
    public double BottomFlangeGage2 { get; set; }
    Property Value
    Type Description
    double

    BottomLipAngle

    The angle in the range (-pi/2.0, pi/2.0) between the bottom flange and its lip. Perpendicular is specified as 0.0 radians. A positive angle forms an acute relationship. A negative angle forms an obtuse relationship.

    Declaration
    public double BottomLipAngle { get; set; }
    Property Value
    Type Description
    double

    TopFlangeAngle

    The angle in the range (radians equivalent of -80 degrees, radian equivalent of 80 degrees) between the web and top flange. Perpendicular is specified as 0.0 radians. An angle between (0.0, pi/2.0) forms an obtuse relationship and (-pi/2.0, 0.0) is acute.

    Declaration
    public double TopFlangeAngle { get; set; }
    Property Value
    Type Description
    double

    TopFlangeGage1

    The distance in inches from the backside of the web to the first gage line of the top flange.

    Declaration
    public double TopFlangeGage1 { get; set; }
    Property Value
    Type Description
    double

    TopFlangeGage2

    The distance in inches from the first top flange gage line to the second gage line of the top flange.

    Declaration
    public double TopFlangeGage2 { get; set; }
    Property Value
    Type Description
    double

    TopLipAngle

    The angle in the range (-pi/2.0, pi/2.0) between the bottom flange and its lip. Perpendicular is specified as 0.0 radians. A positive angle forms an acute relationship. A negative angle forms an obtuse relationship.

    Declaration
    public double TopLipAngle { get; set; }
    Property Value
    Type Description
    double

    Methods

    Dispose(bool)

    Cold formed channel shape

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    ColdFormedShape.Dispose(bool)

    GetStructuralProperties(SteelGrade)

    Get the structural properties, from the production standard, for a specific grade. To get the default standard pass null for the grade

    Declaration
    public ChannelTeeStructuralProperties GetStructuralProperties(SteelGrade forGrade)
    Parameters
    Type Name Description
    SteelGrade forGrade

    Production standards are under grade names for many types, so passing in the grade lets us lookup StructuralProperties for a specific production standard for this grade. There is also always a default, pass null to get this.

    Returns
    Type Description
    ChannelTeeStructuralProperties
    Back to top