Canguro.Model.Section.FrameSection.FrameSection C# (CSharp) Метод

FrameSection() публичный Метод

Constructora que asigna todas las variables que definen la sección en unidades internacionales.
public FrameSection ( string name, string shape, Material material, ConcreteSectionProps concreteProperties, float t3, float t2, float tf, float tw, float t2b, float tfb, float dis, float area, float torsConst, float i33, float i22, float as2, float as3, float s33, float s22, float z33, float z22, float r33, float r22 ) : System
name string Section name
shape string Shape name
material Material Material
concreteProperties ConcreteSectionProps Concrete properties (for concrete sections only)
t3 float Width
t2 float Height
tf float Hzt plate width
tw float Vertical plate width
t2b float Other dimension
tfb float Other dimension
dis float Distance between section parts
area float Cross area
torsConst float Torsional constant
i33 float Moment of Inertia about 3 axis
i22 float Moment of Inertia about 2 axis
as2 float Shear area in 2 direction
as3 float Shear area in 3 direcion
s33 float Section modulus about 3 axis
s22 float Section modulus about 2 axis
z33 float Plastic modulus about 3 axis
z22 float Plastic modulus about 2 axis
r33 float Radius of gyration about 3 axis
r22 float Radius of gyration about 2 axis
Результат System
        public FrameSection(string name, string shape, Material.Material material, ConcreteSectionProps concreteProperties, float t3, float t2, float tf, float tw, float t2b, float tfb, float dis, float area, float torsConst, float i33, float i22, float as2, float as3, float s33, float s22, float z33, float z22, float r33, float r22)
        {
            this.shape = shape;
            this.material = material;
            this.concreteProps = concreteProperties;
            contour = new Microsoft.DirectX.Vector2[2][];

            this.t3 = t3;
            this.t2 = t2;
            this.tf = tf;
            this.tw = tw;
            this.t2b = t2b;
            this.tfb = tfb;
            this.dis = dis;
            this.area = area;
            this.torsConst = torsConst;
            this.i33 = i33;
            this.i22 = i22;
            this.as2 = as2;
            this.as3 = as3;
            this.s33 = s33;
            this.s22 = s22;
            this.z33 = z33;
            this.z22 = z22;
            this.r33 = r33;
            this.r22 = r22;
            Name = name;

            initContourAndLOD();
        }

Same methods

FrameSection::FrameSection ( ) : System
FrameSection::FrameSection ( string name, string shape, Material material, ConcreteSectionProps concreteProperties ) : System
FrameSection::FrameSection ( string name, string shape, Material material, ConcreteSectionProps concreteProperties, Microsoft contour ) : System