Merge remote-tracking branch 'origin/develop' into develop-pre-release

This commit is contained in:
mattijs
2018-05-31 17:34:16 +01:00
1098 changed files with 4845 additions and 3834 deletions

View File

@ -53,6 +53,16 @@ class ChemistryCombustion
:
public CombustionModel<ReactionThermo>
{
// Private Member Functions
//- Construct as copy (not implemented)
ChemistryCombustion(const ChemistryCombustion<ReactionThermo>&) =
delete;
//- No copy assignment
void operator=(const ChemistryCombustion<ReactionThermo>&) = delete;
protected:
// Protected data

View File

@ -55,6 +55,15 @@ class CombustionModel
:
public combustionModel
{
// Private Member Functions
//- Construct as copy (not implemented)
CombustionModel(const CombustionModel&) = delete;
//- No copy assignment
void operator=(const CombustionModel&) = delete;
public:
//- Thermo type

View File

@ -52,6 +52,15 @@ class ThermoCombustion
:
public CombustionModel<ReactionThermo>
{
// Private Member Functions
//- Construct as copy (not implemented)
ThermoCombustion(const ThermoCombustion&) = delete;
//- No copy assignment
void operator=(const ThermoCombustion&) = delete;
protected:
// Protected data