Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.81 KB

README.md

File metadata and controls

40 lines (36 loc) · 1.81 KB

CrossSection.Net

CrossSection.Net is a C# package for the analysis of arbitrary cross sections using finite elements. This project is based on a python package written by Robbie van Leeuwen https://github.com/robbievanleeuwen/section-properties. CrossSection.Net uses Triangle.NET for section triangulation https://archive.codeplex.com/?p=triangle.

Current Capabilities:

  • Global axis geometric section properties:
    • Area
    • First moments of area
    • Second moments of area
    • Elastic centroid
  • Centroidal axis geometric section properties:
    • Second moments of area
    • Elastic section moduli
    • Yield moment
    • Radii of gyration
    • Plastic centroid
    • Plastic section moduli
    • Shape factors
  • Principal axis geometric section properties:
    • Second moments of area
    • Elastic section moduli
    • Yield moment
    • Radii of gyration
    • Plastic centroid
    • Plastic section moduli
    • Shape factors
  • Warping section properties:
    • Torsion constant
    • Warping constant
  • Shear section properties:
    • Shear centre (elastic method)
    • Shear centre (Trefftz's method)
    • Shear areas (global axis)
    • Shear areas (principal axis)

Validation:

The output from CrossSection.Net has been validated against the output from the Python package and other software.

Peformance:

Optimization to many parts of the code has been done to make the calculation speed as fast as possible. The finer the mesh the more time is required for the calculation. If you don't need the warping or plastic section properties, you can switch the calculation of these off to speed up the calculation. Use the solution settings to control the mesh size and the flags to switch ON/Off the calculation of the warping and plastic properties.