Clean-up and reorganisation of solid models

This commit is contained in:
Hrvoje Jasak 2013-10-29 13:27:25 +00:00
parent 0b4174e6b6
commit 583df8e97c
18 changed files with 578 additions and 704 deletions

View file

@ -31,7 +31,7 @@ Description
element access using xxxx(), xxyy() etc. member functions element access using xxxx(), xxyy() etc. member functions
and double dot product with a second order tensor. and double dot product with a second order tensor.
It is assumed that the 4th order tensor takes the form (in 6x6 matrix form): It is assumed that the 4th order tensor takes the form (6x6 matrix form):
/ xxxx xxyy xxzz \ / xxxx xxyy xxzz \
| yyyy yyzz | | yyyy yyzz |
| zzzz | | zzzz |
@ -40,11 +40,16 @@ Description
\ zxzx / \ zxzx /
where the tensor is symmetric and unspecified entries are zero. where the tensor is symmetric and unspecified entries are zero.
Note:
Order is currently hacked due to missing operations on symmetry planes
HJ, 29/Oct/2013
SourceFiles SourceFiles
SymmTensor4thOrderI.H SymmTensor4thOrderI.H
Author Author
Philip Cardiff UCD Philip Cardiff UCD
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#ifndef SymmTensor4thOrder_H #ifndef SymmTensor4thOrder_H
@ -78,7 +83,7 @@ public:
enum enum
{ {
rank = 2 // check: Rank of SymmTensor4thOrder is 4 rank = 2 // Hacked by PC: Actual rank of SymmTensor4thOrder is 4
}; };
@ -94,7 +99,18 @@ public:
//- Component labeling enumeration //- Component labeling enumeration
enum components { XXXX, XXYY, XXZZ, YYYY, YYZZ, ZZZZ, XYXY, YZYZ, ZXZX }; enum components
{
XXXX,
XXYY,
XXZZ,
YYYY,
YYZZ,
ZZZZ,
XYXY,
YZYZ,
ZXZX
};
// Constructors // Constructors
@ -103,7 +119,10 @@ public:
inline SymmTensor4thOrder(); inline SymmTensor4thOrder();
//- Construct given VectorSpace //- Construct given VectorSpace
inline SymmTensor4thOrder(const VectorSpace<SymmTensor4thOrder<Cmpt>, Cmpt, 9>&); inline SymmTensor4thOrder
(
const VectorSpace<SymmTensor4thOrder<Cmpt>, Cmpt, 9>&
);
//- Construct given SymmTensor (for compilation) //- Construct given SymmTensor (for compilation)
inline SymmTensor4thOrder(const SymmTensor<Cmpt>&); inline SymmTensor4thOrder(const SymmTensor<Cmpt>&);

View file

@ -195,7 +195,8 @@ inline Cmpt& SymmTensor4thOrder<Cmpt>::zxzx()
// * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * //
//- Double-dot-product between a fourth order symmetric tensor and a symmetric tensor //- Double-dot-product between a fourth order symmetric tensor and
// a symmetric tensor
template <class Cmpt> template <class Cmpt>
inline SymmTensor<Cmpt> inline SymmTensor<Cmpt>
operator&&(const SymmTensor4thOrder<Cmpt>& t4th, const SymmTensor<Cmpt>& st) operator&&(const SymmTensor4thOrder<Cmpt>& t4th, const SymmTensor<Cmpt>& st)
@ -214,7 +215,8 @@ operator&&(const SymmTensor4thOrder<Cmpt>& t4th, const SymmTensor<Cmpt>& st)
); );
} }
//- Double-dot-product between a symmetric tensor and a symmetric fourth order tensor //- Double-dot-product between a symmetric tensor and a symmetric
// fourth order tensor
template <class Cmpt> template <class Cmpt>
inline SymmTensor<Cmpt> inline SymmTensor<Cmpt>
operator&&(const SymmTensor<Cmpt>& st, const SymmTensor4thOrder<Cmpt>& t4th) operator&&(const SymmTensor<Cmpt>& st, const SymmTensor4thOrder<Cmpt>& t4th)
@ -236,7 +238,7 @@ operator&&(const SymmTensor<Cmpt>& st, const SymmTensor4thOrder<Cmpt>& t4th)
} }
//- Inner-product between a symmTensor4thOrder and a vector //- Inner-product between a symmTensor4thOrder and a vector
//- this is not implemented // this is not implemented
template <class Cmpt> template <class Cmpt>
inline Vector<Cmpt> inline Vector<Cmpt>
operator&(const SymmTensor4thOrder<Cmpt>& st, const Vector<Cmpt>& v) operator&(const SymmTensor4thOrder<Cmpt>& st, const Vector<Cmpt>& v)
@ -257,7 +259,7 @@ operator&(const SymmTensor4thOrder<Cmpt>& st, const Vector<Cmpt>& v)
//- Inner-product between a vector and a symmTensor4thOrder //- Inner-product between a vector and a symmTensor4thOrder
//- this is not implemented // this is not implemented
template <class Cmpt> template <class Cmpt>
inline Vector<Cmpt> inline Vector<Cmpt>
operator&(const Vector<Cmpt>& v, const SymmTensor4thOrder<Cmpt>& st) operator&(const Vector<Cmpt>& v, const SymmTensor4thOrder<Cmpt>& st)

View file

@ -212,6 +212,7 @@ $(interpolation)/interpolationCellPointWallModified/makeInterpolationCellPointWa
volPointInterpolation = interpolation/volPointInterpolation volPointInterpolation = interpolation/volPointInterpolation
$(volPointInterpolation)/pointPatchInterpolation/pointPatchInterpolation.C $(volPointInterpolation)/pointPatchInterpolation/pointPatchInterpolation.C
$(volPointInterpolation)/volPointInterpolation.C $(volPointInterpolation)/volPointInterpolation.C
$(volPointInterpolation)/leastSquaresVolPointInterpolation/leastSquaresVolPointInterpolation.C
pointVolInterpolation = interpolation/pointVolInterpolation pointVolInterpolation = interpolation/pointVolInterpolation
$(pointVolInterpolation)/pointVolInterpolation.C $(pointVolInterpolation)/pointVolInterpolation.C
@ -306,6 +307,7 @@ d2dt2Schemes = finiteVolume/d2dt2Schemes
$(d2dt2Schemes)/d2dt2Scheme/d2dt2Schemes.C $(d2dt2Schemes)/d2dt2Scheme/d2dt2Schemes.C
$(d2dt2Schemes)/steadyStateD2dt2Scheme/steadyStateD2dt2Schemes.C $(d2dt2Schemes)/steadyStateD2dt2Scheme/steadyStateD2dt2Schemes.C
$(d2dt2Schemes)/EulerD2dt2Scheme/EulerD2dt2Schemes.C $(d2dt2Schemes)/EulerD2dt2Scheme/EulerD2dt2Schemes.C
$(d2dt2Schemes)/backwardD2dt2Scheme/backwardD2dt2Schemes.C
divSchemes = finiteVolume/divSchemes divSchemes = finiteVolume/divSchemes
$(divSchemes)/divScheme/divSchemes.C $(divSchemes)/divScheme/divSchemes.C
@ -332,6 +334,7 @@ $(snGradSchemes)/snGradScheme/snGradSchemes.C
$(snGradSchemes)/correctedSnGrad/correctedSnGrads.C $(snGradSchemes)/correctedSnGrad/correctedSnGrads.C
$(snGradSchemes)/limitedSnGrad/limitedSnGrads.C $(snGradSchemes)/limitedSnGrad/limitedSnGrads.C
$(snGradSchemes)/uncorrectedSnGrad/uncorrectedSnGrads.C $(snGradSchemes)/uncorrectedSnGrad/uncorrectedSnGrads.C
$(snGradSchemes)/skewCorrectedSnGrad/skewCorrectedSnGrads.C
$(snGradSchemes)/fourthSnGrad/fourthSnGrads.C $(snGradSchemes)/fourthSnGrad/fourthSnGrads.C
/* /*
$(snGradSchemes)/quadraticFitSnGrad/quadraticFitSnGradData.C $(snGradSchemes)/quadraticFitSnGrad/quadraticFitSnGradData.C

View file

@ -47,7 +47,6 @@ Author
#define leastSquaresVolPointInterpolation_H #define leastSquaresVolPointInterpolation_H
#include "MeshObject.H" #include "MeshObject.H"
//#include "fvMesh.H"
#include "volFields.H" #include "volFields.H"
#include "pointFields.H" #include "pointFields.H"
#include "simpleMatrix.H" #include "simpleMatrix.H"

View file

@ -1,139 +0,0 @@
Making dependency list for source file cfdTools/general/MRF/MRFZone.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearPureUpwindFit/linearPureUpwindFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/cubicUpwindFit/cubicUpwindFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticUpwindFit/quadraticUpwindFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticLinearUpwindFit/quadraticLinearUpwindFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticFit/quadraticFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticLinearFit/quadraticLinearFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/biLinearFit/biLinearFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearFit/linearFit.C
Making dependency list for source file interpolation/surfaceInterpolation/schemes/outletStabilised/outletStabilised.C
Making dependency list for source file interpolation/volPointInterpolation/volPointInterpolation.C
Making dependency list for source file interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolation.C
Making dependency list for source file interpolation/interpolation/interpolationCellPointWallModified/makeInterpolationCellPointWallModified.C
Making dependency list for source file interpolation/interpolation/interpolationCellPointFace/makeInterpolationCellPointFace.C
Making dependency list for source file interpolation/interpolation/interpolationCellPoint/makeInterpolationCellPoint.C
Making dependency list for source file fvMatrices/solvers/MULES/MULES.C
Making dependency list for source file fields/fvsPatchFields/constraint/regionCoupling/regionCouplingFvsPatchFields.C
Making dependency list for source file fields/fvsPatchFields/constraint/mixingPlane/mixingPlaneFvsPatchFields.C
Making dependency list for source file fields/fvsPatchFields/constraint/overlapGgi/overlapGgiFvsPatchFields.C
Making dependency list for source file fields/fvsPatchFields/constraint/cyclicGgi/cyclicGgiFvsPatchFields.C
Making dependency list for source file fields/fvsPatchFields/constraint/ggi/ggiFvsPatchFields.C
Making dependency list for source file fields/fvsPatchFields/constraint/cyclic/cyclicFvsPatchFields.C
Making dependency list for source file fields/fvPatchFields/derived/slip/slipFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.C
Making dependency list for source file fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.C
Making dependency list for source file fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/derived/fan/fanFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/regionCoupling/regionCouplingFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/mixingPlane/mixingPlaneFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/overlapGgi/overlapGgiFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/cyclicGgi/cyclicGgiFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/ggi/ggiFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/wedge/wedgeFvPatchScalarField.C
Making dependency list for source file fields/fvPatchFields/constraint/wedge/wedgeFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/symmetry/symmetryFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/processor/processorFvPatchScalarField.C
Making dependency list for source file fields/fvPatchFields/constraint/processor/processorFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/jumpCyclic/jumpCyclicFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/constraint/cyclic/cyclicFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/basic/transform/transformFvPatchScalarField.C
Making dependency list for source file fields/fvPatchFields/basic/transform/transformFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchFields.C
Making dependency list for source file fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchScalarField.C
Making dependency list for source file fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchFields.C
Making dependency list for source file fvMesh/extendedStencil/faceToCell/fullStencils/CFCFaceToCellStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToFace/extendedCellToFaceStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToFace/fullStencils/FECCellToFaceStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToFace/fullStencils/cellToFaceStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToCell/fullStencils/CECCellToCellStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToCell/fullStencils/CPCCellToCellStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToCell/fullStencils/CFCCellToCellStencil.C
Making dependency list for source file fvMesh/extendedStencil/cellToCell/fullStencils/cellToCellStencil.C
Making dependency list for source file fvMesh/wallDist/wallDistReflection.C
Making dependency list for source file fvMesh/wallDist/nearWallDistNoSearch.C
Making dependency list for source file fvMesh/wallDist/wallPointYPlus/wallPointYPlus.C
Making dependency list for source file fvMesh/fvPatches/derived/cohesive/cohesiveFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/regionCouple/regionCoupleFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/mixingPlane/mixingPlaneFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/overlapGgi/overlapGgiFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/cyclicGgi/cyclicGgiFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/ggi/ggiFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/processor/processorFvPatch.C
Making dependency list for source file fvMesh/fvPatches/constraint/cyclic/cyclicFvPatch.C
Making dependency list for source file fvMesh/fvMeshSubset/fvMeshSubset.C
Making dependency list for source file fvMesh/singleCellFvMesh/singleCellFvMesh.C
Making dependency list for source file fvMesh/fvMesh.C
Making dependency list for source file fvMesh/fvMeshGeometry.C
SOURCE=fvMesh/fvMeshGeometry.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/fvMeshGeometry.o
SOURCE=fvMesh/fvMesh.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/fvMesh.o
SOURCE=fvMesh/fvMeshSubset/fvMeshSubset.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/fvMeshSubset.o
SOURCE=fvMesh/singleCellFvMesh/singleCellFvMesh.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/singleCellFvMesh.o
SOURCE=fvMesh/fvPatches/constraint/cyclic/cyclicFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/processor/processorFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/processorFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/ggi/ggiFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/ggiFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/cyclicGgi/cyclicGgiFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicGgiFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/overlapGgi/overlapGgiFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/overlapGgiFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/mixingPlane/mixingPlaneFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/mixingPlaneFvPatch.o
SOURCE=fvMesh/fvPatches/constraint/regionCouple/regionCoupleFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/regionCoupleFvPatch.o
SOURCE=fvMesh/fvPatches/derived/cohesive/cohesiveFvPatch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cohesiveFvPatch.o
SOURCE=fvMesh/wallDist/wallPointYPlus/wallPointYPlus.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/wallPointYPlus.o
SOURCE=fvMesh/wallDist/nearWallDistNoSearch.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/nearWallDistNoSearch.o
SOURCE=fvMesh/wallDist/wallDistReflection.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/wallDistReflection.o
SOURCE=fvMesh/extendedStencil/cellToCell/fullStencils/cellToCellStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cellToCellStencil.o
SOURCE=fvMesh/extendedStencil/cellToCell/fullStencils/CFCCellToCellStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/CFCCellToCellStencil.o
SOURCE=fvMesh/extendedStencil/cellToCell/fullStencils/CPCCellToCellStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/CPCCellToCellStencil.o
SOURCE=fvMesh/extendedStencil/cellToCell/fullStencils/CECCellToCellStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/CECCellToCellStencil.o
SOURCE=fvMesh/extendedStencil/cellToFace/fullStencils/cellToFaceStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cellToFaceStencil.o
SOURCE=fvMesh/extendedStencil/cellToFace/fullStencils/FECCellToFaceStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/FECCellToFaceStencil.o
SOURCE=fvMesh/extendedStencil/cellToFace/extendedCellToFaceStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/extendedCellToFaceStencil.o
SOURCE=fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/extendedUpwindCellToFaceStencil.o
SOURCE=fvMesh/extendedStencil/faceToCell/fullStencils/CFCFaceToCellStencil.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/CFCFaceToCellStencil.o
SOURCE=fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/basicSymmetryFvPatchFields.o
SOURCE=fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchScalarField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/basicSymmetryFvPatchScalarField.o
SOURCE=fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/directionMixedFvPatchFields.o
SOURCE=fields/fvPatchFields/basic/transform/transformFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/transformFvPatchFields.o
SOURCE=fields/fvPatchFields/basic/transform/transformFvPatchScalarField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/transformFvPatchScalarField.o
SOURCE=fields/fvPatchFields/constraint/cyclic/cyclicFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/jumpCyclic/jumpCyclicFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/jumpCyclicFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/processor/processorFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/processorFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/processor/processorFvPatchScalarField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/processorFvPatchScalarField.o
SOURCE=fields/fvPatchFields/constraint/symmetry/symmetryFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/symmetryFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/wedge/wedgeFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/wedgeFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/wedge/wedgeFvPatchScalarField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/wedgeFvPatchScalarField.o
SOURCE=fields/fvPatchFields/constraint/ggi/ggiFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/ggiFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/cyclicGgi/cyclicGgiFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicGgiFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/overlapGgi/overlapGgiFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/overlapGgiFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/mixingPlane/mixingPlaneFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/mixingPlaneFvPatchFields.o
SOURCE=fields/fvPatchFields/constraint/regionCoupling/regionCouplingFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/regionCouplingFvPatchFields.o
SOURCE=fields/fvPatchFields/derived/fan/fanFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/fanFvPatchFields.o
SOURCE=fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/fixedNormalSlipFvPatchFields.o
SOURCE=fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/partialSlipFvPatchFields.o
SOURCE=fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/pressureInletOutletVelocityFvPatchVectorField.o
SOURCE=fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/rotatingPressureInletOutletVelocityFvPatchVectorField.o
SOURCE=fields/fvPatchFields/derived/slip/slipFvPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/slipFvPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/cyclic/cyclicFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicFvsPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/ggi/ggiFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/ggiFvsPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/cyclicGgi/cyclicGgiFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cyclicGgiFvsPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/overlapGgi/overlapGgiFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/overlapGgiFvsPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/mixingPlane/mixingPlaneFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/mixingPlaneFvsPatchFields.o
SOURCE=fields/fvsPatchFields/constraint/regionCoupling/regionCouplingFvsPatchFields.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/regionCouplingFvsPatchFields.o
SOURCE=fvMatrices/solvers/MULES/MULES.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/MULES.o
SOURCE=interpolation/interpolation/interpolationCellPoint/makeInterpolationCellPoint.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/makeInterpolationCellPoint.o
SOURCE=interpolation/interpolation/interpolationCellPointFace/makeInterpolationCellPointFace.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/makeInterpolationCellPointFace.o
SOURCE=interpolation/interpolation/interpolationCellPointWallModified/makeInterpolationCellPointWallModified.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/makeInterpolationCellPointWallModified.o
SOURCE=interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolation.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/pointPatchInterpolation.o
SOURCE=interpolation/volPointInterpolation/volPointInterpolation.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/volPointInterpolation.o
SOURCE=interpolation/surfaceInterpolation/schemes/outletStabilised/outletStabilised.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/outletStabilised.o
SOURCE=interpolation/surfaceInterpolation/schemes/linearFit/linearFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/linearFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/biLinearFit/biLinearFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/biLinearFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/quadraticLinearFit/quadraticLinearFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/quadraticLinearFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/quadraticFit/quadraticFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/quadraticFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/quadraticLinearUpwindFit/quadraticLinearUpwindFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/quadraticLinearUpwindFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/quadraticUpwindFit/quadraticUpwindFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/quadraticUpwindFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/cubicUpwindFit/cubicUpwindFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/cubicUpwindFit.o
SOURCE=interpolation/surfaceInterpolation/schemes/linearPureUpwindFit/linearPureUpwindFit.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/linearPureUpwindFit.o
SOURCE=cfdTools/general/MRF/MRFZone.C ; ccache g++ -m64 -fPIC -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -O3 -DNoRepository -ftemplate-depth-200 -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/triSurface/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/meshTools/lnInclude -IlnInclude -I. -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude -I/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64GccDPOpt/MRFZone.o
'/Users/philipc/OpenFOAM/OpenFOAM-1.6-ext/lib/darwinIntel64GccDPOpt/libfiniteVolume.dylib' is up to date.

View file

@ -64,11 +64,8 @@ $(constitutiveModel)/solidInterfaces/none/noneSolidInterface.C
$(constitutiveModel)/tractionBoundaryGradient/tractionBoundaryGradient.C $(constitutiveModel)/tractionBoundaryGradient/tractionBoundaryGradient.C
finiteVolume = finiteVolume finiteVolume = finiteVolume
$(finiteVolume)/d2dt2Schemes/backwardD2dt2Scheme/backwardD2dt2Schemes.C
$(finiteVolume)/snGradSchemes/skewCorrectedSnGrad/skewCorrectedSnGrads.C
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceGrads.C $(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceGrads.C
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceVectors.C $(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceVectors.C
$(finiteVolume)/interpolation/leastSquaresVolPointInterpolation/leastSquaresVolPointInterpolation.C
rheologyLaws = $(constitutiveModel)/rheologyLaws rheologyLaws = $(constitutiveModel)/rheologyLaws
$(rheologyLaws)/rheologyLaw/rheologyLaw.C $(rheologyLaws)/rheologyLaw/rheologyLaw.C

View file

@ -87,8 +87,8 @@ class constitutiveModel
autoPtr<solidInterface> solidInterfacePtr_; autoPtr<solidInterface> solidInterfacePtr_;
// we use IOReferencer to allow lookup of solidInterface object in // we use IOReferencer to allow lookup of solidInterface object in
// the objectRegistry, for instance to be used by leastSquaresSolidInterface // the objectRegistry, for instance to be used by
// gradScheme // leastSquaresSolidInterface gradScheme
IOReferencer<solidInterface>* solidInterfaceRefPtr_; IOReferencer<solidInterface>* solidInterfaceRefPtr_;
// if solidInterface is on/off // if solidInterface is on/off

View file

@ -82,6 +82,7 @@ class solidInterface
const constitutiveModel& rheology_; const constitutiveModel& rheology_;
// Demand-driven data // Demand-driven data
//- Interface fvMeshSubMesh //- Interface fvMeshSubMesh
@ -135,6 +136,7 @@ class solidInterface
// -1 for non-interface faces // -1 for non-interface faces
mutable labelListList* processorPatchFacesMapPtr_; mutable labelListList* processorPatchFacesMapPtr_;
// Private Member Functions // Private Member Functions
// Make demand-driven data // Make demand-driven data
@ -259,20 +261,13 @@ public:
const labelListList& processorPatchFaces() const; const labelListList& processorPatchFaces() const;
const FieldField<Field, vector>& processorInterfaceDisplacement() const; const FieldField<Field, vector>&
processorInterfaceDisplacement() const;
FieldField<Field, vector>& processorInterfaceDisplacement(); FieldField<Field, vector>& processorInterfaceDisplacement();
virtual void correct(fvVectorMatrix& UEqn) = 0; virtual void correct(fvVectorMatrix& UEqn) = 0;
// things get messy with a template so we will define all three options here
// modify property field (ie mu, lambda or K, C for orthotropic)
// virtual void modifyProperties
// (
// GeometricField<Type, fvsPatchField, surfaceMesh>& A,
// GeometricField<Type, fvsPatchField, surfaceMesh>& B
// ) const = 0;
virtual void modifyProperties virtual void modifyProperties
( (
surfaceScalarField& s surfaceScalarField& s
@ -307,10 +302,6 @@ public:
surfaceDiagTensorField& K surfaceDiagTensorField& K
) const; ) const;
// leastSquaresSolidInterface gradScheme should now be used
// instead of this gauss grad
//tmp<volTensorField> grad(volVectorField& U) const;
const List<labelPair>& indicator() const; const List<labelPair>& indicator() const;
const labelList& indicatorFieldMap() const; const labelList& indicatorFieldMap() const;
@ -320,7 +311,6 @@ public:
const labelListList& processorPatchFacesMap() const; const labelListList& processorPatchFacesMap() const;
virtual void clearOut(); virtual void clearOut();
}; };

View file

@ -47,7 +47,8 @@ namespace Foam
defineTypeNameAndDebug(tractionBoundaryGradient, 0); defineTypeNameAndDebug(tractionBoundaryGradient, 0);
// * * * * * * * * * * * * * * * * Member functions * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Member functions * * * * * * * * * * * * * * //
tmp<vectorField> tractionBoundaryGradient::traction tmp<vectorField> tractionBoundaryGradient::traction
( (
const tensorField& gradField, const tensorField& gradField,
@ -58,10 +59,12 @@ defineTypeNameAndDebug(tractionBoundaryGradient, 0);
) const ) const
{ {
// create tmp // create tmp
tmp<vectorField> ttraction(new vectorField(gradField.size(), vector::zero)); tmp<vectorField> ttraction
(
new vectorField(gradField.size(), vector::zero)
);
vectorField& traction = ttraction(); vectorField& traction = ttraction();
if(orthotropic) if(orthotropic)
{ {
// for now, turn off orthotropic // for now, turn off orthotropic
@ -439,7 +442,7 @@ defineTypeNameAndDebug(tractionBoundaryGradient, 0);
{ {
// apply further under-relation to non-higher order terms // apply further under-relation to non-higher order terms
const fvMesh& mesh = patch.boundaryMesh().mesh(); // const fvMesh& mesh = patch.boundaryMesh().mesh();
// lookup gradUPrevIter // lookup gradUPrevIter
// NOTE: grad(DU/U).storePrevIter() must be present in the solver // NOTE: grad(DU/U).storePrevIter() must be present in the solver