Add A New Element

From OpenSeesWiki
Jump to navigation Jump to search

The OpenSees applications allows developers to use their own element modules to the application. Unlike most other programs, the elements are added at run-time and not at compile time. The advantage of this is the the developers:

  1. Do not need the OpenSees source files or libraries to compile and link the application.
  2. Can share their modules with others without having to provide the source code.

The element modules can be written using either C++, C, or Fortran. Whatever the language the developer wishes to use, the element modules make use of the OpenSees API to for example find nodal coordinates and displacements, and make use of material modules that exist in OpenSees or are also added as external routines.

  1. Add a New Element C++
  2. Add a New Element C
  3. Add a New Element Fortran