diff --git a/applications/solvers/compressible/rhoCentralFoam/BCs/U/maxwellSlipUFvPatchVectorField.C b/applications/solvers/compressible/rhoCentralFoam/BCs/U/maxwellSlipUFvPatchVectorField.C index 186abb2c..a6e64bae 100644 --- a/applications/solvers/compressible/rhoCentralFoam/BCs/U/maxwellSlipUFvPatchVectorField.C +++ b/applications/solvers/compressible/rhoCentralFoam/BCs/U/maxwellSlipUFvPatchVectorField.C @@ -107,6 +107,8 @@ maxwellSlipUFvPatchVectorField::maxwellSlipUFvPatchVectorField ( vectorField("value", dict, p.size()) ); + refValue() = vectorField("refValue", dict, p.size()); + valueFraction() = scalarField("valueFraction", dict, p.size()); } else { @@ -190,10 +192,8 @@ void maxwellSlipUFvPatchVectorField::write(Ostream& os) const << thermalCreep_ << token::END_STATEMENT << nl; os.writeKeyword("curvature") << curvature_ << token::END_STATEMENT << nl; - os.writeKeyword("refValue") - << refValue() << token::END_STATEMENT << nl; - os.writeKeyword("valueFraction") - << valueFraction() << token::END_STATEMENT << nl; + refValue().writeEntry("refValue", os); + valueFraction().writeEntry("valueFraction", os); writeEntry("value", os); } diff --git a/applications/solvers/multiphase/interFoam/MRFInterFoam/Make/files b/applications/solvers/multiphase/interFoam/MRFInterFoam/Make/files index 70685844..9610e63e 100644 --- a/applications/solvers/multiphase/interFoam/MRFInterFoam/Make/files +++ b/applications/solvers/multiphase/interFoam/MRFInterFoam/Make/files @@ -1,3 +1,3 @@ MRFInterFoam.C -EXE = $(FOAM_USER_APPBIN)/MRFInterFoam +EXE = $(FOAM_APPBIN)/MRFInterFoam diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C b/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C index f0998af7..e7908cf8 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C +++ b/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C @@ -331,20 +331,18 @@ Foam::label Foam::checkTopology const pointField& pts = pp.points(); const labelList& mp = pp.meshPoints(); - boundBox bb; // zero-sized if (returnReduce(mp.size(), sumOp