Skip to content

Commit fadcb4d

Browse files
committed
Merge branch 'develop' of https://github.com/febiosoftware/FEBio into develop
2 parents 18286af + 4dae170 commit fadcb4d

8 files changed

Lines changed: 1427 additions & 2 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Refer to the [README](README.md).
1212

1313
### Variable Naming
1414
Not all current code follows the conventions below but these will be followed for future developments.
15-
- Maximize the use of semantic and descriptive variables names (e.g. `faceIndices` not `fcInd` or `fi`). Avoid abbreviations except in cases of industry wide usage. In some cases non-descriptive and short variable names are exceptable for instance vertices (points), faces, edges, colors and logic arrays may be denoted `V`, `F`, `E`, `C`, `L`. Furthermore, if a mathematrical symbol or letter is commonly used for some entity it may be acceptable to use short names e.g. coordinates may be referred to as `X`, `Y` and `Z` and image coordinates of indices may be referred to as `I`, `J` and `K`.
15+
- Maximize the use of semantic and descriptive variables names (e.g. `faceIndices` not `fcInd` or `fi`). Avoid abbreviations except in cases of industry wide usage. In some cases non-descriptive and short variable names are acceptable for instance vertices (points), faces, edges, colors and logic arrays may be denoted `V`, `F`, `E`, `C`, `L`. Furthermore, if a mathematrical symbol or letter is commonly used for some entity it may be acceptable to use short names e.g. coordinates may be referred to as `X`, `Y` and `Z` and image coordinates of indices may be referred to as `I`, `J` and `K`.
1616

1717
## Testing
1818
Proving example files as well as a description of the expected outcomes. This can be in the form of a log file or data file that contain partial solution data.

FEBioFluid/FEBioFluid.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ SOFTWARE.*/
4545
#include "FELogNonlinearElasticFluid.h"
4646

4747
#include "FEFluidSolver.h"
48+
#include "FEExplicitFluidSolver.h"
4849
#include "FEFluidDomain3D.h"
4950

5051
#include "FEFluidPressureLoad.h"
@@ -130,7 +131,8 @@ void FEBioFluid::InitModule()
130131

131132
//-----------------------------------------------------------------------------
132133
// solver classes
133-
REGISTER_FECORE_CLASS(FEFluidSolver, "fluid");
134+
REGISTER_FECORE_CLASS(FEFluidSolver, "fluid");
135+
REGISTER_FECORE_CLASS(FEExplicitFluidSolver, "explicit-fluid");
134136

135137
//-----------------------------------------------------------------------------
136138
// Materials

0 commit comments

Comments
 (0)