meeting-2013
This is an old revision of the document!
Maintenance
- 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)
- Modularity: Having each REGISTER_CLASS() in the respective source file.
- 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. - Reduce numbering of engineering models
- SM-module: Replace
DEIDynamic
,DIIDynamic
,NLDEIDynamic
,NonLinearDynamic
withDynamic
- TM-module: Replace
NonStationary
,NLTransient
withTransient
- Automatic tools:
- More tests (at least 1 for each element type, at least 1 for each material, and 1 for each engineering model).
- Coverage testing (static analyzers could help, gcov + ctest is an option but it will miss tons of used code).
- 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
- Add
BasicElement
(linear triangle with plane stress) andBasicMaterial
(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
- Geometric type, interpolation order, and equation type should be part of the name. Will definitely break backwards compatibility
- Add ClassFactory for interpolation classes, allowing to create more flexible
Sets
- Mikael will be adding sets (boundary/edge/surface sets and bulk sets to start with)
- Active boundary conditions will use sets instead of storing their own list of elements.
- See where to go from there (perhaps it's possible to keep backwards compability)
meeting-2013.1365815334.txt.gz · Last modified: 2013/04/13 03:08 by mikael.ohman