Show / Hide Table of Contents

    Class ColdFormedZShape

    Cold formed Z shape

    Inheritance
    object
    Shape
    RolledShape
    ColdFormedShape
    ColdFormedZShape
    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 ColdFormedZShape : ColdFormedShape

    Constructors

    ColdFormedZShape()

    Cold formed Z shape

    Declaration
    public ColdFormedZShape()

    Properties

    BottomFlangeGage

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

    Declaration
    public double BottomFlangeGage { 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 pi/2.0 radians. An angle between (0.0, pi/2.0) forms an obtuse relationship and (pi/2.0, pi) is acute.

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

    TopFlangeGage

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

    Declaration
    public double TopFlangeGage { 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 pi/2.0 radians. An angle between (0.0, pi/2.0) forms an obtuse relationship and (pi/2.0, pi) is actue.

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

    WebAngle

    The web angle in the range (0.0, pi/2.0) where 0.0 is perpendicular to the flanges.

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

    Methods

    Dispose(bool)

    Cold formed Z 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