structuralProfileType

complexType · extension complexBaseType · all

Two-dimensional cross section of a structural part, given by points and the sheets connecting them

A structural profile is the cross section of a beam-like structural part, e.g. of a stringer, a frame or a floor beam. It consists of points and of sheets that connect them. A profile-based structural element (profileBasedStructuralElementType) references the profile by its uID, assigns a material and a thickness to each sheet (sheetProperties) and can add reinforcements at single points (pointProperties). The structural part that uses the element extends the cross section along its axis.

Points and sheets

T-stringer profile with points P1 to P4 in the x-y plane and three sheets starting at P1, and the coordinate system of each sheet with y along the sheet, z normal to it in the profile plane and x out of the plane

Figure (a) shows the profile of the example below; the labels omit the prefix TStringerProfile_ of the uID. All three sheets start at the point P1, where they meet.

Coordinate system of a sheet

Each sheet has its own right-handed coordinate system, which follows from the direction of the sheet (figure b):

Swapping fromPointUID and toPointUID reverses yS and zS of the sheet. The orthotropy direction of a composite (orthotropyDirection in sheetProperties) is the xS-axis rotated by the given angle about zS; a positive angle turns it towards yS.

T-stringer profile extended along its z-axis; on the web the sheet axes x, y and z and the orthotropy direction rotated from x towards y by the angle orthotropyDirection

The figure shows the web S3 of the example as a surface along the structural part, with its coordinate system and the orthotropy direction for an angle of 30°.

Example

A T-shaped stringer profile with a flange of 30 mm width and a web of 25 mm height:

<structuralProfile2D uID="TStringerProfile">
    <name>T-stringer</name>
    <description>Flange of 30 mm and web of 25 mm height</description>
    <pointList>
        <point uID="TStringerProfile_P1">
            <x>0</x>
            <y>0</y>
        </point>
        <point uID="TStringerProfile_P2">
            <x>0.015</x>
            <y>0</y>
        </point>
        <point uID="TStringerProfile_P3">
            <x>-0.015</x>
            <y>0</y>
        </point>
        <point uID="TStringerProfile_P4">
            <x>0</x>
            <y>0.025</y>
        </point>
    </pointList>
    <sheetList>
        <sheet uID="TStringerProfile_S1">
            <name>Right flange</name>
            <fromPointUID>TStringerProfile_P1</fromPointUID>
            <toPointUID>TStringerProfile_P2</toPointUID>
        </sheet>
        <sheet uID="TStringerProfile_S2">
            <name>Left flange</name>
            <fromPointUID>TStringerProfile_P1</fromPointUID>
            <toPointUID>TStringerProfile_P3</toPointUID>
        </sheet>
        <sheet uID="TStringerProfile_S3">
            <name>Web</name>
            <fromPointUID>TStringerProfile_P1</fromPointUID>
            <toPointUID>TStringerProfile_P4</toPointUID>
        </sheet>
    </sheetList>
</structuralProfile2D>
T-stringer profile

The structural element assigns a thickness of 1.6 mm to the right flange and adds a stiffener of 20 mm² cross section at the tip of the web:

<profileBasedStructuralElement uID="TStringer">
    <name>T-stringer</name>
    <sheetProperties>
        <sheetUID>TStringerProfile_S1</sheetUID>
        <materialUID>Aluminium2024</materialUID>
        <thickness>0.0016</thickness>
    </sheetProperties>
    ...
    <structuralProfileUID>TStringerProfile</structuralProfileUID>
    <pointProperties>
        <pointUID>TStringerProfile_P4</pointUID>
        <materialUID>Aluminium2024</materialUID>
        <crossSectionArea>2e-05</crossSectionArea>
    </pointProperties>
</profileBasedStructuralElement>
Structural element using the T-stringer profile

Attributes

NameTypeConstraintsUseDefaultDescription
@externalDataDirectoryxsd:stringoptionalDirectory of the external data file
@externalDataNodePathxsd:stringoptionalPath of the node inside the external data file
@externalFileNamexsd:stringoptionalName of the external data file
@uIDxsd:IDrequiredUID

Child elements

NameTypeConstraintsOccurrenceHow often the element may appear at this place. The schema writes it as minOccurs and maxOccurs on the declaration.DefaultDescription
allThe children below may appear in any order. Each may appear at most once.
namestringBaseType[1..1] requiredName
descriptionstringBaseType[0..1] optionalDescription
pointListpointListXYType[1..1] requiredPoints of the profile in its x-y plane
sheetListsheetListType[1..1] requiredSheets connecting the points

Used by

In a dataset · 1 path

In the schema · 1 declaration

TypeName
structuralProfilesTypestructuralProfile2D