User Tools

Site Tools


meeting-2013

Maintenance

  1. Avoiding duplicated information (impossible to keep things up-to-date in the manuals). Good would be to store everything in-code (perhaps with some script scavengers all information from the headers automatically)
  2. Modularity: Having each REGISTER_CLASS() in the respective source file. Code for registering components exists for string-only versions (I'm hoping that classtype versions should rather be removed). Currently works for dynamic linking, but static linking is a problem (static symbols are optimized away). Solution could be to push for dynamic linking.
  3. classType has to go. Replace with strings (Note: int DataStream::write(const std::string &data); + read already exists!). This effects context files and load balancing.
  4. Reduce numbering of engineering models
    1. SM-module: Replace DEIDynamic, DIIDynamic, NLDEIDynamic, NonLinearDynamic with Dynamic
    2. TM-module: Replace NonStationary, NLTransient with Transient
  5. Automatic tools:
    1. More tests (at least 1 for each element type, at least 1 for each material, and 1 for each engineering model).
    2. Coverage testing (static analyzers could help, gcov + ctest is an option but it will miss tons of unstestable, optional but used, code). Possible to run with ctest now
    3. Aiming at zero-warning policy, even with MSVC (some thing that MSVC warns about could be fixed, some could be turned off). Usage of -DCMAKE_CXX_COMPILER_FLAG=-Werror is recommended. We still produce quite a lot of warnings in Clang and Intels compilers.

For new developers

  1. Add BasicElement (linear triangle with plane stress) and BasicMaterial (isotropic plasticity + hardening) for the structural analysis problems which could help new developers get started without having to understand complex inheritance and tons of optional features. These are kept in-code with tests so that we make sure to keep them up-to-date.

Consistent naming schemes

  1. Geometric type, interpolation order, and equation type should be part of the name.
    1. Number of spatial dimensions rarely need to be part of the name.
    2. Will definitely break backwards compatibility.
    3. Tricky cases: Bi-quadratic v.s. Serendipity interpolation. Beams and shells. Springs.
    4. Suggested naming for standard elements: Type-Geometry-Order. E.g: PlaneStressTr2, HeatTransferHexa1
    5. Should we try to be consistent with SpringLine1 and Beam2dLine1 ? I think these structural elements could have their own naming / Mikael
  2. Add ClassFactory for interpolation classes, allowing to create more flexible
    1. FEInterpolation *ClassFactory :: createInterpolation(const char* name) ←- Needs empty (or consistent constructors).
    2. ''PlaneStressTr2

Sets

  1. Mikael will be adding sets (boundary/edge/surface sets and bulk sets to start with)
  2. Active boundary conditions will use sets instead of storing their own list of elements.
  3. See where to go from there (perhaps it's possible to keep backwards compability)

License

  1. Keep GPL - Might cut of commercial interest that could be benefitial
  2. Switch to LGPL - Commercial might pay developers to extend OOFEM to include new elements, materials, contact models, etc. This option has been applied
  3. Offer separate commercial license - We would probably require a copyright assignment agreement for contributions to work with this. Seems unlikely to happen.
meeting-2013.txt · Last modified: 2014/08/04 19:06 by mikael.ohman