From 9f8e291943b81c3e3adda6d1dc45f2f6e32668ce Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Mon, 24 Feb 2014 20:31:29 +0100 Subject: [PATCH 01/25] first commit --- src/Allwmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Allwmake b/src/Allwmake index fa091ed8..56985393 100755 --- a/src/Allwmake +++ b/src/Allwmake @@ -1,5 +1,6 @@ + #!/bin/sh -cd ${0%/*} || exit 1 # run from this directory +cd ${0%/*} || exit 1 # run from this director makeType=${1:-libso} wmakeCheckPwd "$WM_PROJECT_DIR/src" || { From b91e58692df09a2fa0424520e486f180593084f2 Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Mon, 10 Mar 2014 11:20:52 +0100 Subject: [PATCH 02/25] extended chemistryModel class with a basic TDACChemistryModel --- .../TDACChemistryModel/TDACChemistryModel.C | 520 ++++++++++++++++++ .../TDACChemistryModel/TDACChemistryModel.H | 194 +++++++ .../psiChemistryModel/psiChemistryModels.C | 90 ++- .../rhoChemistryModel/rhoChemistryModels.C | 91 ++- 4 files changed, 879 insertions(+), 16 deletions(-) create mode 100644 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C create mode 100644 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C new file mode 100644 index 00000000..83ae025b --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C @@ -0,0 +1,520 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "TDACChemistryModel.H" +#include "reactingMixture.H" + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +template +Foam::TDACChemistryModel::TDACChemistryModel +( + const fvMesh& mesh +) +: + chemistryModel(mesh) +{ +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::TDACChemistryModel::~TDACChemistryModel() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template +Foam::tmp +Foam::TDACChemistryModel::omega +( + const scalarField& c, + const scalar T, + const scalar p +) const +{ + scalar pf, cf, pr, cr; + label lRef, rRef; + + tmp tom(new scalarField(this->nEqns(), 0.0)); + scalarField& om = tom(); + + forAll(this->reactions_, i) + { + const Reaction& R = this->reactions_[i]; + + scalar omegai = omega + ( + R, c, T, p, pf, cf, lRef, pr, cr, rRef + ); + + forAll(R.lhs(), s) + { + const label si = R.lhs()[s].index; + const scalar sl = R.lhs()[s].stoichCoeff; + om[si] -= sl*omegai; + } + + forAll(R.rhs(), s) + { + const label si = R.rhs()[s].index; + const scalar sr = R.rhs()[s].stoichCoeff; + om[si] += sr*omegai; + } + } + + return tom; +} + + + +template +Foam::scalar Foam::TDACChemistryModel::omega +( + const Reaction& R, + const scalarField& c, + const scalar T, + const scalar p, + scalar& pf, + scalar& cf, + label& lRef, + scalar& pr, + scalar& cr, + label& rRef +) const +{ + scalarField c2(this->nSpecie_, 0.0); + for (label i = 0; i < this->nSpecie_; i++) + { + c2[i] = max(0.0, c[i]); + } + + const scalar kf = R.kf(p, T, c2); + const scalar kr = R.kr(kf, p, T, c2); + + pf = 1.0; + pr = 1.0; + + const label Nl = R.lhs().size(); + const label Nr = R.rhs().size(); + + label slRef = 0; + lRef = R.lhs()[slRef].index; + + pf = kf; + for (label s = 1; s < Nl; s++) + { + const label si = R.lhs()[s].index; + + if (c[si] < c[lRef]) + { + const scalar exp = R.lhs()[slRef].exponent; + pf *= pow(max(0.0, c[lRef]), exp); + lRef = si; + slRef = s; + } + else + { + const scalar exp = R.lhs()[s].exponent; + pf *= pow(max(0.0, c[si]), exp); + } + } + cf = max(0.0, c[lRef]); + + { + const scalar exp = R.lhs()[slRef].exponent; + if (exp < 1.0) + { + if (cf > SMALL) + { + pf *= pow(cf, exp - 1.0); + } + else + { + pf = 0.0; + } + } + else + { + pf *= pow(cf, exp - 1.0); + } + } + + label srRef = 0; + rRef = R.rhs()[srRef].index; + + // find the matrix element and element position for the rhs + pr = kr; + for (label s = 1; s < Nr; s++) + { + const label si = R.rhs()[s].index; + if (c[si] < c[rRef]) + { + const scalar exp = R.rhs()[srRef].exponent; + pr *= pow(max(0.0, c[rRef]), exp); + rRef = si; + srRef = s; + } + else + { + const scalar exp = R.rhs()[s].exponent; + pr *= pow(max(0.0, c[si]), exp); + } + } + cr = max(0.0, c[rRef]); + + { + const scalar exp = R.rhs()[srRef].exponent; + if (exp < 1.0) + { + if (cr>SMALL) + { + pr *= pow(cr, exp - 1.0); + } + else + { + pr = 0.0; + } + } + else + { + pr *= pow(cr, exp - 1.0); + } + } + + return pf*cf - pr*cr; +} + + +template +void Foam::TDACChemistryModel::derivatives +( + const scalar time, + const scalarField &c, + scalarField& dcdt +) const +{ + const scalar T = c[this->nSpecie_]; + const scalar p = c[this->nSpecie_ + 1]; + + dcdt = omega(c, T, p); + + // constant pressure + // dT/dt = ... + scalar rho = 0.0; + scalar cSum = 0.0; + for (label i = 0; i < this->nSpecie_; i++) + { + const scalar W = this->specieThermo_[i].W(); + cSum += c[i]; + rho += W*c[i]; + } + scalar cp = 0.0; + for (label i=0; inSpecie_; i++) + { + cp += c[i]*this->specieThermo_[i].cp(p, T); + } + cp /= rho; + + scalar dT = 0.0; + for (label i = 0; i < this->nSpecie_; i++) + { + const scalar hi = this->specieThermo_[i].ha(p, T); + dT += hi*dcdt[i]; + } + dT /= rho*cp; + + dcdt[this->nSpecie_] = -dT; + + // dp/dt = ... + dcdt[this->nSpecie_ + 1] = 0.0; +} + + +template +void Foam::TDACChemistryModel::jacobian +( + const scalar t, + const scalarField& c, + scalarField& dcdt, + scalarSquareMatrix& dfdc +) const +{ + const scalar T = c[this->nSpecie_]; + const scalar p = c[this->nSpecie_ + 1]; + + scalarField c2(this->nSpecie_, 0.0); + forAll(c2, i) + { + c2[i] = max(c[i], 0.0); + } + + for (label i=0; inEqns(); i++) + { + for (label j=0; jnEqns(); j++) + { + dfdc[i][j] = 0.0; + } + } + + // length of the first argument must be nSpecie() + dcdt = omega(c2, T, p); + + forAll(this->reactions_, ri) + { + const Reaction& R = this->reactions_[ri]; + + const scalar kf0 = R.kf(p, T, c2); + const scalar kr0 = R.kr(p, T, c2); + + forAll(R.lhs(), j) + { + const label sj = R.lhs()[j].index; + scalar kf = kf0; + forAll(R.lhs(), i) + { + const label si = R.lhs()[i].index; + const scalar el = R.lhs()[i].exponent; + if (i == j) + { + if (el < 1.0) + { + if (c2[si] > SMALL) + { + kf *= el*pow(c2[si] + VSMALL, el - 1.0); + } + else + { + kf = 0.0; + } + } + else + { + kf *= el*pow(c2[si], el - 1.0); + } + } + else + { + kf *= pow(c2[si], el); + } + } + + forAll(R.lhs(), i) + { + const label si = R.lhs()[i].index; + const scalar sl = R.lhs()[i].stoichCoeff; + dfdc[si][sj] -= sl*kf; + } + forAll(R.rhs(), i) + { + const label si = R.rhs()[i].index; + const scalar sr = R.rhs()[i].stoichCoeff; + dfdc[si][sj] += sr*kf; + } + } + + forAll(R.rhs(), j) + { + const label sj = R.rhs()[j].index; + scalar kr = kr0; + forAll(R.rhs(), i) + { + const label si = R.rhs()[i].index; + const scalar er = R.rhs()[i].exponent; + if (i == j) + { + if (er < 1.0) + { + if (c2[si] > SMALL) + { + kr *= er*pow(c2[si] + VSMALL, er - 1.0); + } + else + { + kr = 0.0; + } + } + else + { + kr *= er*pow(c2[si], er - 1.0); + } + } + else + { + kr *= pow(c2[si], er); + } + } + + forAll(R.lhs(), i) + { + const label si = R.lhs()[i].index; + const scalar sl = R.lhs()[i].stoichCoeff; + dfdc[si][sj] += sl*kr; + } + forAll(R.rhs(), i) + { + const label si = R.rhs()[i].index; + const scalar sr = R.rhs()[i].stoichCoeff; + dfdc[si][sj] -= sr*kr; + } + } + } + + // Calculate the dcdT elements numerically + const scalar delta = 1.0e-3; + const scalarField dcdT0(omega(c2, T - delta, p)); + const scalarField dcdT1(omega(c2, T + delta, p)); + + for (label i = 0; i < this->nEqns(); i++) + { + dfdc[i][this->nSpecie()] = 0.5*(dcdT1[i] - dcdT0[i])/delta; + } +} + + +template +template +Foam::scalar Foam::TDACChemistryModel::solve +( + const DeltaTType& deltaT +) +{ + CompType::correct(); + + scalar deltaTMin = GREAT; + + if (!this->chemistry_) + { + return deltaTMin; + } + + const volScalarField rho + ( + IOobject + ( + "rho", + this->time().timeName(), + this->mesh(), + IOobject::NO_READ, + IOobject::NO_WRITE, + false + ), + this->thermo().rho() + ); + + const scalarField& T = this->thermo().T(); + const scalarField& p = this->thermo().p(); + + scalarField c(this->nSpecie_); + scalarField c0(this->nSpecie_); + + forAll(rho, celli) + { + const scalar rhoi = rho[celli]; + scalar pi = p[celli]; + scalar Ti = T[celli]; + + for (label i=0; inSpecie_; i++) + { + c[i] = rhoi*this->Y_[i][celli]/this->specieThermo_[i].W(); + c0[i] = c[i]; + } + + // Initialise time progress + scalar timeLeft = deltaT[celli]; + + // Calculate the chemical source terms + while (timeLeft > SMALL) + { + scalar dt = timeLeft; + this->solve(c, Ti, pi, dt, this->deltaTChem_[celli]); + timeLeft -= dt; + } + + deltaTMin = min(this->deltaTChem_[celli], deltaTMin); + + for (label i=0; inSpecie_; i++) + { + this->RR_[i][celli] = + (c[i] - c0[i])*this->specieThermo_[i].W()/deltaT[celli]; + } + } + + return deltaTMin; +} + + +template +Foam::scalar Foam::TDACChemistryModel::solve +( + const scalar deltaT +) +{ + // Don't allow the time-step to change more than a factor of 2 + return min + ( + this->solve >(UniformField(deltaT)), + 2*deltaT + ); +} + + +template +Foam::scalar Foam::TDACChemistryModel::solve +( + const scalarField& deltaT +) +{ + return this->solve(deltaT); +} + + +template +void Foam::TDACChemistryModel::solve +( + scalarField &c, + scalar& T, + scalar& p, + scalar& deltaT, + scalar& subDeltaT +) const +{ + notImplemented + ( + "TDACChemistryModel::solve" + "(" + "scalarField&, " + "scalar&, " + "scalar&, " + "scalar&, " + "scalar&" + ") const" + ); +} + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H new file mode 100644 index 00000000..d1b3f033 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H @@ -0,0 +1,194 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2014 Francesco Contino + \\/ M anipulation | + ------------------------------------------------------------------------------- + License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + + +Class + Foam::TDACChemistryModel + +Description + Extends chemistryModel by adding the TDAC method. + Ref: + F. Contino, H. Jeanmart, T. Lucchini, and G. D’Errico. Coupling of in situ + adaptive tabulation and dy- namic adaptive chemistry: An effective method + for solving combustion in engine simulations. Proceedings of the Combustion + Institute, 33(2):3057–3064, 2011 + +SourceFiles + TDACChemistryModel.C + +\*---------------------------------------------------------------------------*/ + +#ifndef TDACChemistryModel_H +#define TDACChemistryModel_H + +#include "chemistryModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +// Forward declaration of classes +class fvMesh; + +/*---------------------------------------------------------------------------*\ + Class TDAChemistryModel Declaration +\*---------------------------------------------------------------------------*/ + +template +class TDACChemistryModel +: + public chemistryModel +{ + // Private Member Functions + + //- Disallow copy constructor + TDACChemistryModel(const TDACChemistryModel&); + + //- Disallow default bitwise assignment + void operator=(const TDACChemistryModel&); + + //- Solve the reaction system for the given time step + // of given type and return the characteristic time + // Variable number of species added + template + scalar solve(const DeltaTType& deltaT); + + +protected: + + typedef ThermoType thermoType; + + // Private data + + + // Protected Member Functions + + +public: + + //- Runtime type information + TypeName("TDACChemistryModel"); + + + // Constructors + + //- Construct from mesh + TDACChemistryModel(const fvMesh& mesh); + + + //- Destructor + virtual ~TDACChemistryModel(); + + + // Member Functions + + //- dc/dt = omega, rate of change in concentration, for each species + // adapted to work with a variable number of species + virtual tmp omega + ( + const scalarField& c, + const scalar T, + const scalar p + ) const; + + //- Return the reaction rate for reaction r and the reference + // species and charateristic times + // adapted to work with a variable number of species + virtual scalar omega + ( + const Reaction& r, + const scalarField& c, + const scalar T, + const scalar p, + scalar& pf, + scalar& cf, + label& lRef, + scalar& pr, + scalar& cr, + label& rRef + ) const; + + + //- Calculates the reaction rates + virtual void calculate(); + + + // Chemistry model functions (overriding functions in + // chemistryModel.H) + + //- Solve the reaction system for the given time step + // and return the characteristic time + virtual scalar solve(const scalar deltaT); + + //- Solve the reaction system for the given time step + // and return the characteristic time + virtual scalar solve(const scalarField& deltaT); + + + // ODE functions (overriding functions in chemistryModel.H to take into + // account the variable number of species) + + + virtual void derivatives + ( + const scalar t, + const scalarField& c, + scalarField& dcdt + ) const; + + virtual void jacobian + ( + const scalar t, + const scalarField& c, + scalarField& dcdt, + scalarSquareMatrix& dfdc + ) const; + + virtual void solve + ( + scalarField &c, + scalar& T, + scalar& p, + scalar& deltaT, + scalar& subDeltaT + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "TDACChemistryModel.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/psiChemistryModel/psiChemistryModels.C b/src/thermophysicalModels/chemistryModel/chemistryModel/psiChemistryModel/psiChemistryModels.C index 340edb3d..5b21d96d 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/psiChemistryModel/psiChemistryModels.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/psiChemistryModel/psiChemistryModels.C @@ -1,12 +1,14 @@ /*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation - \\/ M anipulation | -------------------------------------------------------------------------------- -License - This file is part of OpenFOAM. + ========= | + \\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\/ M anipulation | + ------------------------------------------------------------------------------- + 2014-03-10 Francesco Contino: added makeChemistryModel for TDACChemistryModel + ------------------------------------------------------------------------------- + License + This file is a derivative work of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,6 +35,7 @@ Description #include "psiChemistryModel.H" #include "chemistryModel.H" +#include "TDACChemistryModel.H" #include "thermoPhysicsTypes.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -75,6 +78,41 @@ namespace Foam icoPoly8HThermoPhysics ); + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + constGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + gasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + constIncompressibleGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + incompressibleGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + icoPoly8HThermoPhysics + ); + // Chemistry moldels based on sensibleInternalEnergy makeChemistryModel ( @@ -110,6 +148,42 @@ namespace Foam psiChemistryModel, icoPoly8EThermoPhysics ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + constGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + gasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + constIncompressibleGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + incompressibleGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + psiChemistryModel, + icoPoly8EThermoPhysics + ); + } // ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/rhoChemistryModel/rhoChemistryModels.C b/src/thermophysicalModels/chemistryModel/chemistryModel/rhoChemistryModel/rhoChemistryModels.C index c331cd1c..03eadea0 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/rhoChemistryModel/rhoChemistryModels.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/rhoChemistryModel/rhoChemistryModels.C @@ -1,12 +1,14 @@ /*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation - \\/ M anipulation | -------------------------------------------------------------------------------- -License - This file is part of OpenFOAM. + ========= | + \\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\/ M anipulation | + ------------------------------------------------------------------------------- + 2014-03-10 Francesco Contino: added makeChemistryModel for TDACChemistryModel + ------------------------------------------------------------------------------- + License + This file is a derivative work of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +23,7 @@ License You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . + InClass Foam::rhoChemistryModel @@ -33,6 +36,7 @@ Description #include "rhoChemistryModel.H" #include "chemistryModel.H" +#include "TDACChemistryModel.H" #include "thermoPhysicsTypes.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -75,6 +79,40 @@ namespace Foam icoPoly8HThermoPhysics ); + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + constGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + gasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + constIncompressibleGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + incompressibleGasHThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + icoPoly8HThermoPhysics + ); // Chemistry moldels based on sensibleInternalEnergy makeChemistryModel @@ -111,6 +149,43 @@ namespace Foam rhoChemistryModel, icoPoly8EThermoPhysics ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + constGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + gasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + constIncompressibleGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + incompressibleGasEThermoPhysics + ); + + makeChemistryModel + ( + TDACChemistryModel, + rhoChemistryModel, + icoPoly8EThermoPhysics + ); + } + // ************************************************************************* // From 3fdd533e9a5cb9ef3e2a2728c81ba62a2def9836 Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Mon, 10 Mar 2014 14:17:40 +0100 Subject: [PATCH 03/25] update untracked files --- .gitignore | 1 + OpenFOAM-2.3.x-Mac.patch | 1944 +++++ .../solvers/combustion/fireFoam/Make/options | 3 + .../rhoSimpleFoam/rhoSimplecFoam/Make/options | 1 + .../chtMultiRegionSimpleFoam/Make/options | 1 + .../adjointShapeOptimizationFoam/Make/options | 1 + .../simpleFoam/SRFSimpleFoam/Make/options | 1 + .../Make/options | 1 + .../Make/options | 1 + .../reactingParcelFilmFoam/Make/options | 3 + .../multiphaseEulerFoam/Make/options | 1 + .../mesh/generation/blockMesh/Make/options | 1 + .../generation/foamyQuadMesh/Make/options | 2 + .../generation/snappyHexMesh/Make/options | 1 - .../manipulation/renumberMesh/Make/options | 1 - .../expandDictionary/Make/options | 2 - .../foamDebugSwitches/Make/options | 2 - .../reconstructParMesh/Make/options | 1 + .../dataConversion/foamToEnsight/Make/options | 2 - .../execFlowFunctionObjects/Make/options | 2 + .../postProcessing/turbulence/R/Make/options | 2 + .../createTurbulenceFields/Make/options | 1 + .../velocityField/Pe/Make/options | 2 + .../wall/wallShearStress/Make/options | 2 + .../postProcessing/wall/yPlusLES/Make/options | 1 + .../postProcessing/wall/yPlusRAS/Make/options | 2 + .../applyBoundaryLayer/Make/options | 1 + bin/addr2line4Mac.py | 49 + etc/bashrc | 22 +- etc/config/CGAL.sh | 16 + etc/config/metis.sh | 11 + etc/config/paraview.sh | 13 + etc/config/scotch.sh | 12 + etc/config/settings.sh | 195 + etc/controlDict | 3 +- logName.log | 6402 +++++++++++++++++ src/OSspecific/POSIX/POSIX.C | 23 + src/OSspecific/POSIX/clockTime/clockTime.H | 3 + src/OSspecific/POSIX/fileStat.C | 2 + src/OSspecific/POSIX/printStack.C | 83 +- src/OSspecific/POSIX/signals/sigFpe.C | 143 +- src/OSspecific/POSIX/signals/sigFpe.H | 14 +- .../functionEntries/codeStream/codeStream.C | 1 + .../db/dynamicLibrary/codedBase/codedBase.C | 20 +- .../dynamicLibrary/dynamicCode/dynamicCode.C | 7 +- .../dynamicLibrary/dynamicCode/dynamicCode.H | 5 +- src/OpenFOAM/primitives/Scalar/doubleFloat.H | 10 + src/conversion/ensight/part/ensightPart.C | 2 +- src/conversion/ensight/part/ensightPartIO.C | 4 +- .../fvMeshDistributeTemplates.C | 2 +- .../meshCut/refineCell/refineCell.H | 3 +- src/fvOptions/Make/options | 1 - src/meshTools/meshTools/meshTools.H | 2 +- .../decompose/ptscotchDecomp/Make/options | 6 +- .../decompose/scotchDecomp/Make/options | 6 +- src/renumber/Allwmake | 5 + src/renumber/SloanRenumber/Make/options | 3 +- .../writers/ensight/ensightPTraits.H | 1 + .../incompressible/icoFoam/cavity/case.foam | 0 .../icoFoam/cavity/constant/polyMesh/boundary | 43 + .../cavitatingFoam/ras/throttle/case.foam | 0 .../ras/throttle/constant/polyMesh/boundary | 48 + wmake/Makefile | 4 + wmake/rules/darwinIntel64Clang/c | 17 + wmake/rules/darwinIntel64Clang/c++ | 23 + wmake/rules/darwinIntel64Clang/c++Debug | 4 + wmake/rules/darwinIntel64Clang/c++Opt | 5 + wmake/rules/darwinIntel64Clang/c++Prof | 2 + wmake/rules/darwinIntel64Clang/cDebug | 4 + wmake/rules/darwinIntel64Clang/cOpt | 3 + wmake/rules/darwinIntel64Clang/cProf | 2 + wmake/rules/darwinIntel64Clang/general | 9 + wmake/rules/darwinIntel64Clang/mplib | 3 + .../darwinIntel64Clang/mplibMACPORTMPICH | 3 + .../darwinIntel64Clang/mplibMACPORTOPENMPI | 3 + wmake/rules/darwinIntel64Clang/mplibOPENMPI | 3 + wmake/rules/darwinIntel64Dragonegg/c | 16 + wmake/rules/darwinIntel64Dragonegg/c++ | 22 + wmake/rules/darwinIntel64Dragonegg/c++Debug | 2 + wmake/rules/darwinIntel64Dragonegg/c++Opt | 5 + wmake/rules/darwinIntel64Dragonegg/c++Prof | 2 + wmake/rules/darwinIntel64Dragonegg/cDebug | 2 + wmake/rules/darwinIntel64Dragonegg/cOpt | 3 + wmake/rules/darwinIntel64Dragonegg/cProf | 2 + wmake/rules/darwinIntel64Dragonegg/general | 9 + wmake/rules/darwinIntel64Dragonegg/mplib | 3 + .../darwinIntel64Dragonegg/mplibMACPORTMPICH | 3 + .../mplibMACPORTOPENMPI | 5 + .../rules/darwinIntel64Dragonegg/mplibOPENMPI | 3 + wmake/rules/darwinIntel64Gcc/c | 16 + wmake/rules/darwinIntel64Gcc/c++ | 22 + wmake/rules/darwinIntel64Gcc/c++Debug | 2 + wmake/rules/darwinIntel64Gcc/c++Opt | 5 + wmake/rules/darwinIntel64Gcc/c++Prof | 2 + wmake/rules/darwinIntel64Gcc/cDebug | 2 + wmake/rules/darwinIntel64Gcc/cOpt | 3 + wmake/rules/darwinIntel64Gcc/cProf | 2 + wmake/rules/darwinIntel64Gcc/general | 9 + wmake/rules/darwinIntel64Gcc/mplib | 3 + .../rules/darwinIntel64Gcc/mplibMACPORTMPICH | 3 + .../darwinIntel64Gcc/mplibMACPORTOPENMPI | 5 + wmake/rules/darwinIntel64Gcc/mplibOPENMPI | 3 + wmake/rules/darwinIntel64Gcc47 | 1 + 103 files changed, 9343 insertions(+), 40 deletions(-) create mode 100644 OpenFOAM-2.3.x-Mac.patch create mode 100755 bin/addr2line4Mac.py create mode 100644 logName.log create mode 100644 tutorials/incompressible/icoFoam/cavity/case.foam create mode 100644 tutorials/incompressible/icoFoam/cavity/constant/polyMesh/boundary create mode 100644 tutorials/multiphase/cavitatingFoam/ras/throttle/case.foam create mode 100644 tutorials/multiphase/cavitatingFoam/ras/throttle/constant/polyMesh/boundary create mode 100644 wmake/rules/darwinIntel64Clang/c create mode 100644 wmake/rules/darwinIntel64Clang/c++ create mode 100644 wmake/rules/darwinIntel64Clang/c++Debug create mode 100644 wmake/rules/darwinIntel64Clang/c++Opt create mode 100644 wmake/rules/darwinIntel64Clang/c++Prof create mode 100644 wmake/rules/darwinIntel64Clang/cDebug create mode 100644 wmake/rules/darwinIntel64Clang/cOpt create mode 100644 wmake/rules/darwinIntel64Clang/cProf create mode 100644 wmake/rules/darwinIntel64Clang/general create mode 100644 wmake/rules/darwinIntel64Clang/mplib create mode 100644 wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH create mode 100644 wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI create mode 100644 wmake/rules/darwinIntel64Clang/mplibOPENMPI create mode 100644 wmake/rules/darwinIntel64Dragonegg/c create mode 100644 wmake/rules/darwinIntel64Dragonegg/c++ create mode 100644 wmake/rules/darwinIntel64Dragonegg/c++Debug create mode 100644 wmake/rules/darwinIntel64Dragonegg/c++Opt create mode 100644 wmake/rules/darwinIntel64Dragonegg/c++Prof create mode 100644 wmake/rules/darwinIntel64Dragonegg/cDebug create mode 100644 wmake/rules/darwinIntel64Dragonegg/cOpt create mode 100644 wmake/rules/darwinIntel64Dragonegg/cProf create mode 100644 wmake/rules/darwinIntel64Dragonegg/general create mode 100644 wmake/rules/darwinIntel64Dragonegg/mplib create mode 100644 wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH create mode 100644 wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI create mode 100644 wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI create mode 100644 wmake/rules/darwinIntel64Gcc/c create mode 100644 wmake/rules/darwinIntel64Gcc/c++ create mode 100644 wmake/rules/darwinIntel64Gcc/c++Debug create mode 100644 wmake/rules/darwinIntel64Gcc/c++Opt create mode 100644 wmake/rules/darwinIntel64Gcc/c++Prof create mode 100644 wmake/rules/darwinIntel64Gcc/cDebug create mode 100644 wmake/rules/darwinIntel64Gcc/cOpt create mode 100644 wmake/rules/darwinIntel64Gcc/cProf create mode 100644 wmake/rules/darwinIntel64Gcc/general create mode 100644 wmake/rules/darwinIntel64Gcc/mplib create mode 100644 wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH create mode 100644 wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI create mode 100644 wmake/rules/darwinIntel64Gcc/mplibOPENMPI create mode 120000 wmake/rules/darwinIntel64Gcc47 diff --git a/.gitignore b/.gitignore index 43edf63d..01b59c8c 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ core lnInclude # build directories - anywhere +darwinIntel64Gcc*/ linux*Clang*/ linux*Gcc*/ linux*Icc*/ diff --git a/OpenFOAM-2.3.x-Mac.patch b/OpenFOAM-2.3.x-Mac.patch new file mode 100644 index 00000000..1e7723d9 --- /dev/null +++ b/OpenFOAM-2.3.x-Mac.patch @@ -0,0 +1,1944 @@ +# HG changeset patch +# Parent c484792c3c037623473c0a8f11a5e52e66c0e929 + +diff --git a/applications/solvers/combustion/fireFoam/Make/options b/applications/solvers/combustion/fireFoam/Make/options +--- a/applications/solvers/combustion/fireFoam/Make/options ++++ b/applications/solvers/combustion/fireFoam/Make/options +@@ -36,8 +36,10 @@ + -lsampling \ + -lcompressibleRASModels \ + -lcompressibleLESModels \ ++ -lcompressibleTurbulenceModel \ + -lspecie \ + -lfluidThermophysicalModels \ ++ -lliquidProperties \ + -lsolidProperties \ + -lsolidMixtureProperties \ + -lthermophysicalFunctions \ +@@ -53,5 +55,6 @@ + -lpyrolysisModels \ + -lregionCoupling \ + -llagrangianIntermediate \ ++ -llagrangian \ + -llagrangianTurbulence \ + -lODE +diff --git a/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options b/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options +--- a/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options ++++ b/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options +@@ -13,6 +13,7 @@ + -lfluidThermophysicalModels \ + -lspecie \ + -lcompressibleRASModels \ ++ -lcompressibleTurbulenceModel \ + -lfiniteVolume \ + -lsampling \ + -lmeshTools \ +diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options +--- a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options ++++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options +@@ -21,6 +21,7 @@ + -lfluidThermophysicalModels \ + -lsolidThermo \ + -lspecie \ ++ -lmeshTools \ + -lcompressibleTurbulenceModel \ + -lcompressibleRASModels \ + -lcompressibleLESModels \ +diff --git a/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options b/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options +--- a/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options ++++ b/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options +@@ -6,6 +6,7 @@ + -I$(LIB_SRC)/finiteVolume/lnInclude + + EXE_LIBS = \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleRASModels \ + -lincompressibleTransportModels \ + -lfiniteVolume +diff --git a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options +--- a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options ++++ b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options +@@ -11,6 +11,7 @@ + + + EXE_LIBS = \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleRASModels \ + -lincompressibleTransportModels \ + -lfiniteVolume \ +diff --git a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options +--- a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options ++++ b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options +@@ -21,6 +21,7 @@ + -lfluidThermophysicalModels \ + -lspecie \ + -lradiationModels \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ + -lincompressibleTransportModels \ +diff --git a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options +--- a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options ++++ b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options +@@ -27,6 +27,7 @@ + -lradiationModels \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleTransportModels \ + -lfiniteVolume \ + -lmeshTools \ +diff --git a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options +--- a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options ++++ b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options +@@ -30,6 +30,7 @@ + -lfvOptions \ + -lsampling \ + -lmeshTools \ ++ -lcompressibleTurbulenceModel \ + -lcompressibleRASModels \ + -lcompressibleLESModels \ + -lspecie \ +@@ -44,6 +45,8 @@ + -lradiationModels \ + -lsurfaceFilmModels \ + -lsurfaceFilmDerivedFvPatchFields \ ++ -lliquidProperties \ ++ -llagrangian \ + -llagrangianIntermediate \ + -llagrangianTurbulence \ + -lODE \ +diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/Make/options b/applications/solvers/multiphase/multiphaseEulerFoam/Make/options +--- a/applications/solvers/multiphase/multiphaseEulerFoam/Make/options ++++ b/applications/solvers/multiphase/multiphaseEulerFoam/Make/options +@@ -17,6 +17,7 @@ + -linterfaceProperties \ + -lincompressibleTransportModels \ + -lcompressibleMultiphaseEulerianInterfacialModels \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleLESModels \ + -lincompressibleRASModels \ + -lfiniteVolume +diff --git a/applications/utilities/mesh/generation/blockMesh/Make/options b/applications/utilities/mesh/generation/blockMesh/Make/options +--- a/applications/utilities/mesh/generation/blockMesh/Make/options ++++ b/applications/utilities/mesh/generation/blockMesh/Make/options +@@ -6,4 +6,5 @@ + EXE_LIBS = \ + -lblockMesh \ + -lmeshTools \ ++ -lfiniteVolume \ + -ldynamicMesh +diff --git a/applications/utilities/mesh/generation/foamyQuadMesh/Make/options b/applications/utilities/mesh/generation/foamyQuadMesh/Make/options +--- a/applications/utilities/mesh/generation/foamyQuadMesh/Make/options ++++ b/applications/utilities/mesh/generation/foamyQuadMesh/Make/options +@@ -27,6 +27,8 @@ + + EXE_LIBS = \ + $(CGAL_LIBS) \ ++ -lboost_thread-mt \ ++ -lgmp \ + -lextrude2DMesh \ + -lextrudeModel \ + -lcv2DMesh \ +diff --git a/applications/utilities/mesh/generation/snappyHexMesh/Make/options b/applications/utilities/mesh/generation/snappyHexMesh/Make/options +--- a/applications/utilities/mesh/generation/snappyHexMesh/Make/options ++++ b/applications/utilities/mesh/generation/snappyHexMesh/Make/options +@@ -1,5 +1,4 @@ + EXE_INC = \ +- /* -g -DFULLDEBUG -O0 */ \ + -I$(LIB_SRC)/parallel/decompose/decompositionMethods/lnInclude \ + -I$(LIB_SRC)/mesh/autoMesh/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude \ +diff --git a/applications/utilities/mesh/manipulation/renumberMesh/Make/options b/applications/utilities/mesh/manipulation/renumberMesh/Make/options +--- a/applications/utilities/mesh/manipulation/renumberMesh/Make/options ++++ b/applications/utilities/mesh/manipulation/renumberMesh/Make/options +@@ -1,5 +1,4 @@ + EXE_INC = \ +- /* -DFULLDEBUG -g -O0 */ \ + ${COMPILE_FLAGS} \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/dynamicMesh/lnInclude \ +diff --git a/applications/utilities/miscellaneous/expandDictionary/Make/options b/applications/utilities/miscellaneous/expandDictionary/Make/options +--- a/applications/utilities/miscellaneous/expandDictionary/Make/options ++++ b/applications/utilities/miscellaneous/expandDictionary/Make/options +@@ -1,2 +0,0 @@ +-/* EXE_INC = */ +-/* EXE_LIBS = */ +diff --git a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options +--- a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options ++++ b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options +@@ -42,10 +42,8 @@ + -lmeshTools \ + -lmolecularMeasurements \ + -lmolecule \ +-/* -lmultiphaseInterFoam */ \ + -lODE \ + -lOpenFOAM \ +-/* -lphaseModel */ \ + -lpotential \ + -lradiationModels \ + -lrandomProcesses \ +diff --git a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options +--- a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options ++++ b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options +@@ -4,5 +4,6 @@ + -I$(LIB_SRC)/meshTools/lnInclude + + EXE_LIBS = \ ++ -lfiniteVolume \ + -ldynamicMesh \ + -lmeshTools +diff --git a/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options b/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options +--- a/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options ++++ b/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options +@@ -1,5 +1,4 @@ + EXE_INC = \ +- /* -DFULLDEBUG -g -O0 */ \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/sampling/lnInclude \ +@@ -11,4 +10,3 @@ + -lsampling \ + -lgenericPatchFields \ + -llagrangian +- +diff --git a/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options b/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options +--- a/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options ++++ b/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options +@@ -12,10 +12,12 @@ + -lincompressibleTransportModels \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ ++ -lincompressibleTurbulenceModel \ + -lfluidThermophysicalModels \ + -lspecie \ + -lcompressibleRASModels \ + -lcompressibleLESModels \ ++ -lcompressibleTurbulenceModel \ + -lfiniteVolume \ + -lfvOptions \ + -lmeshTools \ +diff --git a/applications/utilities/postProcessing/turbulence/R/Make/options b/applications/utilities/postProcessing/turbulence/R/Make/options +--- a/applications/utilities/postProcessing/turbulence/R/Make/options ++++ b/applications/utilities/postProcessing/turbulence/R/Make/options +@@ -8,10 +8,12 @@ + -I$(LIB_SRC)/finiteVolume/lnInclude + + EXE_LIBS = \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleTransportModels \ + -lincompressibleRASModels \ + -lfluidThermophysicalModels \ + -lspecie \ ++ -lcompressibleTurbulenceModel \ + -lcompressibleRASModels \ + -lfiniteVolume \ + -lgenericPatchFields \ +diff --git a/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options b/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options +--- a/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options ++++ b/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options +@@ -5,6 +5,7 @@ + -I$(LIB_SRC)/finiteVolume/lnInclude + + EXE_LIBS = \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleRASModels \ + -lincompressibleTransportModels \ + -lfiniteVolume \ +diff --git a/applications/utilities/postProcessing/velocityField/Pe/Make/options b/applications/utilities/postProcessing/velocityField/Pe/Make/options +--- a/applications/utilities/postProcessing/velocityField/Pe/Make/options ++++ b/applications/utilities/postProcessing/velocityField/Pe/Make/options +@@ -12,10 +12,12 @@ + -lincompressibleTransportModels \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ ++ -lincompressibleTurbulenceModel \ + -lfluidThermophysicalModels \ + -lspecie \ + -lcompressibleRASModels \ + -lcompressibleLESModels \ ++ -lcompressibleTurbulenceModel \ + -lfiniteVolume \ + -lgenericPatchFields \ + -lmeshTools +diff --git a/applications/utilities/postProcessing/wall/wallShearStress/Make/options b/applications/utilities/postProcessing/wall/wallShearStress/Make/options +--- a/applications/utilities/postProcessing/wall/wallShearStress/Make/options ++++ b/applications/utilities/postProcessing/wall/wallShearStress/Make/options +@@ -7,8 +7,10 @@ + EXE_LIBS = \ + -lincompressibleTransportModels \ + -lincompressibleRASModels \ ++ -lincompressibleTurbulenceModel \ + -lfluidThermophysicalModels \ + -lspecie \ + -lcompressibleRASModels \ ++ -lcompressibleTurbulenceModel \ + -lfiniteVolume \ + -lgenericPatchFields +diff --git a/applications/utilities/postProcessing/wall/yPlusLES/Make/options b/applications/utilities/postProcessing/wall/yPlusLES/Make/options +--- a/applications/utilities/postProcessing/wall/yPlusLES/Make/options ++++ b/applications/utilities/postProcessing/wall/yPlusLES/Make/options +@@ -8,6 +8,7 @@ + + EXE_LIBS = \ + -lincompressibleLESModels \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleTransportModels \ + -lfiniteVolume \ + -lgenericPatchFields +diff --git a/applications/utilities/postProcessing/wall/yPlusRAS/Make/options b/applications/utilities/postProcessing/wall/yPlusRAS/Make/options +--- a/applications/utilities/postProcessing/wall/yPlusRAS/Make/options ++++ b/applications/utilities/postProcessing/wall/yPlusRAS/Make/options +@@ -10,9 +10,11 @@ + EXE_LIBS = \ + -lincompressibleTransportModels \ + -lincompressibleRASModels \ ++ -lincompressibleTurbulenceModel \ + -lfluidThermophysicalModels \ + -lspecie \ + -lcompressibleRASModels \ ++ -lcompressibleTurbulenceModel \ + -lfiniteVolume \ + -lgenericPatchFields \ + -lmeshTools \ +diff --git a/applications/utilities/preProcessing/applyBoundaryLayer/Make/options b/applications/utilities/preProcessing/applyBoundaryLayer/Make/options +--- a/applications/utilities/preProcessing/applyBoundaryLayer/Make/options ++++ b/applications/utilities/preProcessing/applyBoundaryLayer/Make/options +@@ -8,6 +8,7 @@ + + EXE_LIBS = \ + -lfiniteVolume \ ++ -lincompressibleTurbulenceModel \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ + -lincompressibleTransportModels \ +diff --git a/bin/addr2line4Mac.py b/bin/addr2line4Mac.py +new file mode 100755 +--- /dev/null ++++ b/bin/addr2line4Mac.py +@@ -0,0 +1,49 @@ ++#! /usr/bin/python ++ ++import sys ++filename=sys.argv[1] ++address=sys.argv[2] ++import re ++from os import environ,path ++ ++fullFile=None ++if path.exists(filename): ++ fullFile=filename ++ ++for v in ["PATH","LD_LIBRARY_PATH"]: ++ if not fullFile: ++ for d in environ[v].split(':'): ++ if path.exists(path.join(d,filename)): ++ fullFile=path.join(d,filename) ++ break ++ ++if not fullFile: ++ fullFile=filename ++ ++answer="??:0" ++ ++if path.exists(fullFile): ++ import subprocess ++ ++ result=subprocess.Popen(["xcrun", "atos", ++ "-o",fullFile, ++ address], ++ stdout=subprocess.PIPE ++ ).communicate()[0] ++ match=re.compile('.+ \((.+)\) \((.+)\)').match(result) ++ if match: ++ answer=match.group(2)+" "+match.group(1) ++ else: ++ import os ++ result=subprocess.Popen(["xcrun", "atos", ++ "-p",str(os.getppid()), ++ address], ++ stdout=subprocess.PIPE ++ ).communicate()[0] ++ match=re.compile('.+ \((.+)\) \((.+)\)').match(result) ++ if match: ++ answer=match.group(2)+" "+match.group(1) ++ ++print answer, ++ ++sys.exit(255) +diff --git a/etc/bashrc b/etc/bashrc +--- a/etc/bashrc ++++ b/etc/bashrc +@@ -199,6 +199,10 @@ + + #- Clean MANPATH + cleaned=`$foamClean "$MANPATH" "$foamOldDirs"` && MANPATH="$cleaned" ++if [[ `uname -s` == "Darwin" ]] ++then ++ cleaned=`$foamClean "$DYLD_LIBRARY_PATH" "$foamOldDirs"` && DYLD_LIBRARY_PATH="$cleaned" ++fi + + export PATH LD_LIBRARY_PATH MANPATH + +@@ -237,6 +241,14 @@ + export LD_PRELOAD + fi + ++if [[ `uname -s` == "Darwin" ]] ++then ++ if [[ `ulimit -n` == "unlimited" || `ulimit -n` < 8192 ]] ++ then ++ # higher limit needed for wmkdeps ++ ulimit -n 8192 ++ fi ++fi + + # cleanup environment: + # ~~~~~~~~~~~~~~~~~~~~ +diff --git a/etc/config/CGAL.sh b/etc/config/CGAL.sh +--- a/etc/config/CGAL.sh ++++ b/etc/config/CGAL.sh +@@ -35,6 +35,22 @@ + export BOOST_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$boost_version + export CGAL_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$cgal_version + ++if [ -n "$WM_USE_MACPORT" ] ++then ++ if [ -d "/opt/local/include/boost" ] ++ then ++ export BOOST_ARCH_PATH=/opt/local ++ else ++ echo "No boost in MacPorts. Install boost with 'port install boost'" ++ fi ++ if [ -d "/opt/local/include/CGAL" ] ++ then ++ export CGAL_ARCH_PATH=/opt/local ++ else ++ echo "No CGAL in MacPorts. Install CGAL with 'port install cgal'" ++ fi ++fi ++ + if [ "$FOAM_VERBOSE" -a "$PS1" ] + then + echo "Using CGAL and boost" +diff --git a/etc/config/metis.sh b/etc/config/metis.sh +--- a/etc/config/metis.sh ++++ b/etc/config/metis.sh +@@ -36,4 +36,15 @@ + export METIS_VERSION=metis-5.1.0 + export METIS_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$METIS_VERSION + ++if [ -n "$WM_USE_MACPORT" ] ++then ++ if [ -e "/opt/local/include/metis.h" ] ++ then ++ export METIS_ARCH_PATH=/opt/local ++ unset METIS_VERSION ++ else ++ echo "No metis in MacPorts. Install metis with 'port install metis'" ++ fi ++fi ++ + # ----------------------------------------------------------------------------- +diff --git a/etc/config/paraview.sh b/etc/config/paraview.sh +--- a/etc/config/paraview.sh ++++ b/etc/config/paraview.sh +@@ -144,6 +144,19 @@ + unset PV_PLUGIN_PATH + fi + ++if [ $WM_ARCH_BASE=="darwin" ] ++then ++ : ${PARAVIEW_APP_DIR:="/Applications/paraview.app"}; export PARAVIEW_APP_DIR ++ if [ -d $PARAVIEW_APP_DIR -a ! -r $ParaView_DIR ] ++ then ++ echo "Using paraview in directory $PARAVIEW_APP_DIR" ++ unset ParaView_VERSION ParaView_MAJOR ParaView_DIR ++ # needs to be an alias because if it is in the path the Python Shell does not work ++ alias paraview=$PARAVIEW_APP_DIR/Contents/MacOS/paraview ++ export PATH=$PARAVIEW_APP_DIR/Contents/bin:$PATH ++ fi ++fi ++ + unset _foamParaviewEval + unset cleaned cmake paraviewInstDir paraviewPython + +diff --git a/etc/config/scotch.sh b/etc/config/scotch.sh +--- a/etc/config/scotch.sh ++++ b/etc/config/scotch.sh +@@ -36,4 +36,16 @@ + export SCOTCH_VERSION=scotch_6.0.0 + export SCOTCH_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$SCOTCH_VERSION + ++if [ -n "$WM_USE_MACPORT" ] ++then ++ if [ -e "/opt/local/include/scotch.h" ] ++ then ++ export SCOTCH_ARCH_PATH=/opt/local ++ export SCOTCH_ROOT=$SCOTCH_ARCH_PATH ++# unset SCOTCH_VERSION ++ else ++ echo "No scotch in MacPorts. Install scotch with 'port install scotch'" ++ fi ++fi ++ + # ----------------------------------------------------------------------------- +diff --git a/etc/config/settings.sh b/etc/config/settings.sh +--- a/etc/config/settings.sh ++++ b/etc/config/settings.sh +@@ -46,6 +46,14 @@ + while [ $# -ge 1 ] + do + export LD_LIBRARY_PATH=$1:$LD_LIBRARY_PATH ++ if [ "$WM_ARCH_BASE" == "darwin" ] ++ then ++ # do NOT add the lib of MacPort as this might break programs ++ if [ "$1" != "/opt/local/lib" ] ++ then ++ export DYLD_LIBRARY_PATH=$1:$DYLD_LIBRARY_PATH ++ fi ++ fi + shift + done + } +@@ -151,6 +159,152 @@ + export WM_LDFLAGS='-mabi=64 -G0' + ;; + ++Darwin) ++ export WM_ARCH_BASE=darwin ++ ++ case `uname -p` in ++ powerpc) ++ export WM_ARCH=darwinPpc ++ ;; ++ i386) ++ export WM_ARCH=darwinIntel ++ case $WM_ARCH_OPTION in ++ 32) ++ export WM_COMPILER_LIB_ARCH=32 ++ export WM_CC='gcc' ++ export WM_CXX='g++' ++ export WM_CFLAGS='-m32 -fPIC' ++ export WM_CXXFLAGS='-m32 -fPIC' ++ export WM_LDFLAGS='-m32' ++ ;; ++ 64) ++ WM_ARCH=darwinIntel64 ++ export WM_COMPILER_LIB_ARCH=64 ++ export WM_CC='gcc' ++ export WM_CXX='g++' ++ export WM_CFLAGS='-m64 -fPIC' ++ export WM_CXXFLAGS='-m64 -fPIC' ++ export WM_LDFLAGS='-m64' ++ ;; ++ *) ++ echo Unknown WM_ARCH_OPTION $WM_ARCH_OPTION, should be 32 or 64 ++ ;; ++ esac ++ ;; ++ *) ++ echo "Unknown architecture "`uname -p` "for Darwin" ++ esac ++ ++ which -s port >/dev/null ++ if [ $? -eq "0" -a -d '/opt/local/etc/macports' ] ++ then ++ if [ "$FOAM_VERBOSE" -a "$PS1" ] ++ then ++ echo "Using Macports binaries" ++ fi ++ ++ export WM_USE_MACPORT=1 ++ export WM_BASE_COMPILER=`echo $WM_COMPILER | tr -d "[:digit:]"` ++ export WM_MACPORT_MPI_VERSION=`echo $WM_COMPILER | tr "[:upper:]" "[:lower:]"` ++ export WM_MACPORT_VERSION=`echo $WM_MACPORT_MPI_VERSION | tr -d "[:alpha:]" | sed -e "s/\(.\)\(.\)/\1\.\2/"` ++ ++ if [ -z "$WM_CHOSEN_MAC_MPI" ] ++ then ++ if [ -e '/opt/local/bin/mpicc' ] ++ then ++ readlink /opt/local/bin/mpicc | grep openmpi >/dev/null ++ if [ $? -eq "0" ] ++ then ++ export WM_MPLIB=MACPORTOPENMPI ++ if [ "$FOAM_VERBOSE" -a "$PS1" ] ++ then ++ echo "Using OpenMPI from MacPorts" ++ fi ++ else ++ readlink /opt/local/bin/mpicc | grep mpich >/dev/null ++ if [ $? -eq "0" ] ++ then ++ export WM_MPLIB=MACPORTMPICH ++ if [ "$FOAM_VERBOSE" -a "$PS1" ] ++ then ++ echo "Using MPICH from MacPorts" ++ fi ++ else ++ echo "/opt/local/bin/mpicc neither OpenMPI nor MPICH. Confused. Defaulting to OPENMPI" ++ export WM_MPLIB=OPENMPI ++ fi ++ fi ++ fi ++ else ++ export WM_MPLIB=$WM_CHOSEN_MAC_MPI ++ if [ "$FOAM_VERBOSE" -a "$PS1" ] ++ then ++ echo "User chose WM_CHOSEN_MAC_MPI=$WM_CHOSEN_MAC_MPI" ++ fi ++ fi ++ ++ if [ "$WM_MPLIB" == "MACPORTOPENMPI" ] ++ then ++ if [ ! -e "/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION" ] ++ then ++ export WM_MACPORT_MPI_VERSION=mp ++ if [ ! -e "/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION" ] ++ then ++ echo "Proper OpenMPI not installed. Either do 'port install openmpi-$WM_MACPORT_MPI_VERSION' or 'port install openmpi-default'" ++ fi ++ fi ++ else ++ if [ "$WM_MPLIB" == "MACPORTMPICH" ] ++ then ++ if [ ! -e "/opt/local/lib/mpich-$WM_MACPORT_MPI_VERSION" ] ++ then ++ echo "MPICH wants the same version as the used compiler. Do 'port install mpich-$WM_MACPORT_MPI_VERSION'" ++ fi ++ fi ++ fi ++ ++ if [ "$WM_COMPILER" != "Gcc" ] ++ then ++ if [ "$WM_BASE_COMPILER" == "Gcc" ] ++ then ++ export WM_CC="gcc-mp-$WM_MACPORT_VERSION" ++ export WM_CXX="g++-mp-$WM_MACPORT_VERSION" ++ elif [ "$WM_BASE_COMPILER" == "Clang" ] ++ then ++ export WM_CC="clang-mp-$WM_MACPORT_VERSION" ++ export WM_CXX="clang++-mp-$WM_MACPORT_VERSION" ++ elif [ "$WM_BASE_COMPILER" == "Dragonegg" ] ++ then ++ export WM_CC="dragonegg-$WM_MACPORT_VERSION-gcc" ++ export WM_CXX="dragonegg-$WM_MACPORT_VERSION-g++" ++ else ++ echo "Unknown base compiler $WM_BASE_COMPILER" ++ fi ++ ++ ruleDirBase=$WM_PROJECT_DIR/wmake/rules/$WM_ARCH ++ ruleDirTarget=$ruleDirBase$WM_BASE_COMPILER ++ ruleDir=$ruleDirBase$WM_COMPILER ++ if [ ! -e $ruleDir ] ++ then ++ echo "Rule directory $ruleDir not existing. Linking to $ruleDirTarget" ++ ln -s $ruleDirTarget $ruleDir ++ fi ++ unset ruleDir ruleDirBase ++ fi ++ else ++ echo "Seems you're not using MacPorts. This is currently not supported/tested. Find this line in 'etc/config/settings.sh', modify it accordingly and send patches to Bernhard" ++ export WM_COMPILER= ++ export WM_MPLIB=OPENMPI ++ fi ++ ++ # Make sure that binaries use the best features of the used OS-Version ++ # We need to get rid of the revision number from this string. eg turn "10.7.5" into "10.7" ++ # v=(`sw_vers -productVersion | sed 's/\./ /g'`) ++ # export MACOSX_DEPLOYMENT_TARGET="${v[1]}.${v[2]}" ++ export MACOSX_DEPLOYMENT_TARGET=`sw_vers -productVersion | sed -e "s/\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\1.\2/g"` ++ ;; ++ ++ + *) # an unsupported operating system + /bin/cat <&2 + +@@ -391,6 +545,19 @@ + unset libDir + ;; + ++MACPORTOPENMPI) ++ unset OPAL_PREFIX ++ ++ export FOAM_MPI=openmpi-macport-$WM_MACPORT_MPI_VERSION ++ ++ # Currently not correctly working on MacPorts ++ # libDir=`mpicc-openmpi-$WM_MACPORT_MPI_VERSION --showme:libdirs` ++ libDir=/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION ++ ++ _foamAddLib $libDir ++ unset libDir ++ ;; ++ + OPENMPI) + export FOAM_MPI=openmpi-1.6.5 + # optional configuration tweaks: +@@ -439,6 +606,17 @@ + _foamAddLib $GM_LIB_PATH + ;; + ++MACPORTMPICH) ++ export FOAM_MPI=mpich-macports-$WM_MACPORT_MPI_VERSION ++ export MPI_HOME=$WM_THIRD_PARTY_DIR/$FOAM_MPI ++ ++ libDir=/opt/local/lib/mpich-$WM_MACPORT_MPI_VERSION ++ ++ _foamAddLib $libDir ++ unset libDir ++ ++ ;; ++ + HPMPI) + export FOAM_MPI=hpmpi + export MPI_HOME=/opt/hpmpi +@@ -566,6 +744,23 @@ + fi + export MPI_BUFFER_SIZE + ++if [ -n "$WM_USE_MACPORT" ] ++then ++ if [ -e "/opt/local/include/mpfr.h" ] ++ then ++ export MPFR_ARCH_PATH=/opt/local ++ unset MPFR_VERSION ++ else ++ echo "No mpfr in MacPorts. Install mpfr with 'port install mpfr'" ++ fi ++ if [ -e "/opt/local/include/gmp.h" ] ++ then ++ export GMP_ARCH_PATH=/opt/local ++ unset GMP_VERSION ++ else ++ echo "No gmp in MacPorts. Install gmp with 'port install gmp'" ++ fi ++fi + + # cleanup environment: + # ~~~~~~~~~~~~~~~~~~~~ +diff --git a/etc/controlDict b/etc/controlDict +--- a/etc/controlDict ++++ b/etc/controlDict +@@ -18,7 +18,8 @@ + + Documentation + { +- docBrowser "firefox %f"; ++ // docBrowser "firefox %f"; ++ docBrowser "open %f"; + doxyDocDirs + ( + "$WM_PROJECT_USER_DIR/html" +diff --git a/src/OSspecific/POSIX/POSIX.C b/src/OSspecific/POSIX/POSIX.C +--- a/src/OSspecific/POSIX/POSIX.C ++++ b/src/OSspecific/POSIX/POSIX.C +@@ -53,7 +53,10 @@ + #include + #include + #include ++#ifndef darwin + #include ++#else ++#endif + + #include + +@@ -1174,6 +1177,14 @@ + } + void* handle = ::dlopen(lib.c_str(), RTLD_LAZY|RTLD_GLOBAL); + ++#ifdef darwin ++ if(!handle && lib.ext()=="so") { ++ fileName lName=lib.lessExt()+".dylib"; ++ handle = ++ dlopen(lName.c_str(), RTLD_LAZY|RTLD_GLOBAL); ++ } ++#endif ++ + if (!handle && check) + { + WarningIn("dlOpen(const fileName&, const bool)") +@@ -1267,9 +1278,15 @@ + void *data + ) + { ++#ifdef darwin ++ WarningIn("collectLibsCallback") ++ << "Not yet implemented for Mac OS X" ++ << Foam::endl; ++#else + Foam::DynamicList* ptr = + reinterpret_cast*>(data); + ptr->append(info->dlpi_name); ++#endif + return 0; + } + +@@ -1277,7 +1294,13 @@ + Foam::fileNameList Foam::dlLoaded() + { + DynamicList libs; ++#ifdef darwin ++ WarningIn("dlLoaded") ++ << "Not yet implemented for Mac OS X" ++ << endl; ++#else + dl_iterate_phdr(collectLibsCallback, &libs); ++#endif + if (POSIX::debug) + { + std::cout +diff --git a/src/OSspecific/POSIX/clockTime/clockTime.H b/src/OSspecific/POSIX/clockTime/clockTime.H +--- a/src/OSspecific/POSIX/clockTime/clockTime.H ++++ b/src/OSspecific/POSIX/clockTime/clockTime.H +@@ -37,6 +37,9 @@ + #define clockTime_H + + #include ++#ifdef darwin ++#include ++#endif + + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +diff --git a/src/OSspecific/POSIX/fileStat.C b/src/OSspecific/POSIX/fileStat.C +--- a/src/OSspecific/POSIX/fileStat.C ++++ b/src/OSspecific/POSIX/fileStat.C +@@ -29,7 +29,9 @@ + + #include + #include ++#ifndef darwin + #include ++#endif + + // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +diff --git a/src/OSspecific/POSIX/printStack.C b/src/OSspecific/POSIX/printStack.C +--- a/src/OSspecific/POSIX/printStack.C ++++ b/src/OSspecific/POSIX/printStack.C +@@ -33,6 +33,11 @@ + #include + #include + #include ++#include ++ ++#ifdef darwin ++#include ++#endif + + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +@@ -53,11 +58,22 @@ + for (label cnt = 0; cnt <= line; cnt++) + { + char buffer[MAX]; ++ + char* s = fgets(buffer, MAX-1, cmdPipe); + + if (s == NULL) + { ++#ifdef darwin ++ // workaround for the Python-Script ++ for(int i=0;i(addressStr); +@@ -109,11 +129,19 @@ + myAddress = nStream.str(); + } + ++#ifndef darwin + if (filename[0] == '/') ++#else ++ if (1) ++#endif + { + string line = pOpen + ( ++#ifndef darwin + "addr2line -f --demangle=auto --exe " ++#else ++ "addr2line4Mac.py " ++#endif + + filename + + " " + + myAddress, +@@ -151,7 +179,11 @@ + { + string fcnt = pOpen + ( ++#ifndef darwin + "addr2line -f --demangle=auto --exe " ++#else ++ "addr2line4Mac.py " ++#endif + + filename + + " " + + address +@@ -166,7 +198,6 @@ + os << "Uninterpreted: " << raw.c_str(); + } + +- + void error::safePrintStack(std::ostream& os) + { + // Get raw stack symbols +@@ -231,6 +262,7 @@ + + os << '#' << label(i) << " "; + //os << "Raw : " << msg << "\n\t"; ++#ifndef darwin + { + string::size_type lPos = msg.find('['); + string::size_type rPos = msg.find(']'); +@@ -260,7 +292,38 @@ + } + + string::size_type bracketPos = msg.find('('); +- ++#else ++ string::size_type counter=0; ++ while(msg[counter]!=' ') { ++ counter++; ++ } ++ while(msg[counter]==' ') { ++ counter++; ++ } ++ string::size_type fileStart=counter; ++ while(msg[counter]!=' ') { ++ counter++; ++ } ++ programFile = msg.substr(fileStart,counter-fileStart); ++ if(programFile=="???") { ++ char path[1024]; ++ uint32_t size = sizeof(path); ++ if (_NSGetExecutablePath(path, &size) == 0) { ++ programFile=path; ++ } else { ++ programFile="unknownFile"; ++ } ++ } ++ while(msg[counter]==' ') { ++ counter++; ++ } ++ string::size_type addrStart=counter; ++ while(msg[counter]!=' ') { ++ counter++; ++ } ++ address = msg.substr(addrStart,counter-addrStart); ++#endif ++#ifndef darwin + if (bracketPos != string::npos) + { + string::size_type start = bracketPos+1; +@@ -270,7 +333,21 @@ + if (plusPos != string::npos) + { + string cName(msg.substr(start, plusPos-start)); ++#else ++ if(1){ ++ while(msg[counter]==' ') { ++ counter++; ++ } ++ string::size_type nameStart=counter; ++ while(msg[counter]!=' ') { ++ counter++; ++ } + ++ string::size_type start = counter; ++ ++ if(1) { ++ string cName(msg.substr(nameStart,counter-nameStart)); ++#endif + int status; + char* cplusNamePtr = abi::__cxa_demangle + ( +diff --git a/src/OSspecific/POSIX/signals/sigFpe.C b/src/OSspecific/POSIX/signals/sigFpe.C +--- a/src/OSspecific/POSIX/signals/sigFpe.C ++++ b/src/OSspecific/POSIX/signals/sigFpe.C +@@ -42,6 +42,12 @@ + + # include + ++#elif defined(__APPLE__) ++ ++// # include ++#include ++#include ++ + #endif + + #include +@@ -82,10 +88,40 @@ + return result; + } + ++#elif defined(__APPLE__) ++ ++void *(*Foam::sigFpe::system_malloc_)(malloc_zone_t *zone, size_t size)=NULL; ++ ++void* Foam::sigFpe::nan_malloc_(malloc_zone_t *zone, size_t size) ++{ ++ void *result=system_malloc_(zone,size); ++ ++ // initialize to signalling NaN ++# ifdef WM_SP ++ ++ const uint32_t sNAN = 0x7ff7fffflu; ++ uint32_t* dPtr = reinterpret_cast(result); ++ ++# else ++ ++ const uint64_t sNAN = 0x7ff7ffffffffffffllu; ++ uint64_t* dPtr = reinterpret_cast(result); ++ ++# endif ++ ++ const size_t nScalars = size/sizeof(scalar); ++ for (size_t i = 0; i < nScalars; ++i) ++ { ++ *dPtr++ = sNAN; ++ } ++ ++ return result; ++} ++ + #endif + + +-#ifdef LINUX_GNUC ++#if defined(LINUX_GNUC) || defined(__APPLE__) + + void Foam::sigFpe::sigHandler(int) + { +@@ -150,6 +186,44 @@ + __malloc_hook = oldMallocHook_; + } + ++ # elif defined(__APPLE__) ++ ++ if(system_malloc_!=NULL) { ++ malloc_zone_t *zone = malloc_default_zone(); ++ if(zone==NULL) { ++ FatalErrorIn("Foam__sigFpe::set") ++ << "Could not get malloc_default_zone()." << endl ++ << "Seems like this version of Mac OS X doesn't support FOAM_SETNAN" ++ << endl ++ << exit(FatalError); ++ ++ } ++ ++ if(zone->version>=8) ++ { ++ vm_protect( ++ mach_task_self(), ++ (uintptr_t)zone, ++ sizeof(malloc_zone_t), ++ 0, ++ VM_PROT_READ | VM_PROT_WRITE ++ );//remove the write protection ++ } ++ zone->malloc=system_malloc_; ++ system_malloc_=NULL; ++ if(zone->version==8) ++ { ++ vm_protect( ++ mach_task_self(), ++ (uintptr_t)zone, ++ sizeof(malloc_zone_t), ++ 0, ++ VM_PROT_READ ++ );//put the write protection back ++ } ++ ++ } ++ + # endif + } + } +@@ -218,6 +292,28 @@ + NULL + ); + ++# elif defined(__APPLE__) ++ ++ struct sigaction newAction; ++ newAction.sa_handler = sigHandler; ++ newAction.sa_flags = SA_NODEFER; ++ sigemptyset(&newAction.sa_mask); ++ if (sigaction(SIGFPE, &newAction, &oldAction_) < 0) ++ { ++ FatalErrorIn ++ ( ++ "Foam::sigFpe::set()" ++ ) << "Cannot set SIGFPE trapping" ++ << abort(FatalError); ++ } ++ _MM_SET_EXCEPTION_MASK(_MM_GET_EXCEPTION_MASK() & ~_MM_MASK_INVALID); ++ _MM_SET_EXCEPTION_MASK(_MM_GET_EXCEPTION_MASK() & ~_MM_MASK_DIV_ZERO); ++ ++ _mm_setcsr( _MM_MASK_MASK &~ ++ (_MM_MASK_OVERFLOW|_MM_MASK_INVALID|_MM_MASK_DIV_ZERO) ); ++ ++ supported=true; ++ + # endif + + +@@ -242,11 +338,56 @@ + bool supported = false; + + # ifdef LINUX_GNUC ++ + supported = true; + + // Set our malloc + __malloc_hook = Foam::sigFpe::nanMallocHook_; + ++#elif defined(__APPLE__) ++ ++ if(system_malloc_!=NULL) { ++ FatalErrorIn("Foam__sigFpe::set") ++ << "system_malloc_ already reset." << endl ++ << "This should never happen" ++ << endl ++ << exit(FatalError); ++ } ++ ++ malloc_zone_t *zone = malloc_default_zone(); ++ if(zone==NULL) { ++ FatalErrorIn("Foam__sigFpe::set") ++ << "Could not get malloc_default_zone()." << endl ++ << "Seems like this version of Mac OS X doesn't support FOAM_SETNAN" ++ << endl ++ << exit(FatalError); ++ } ++ // According to http://bkdc.ubiquity.ro/2011/07/how-to-set-malloc-hooks-in-osx-lion-107.html ++ if(zone->version>=8) ++ { ++ vm_protect( ++ mach_task_self(), ++ (uintptr_t)zone, ++ sizeof(malloc_zone_t), ++ 0, ++ VM_PROT_READ | VM_PROT_WRITE ++ );//remove the write protection ++ } ++ system_malloc_=zone->malloc; ++ zone->malloc=Foam::sigFpe::nan_malloc_; ++ if(zone->version==8) ++ { ++ vm_protect( ++ mach_task_self(), ++ (uintptr_t)zone, ++ sizeof(malloc_zone_t), ++ 0, ++ VM_PROT_READ ++ );//put the write protection back ++ } ++ ++ supported=true; ++ + # endif + + +diff --git a/src/OSspecific/POSIX/signals/sigFpe.H b/src/OSspecific/POSIX/signals/sigFpe.H +--- a/src/OSspecific/POSIX/signals/sigFpe.H ++++ b/src/OSspecific/POSIX/signals/sigFpe.H +@@ -55,6 +55,10 @@ + + #include "UList.H" + ++#ifdef __APPLE__ ++#include ++#endif ++ + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + + namespace Foam +@@ -79,12 +83,20 @@ + //- NaN malloc function. From malloc_hook manpage. + static void* nanMallocHook_(size_t size, const void *caller); + ++#elif defined (__APPLE__) ++ ++ //- pointer to the original malloc that is overrided ++ static void *(*system_malloc_)(malloc_zone_t *zone, size_t size); ++ ++ //- the overriding handler ++ static void* nan_malloc_(malloc_zone_t *zone, size_t size); ++ + # endif + + + // Static data members + +-# ifdef LINUX_GNUC ++# if defined(LINUX_GNUC) || defined(__APPLE__) + + //- Handler for caught signals + static void sigHandler(int); +diff --git a/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C b/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C +--- a/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C ++++ b/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C +@@ -30,6 +30,7 @@ + #include "dynamicCode.H" + #include "dynamicCodeContext.H" + #include "Time.H" ++#include "longLong.H" + + // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // + +diff --git a/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C b/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C +--- a/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C ++++ b/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C +@@ -228,13 +228,15 @@ + + off_t mySize = Foam::fileSize(libPath); + off_t masterSize = mySize; +- Pstream::scatter(masterSize); ++ label scatterMaster=masterSize; ++ Pstream::scatter(scatterMaster); ++ masterSize=scatterMaster; + + if (debug) + { + Pout<< endl<< "on processor " << Pstream::myProcNo() +- << " have masterSize:" << masterSize +- << " and localSize:" << mySize ++ << " have masterSize:" << label(masterSize) ++ << " and localSize:" << label(mySize) + << endl; + } + +@@ -244,9 +246,9 @@ + if (debug) + { + Pout<< "Local file " << libPath +- << " not of same size (" << mySize ++ << " not of same size (" << label(mySize) + << ") as master (" +- << masterSize << "). Waiting for " ++ << label(masterSize) << "). Waiting for " + << regIOobject::fileModificationSkew + << " seconds." << endl; + } +@@ -264,8 +266,8 @@ + ) << "Cannot read (NFS mounted) library " << nl + << libPath << nl + << "on processor " << Pstream::myProcNo() +- << " detected size " << mySize +- << " whereas master size is " << masterSize ++ << " detected size " << label(mySize) ++ << " whereas master size is " << label(masterSize) + << " bytes." << nl + << "If your case is not NFS mounted" + << " (so distributed) set fileModificationSkew" +@@ -277,8 +279,8 @@ + if (debug) + { + Pout<< endl<< "on processor " << Pstream::myProcNo() +- << " after waiting: have masterSize:" << masterSize +- << " and localSize:" << mySize ++ << " after waiting: have masterSize:" << label(masterSize) ++ << " and localSize:" << label(mySize) + << endl; + } + } +diff --git a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C +--- a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C ++++ b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C +@@ -50,6 +50,11 @@ + + const char* const Foam::dynamicCode::topDirName = "dynamicCode"; + ++#ifndef darwin ++const char* const Foam::dynamicCode::dynamicLibExtension = ".so"; ++#else ++const char* const Foam::dynamicCode::dynamicLibExtension = ".dylib"; ++#endif + + // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // + +@@ -334,7 +339,7 @@ + + Foam::fileName Foam::dynamicCode::libRelPath() const + { +- return codeRelPath()/libSubDir_/"lib" + codeName_ + ".so"; ++ return codeRelPath()/libSubDir_/"lib" + codeName_ + dynamicLibExtension; + } + + +diff --git a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H +--- a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H ++++ b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H +@@ -109,7 +109,8 @@ + //- Top-level directory name for copy/compiling + static const char* const topDirName; + +- ++ static const char* const dynamicLibExtension; ++ + // Protected Member Functions + + //- Copy lines while expanding variables +@@ -221,7 +222,7 @@ + // Corresponds to codeRoot()/libSubDir()/lib\.so + fileName libPath() const + { +- return codeRoot_/libSubDir_/"lib" + codeName_ + ".so"; ++ return codeRoot_/libSubDir_/"lib" + codeName_ + dynamicLibExtension; + } + + //- Path for specified code name relative to \$FOAM_CASE +diff --git a/src/OpenFOAM/primitives/Scalar/doubleFloat.H b/src/OpenFOAM/primitives/Scalar/doubleFloat.H +--- a/src/OpenFOAM/primitives/Scalar/doubleFloat.H ++++ b/src/OpenFOAM/primitives/Scalar/doubleFloat.H +@@ -31,6 +31,16 @@ + + #include + ++#ifndef DUMMY_SCALAR_FUNCTIONS ++#define DUMMY_SCALAR_FUNCTIONS ++inline float j0f(float x) { return float(j0(double(x)));} ++inline float j1f(float x) { return float(j1(double(x)));} ++inline float y0f(float x) { return float(y0(double(x)));} ++inline float y1f(float x) { return float(y1(double(x)));} ++inline float jnf(const int n, const float s) { return float(jn(n, double(s))); } ++inline float ynf(const int n, const float s) { return float(yn(n, double(s))); } ++#endif ++ + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + + namespace Foam +diff --git a/src/conversion/ensight/part/ensightPart.C b/src/conversion/ensight/part/ensightPart.C +--- a/src/conversion/ensight/part/ensightPart.C ++++ b/src/conversion/ensight/part/ensightPart.C +@@ -51,7 +51,7 @@ + { + const label id = idList[i]; + +- if (id >= field.size() || isnan(field[id])) ++ if (id >= field.size() || std::isnan(field[id])) + { + return false; + } +diff --git a/src/conversion/ensight/part/ensightPartIO.C b/src/conversion/ensight/part/ensightPartIO.C +--- a/src/conversion/ensight/part/ensightPartIO.C ++++ b/src/conversion/ensight/part/ensightPartIO.C +@@ -63,7 +63,7 @@ + { + forAll(idList, i) + { +- if (idList[i] >= field.size() || isnan(field[idList[i]])) ++ if (idList[i] >= field.size() || std::isnan(field[idList[i]])) + { + os.writeUndef(); + } +@@ -80,7 +80,7 @@ + // no idList => perNode + forAll(field, i) + { +- if (isnan(field[i])) ++ if (std::isnan(field[i])) + { + os.writeUndef(); + } +diff --git a/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C b/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C +--- a/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C ++++ b/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C +@@ -231,7 +231,7 @@ + // Send all fieldNames. This has to be exactly the same set as is + // being received! + const GeoField& fld = +- subsetter.baseMesh().lookupObject(fieldNames[i]); ++ subsetter.baseMesh().objectRegistry::lookupObject(fieldNames[i]); + + tmp tsubfld = subsetter.interpolate(fld); + +diff --git a/src/dynamicMesh/meshCut/refineCell/refineCell.H b/src/dynamicMesh/meshCut/refineCell/refineCell.H +--- a/src/dynamicMesh/meshCut/refineCell/refineCell.H ++++ b/src/dynamicMesh/meshCut/refineCell/refineCell.H +@@ -35,8 +35,8 @@ + #ifndef refineCell_H + #define refineCell_H + ++#include "vector.H" + #include "label.H" +-#include "vector.H" + + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +@@ -123,4 +123,3 @@ + #endif + + // ************************************************************************* // +- +diff --git a/src/fvOptions/Make/options b/src/fvOptions/Make/options +--- a/src/fvOptions/Make/options ++++ b/src/fvOptions/Make/options +@@ -13,5 +13,4 @@ + -lfiniteVolume \ + -lsampling \ + -lmeshTools \ +- /*-lsolidThermo*/ \ + -lcompressibleTurbulenceModel +diff --git a/src/meshTools/meshTools/meshTools.H b/src/meshTools/meshTools/meshTools.H +--- a/src/meshTools/meshTools/meshTools.H ++++ b/src/meshTools/meshTools/meshTools.H +@@ -35,8 +35,8 @@ + #ifndef meshTools_H + #define meshTools_H + ++#include "vector.H" + #include "label.H" +-#include "vector.H" + #include "triad.H" + #include "labelList.H" + #include "pointField.H" +diff --git a/src/parallel/decompose/ptscotchDecomp/Make/options b/src/parallel/decompose/ptscotchDecomp/Make/options +--- a/src/parallel/decompose/ptscotchDecomp/Make/options ++++ b/src/parallel/decompose/ptscotchDecomp/Make/options +@@ -8,5 +8,9 @@ + -I/usr/include/scotch \ + -I../decompositionMethods/lnInclude + ++ifneq ($(WM_ARCH_BASE),darwin) ++RTLIB=-lrt ++endif ++ + LIB_LIBS = \ +- -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN)/$(FOAM_MPI) -lptscotch -lptscotcherrexit ${LINK_FLAGS} -lrt ++ -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN)/$(FOAM_MPI) -lptscotch -lptscotcherrexit ${LINK_FLAGS} $(RTLIB) +diff --git a/src/parallel/decompose/scotchDecomp/Make/options b/src/parallel/decompose/scotchDecomp/Make/options +--- a/src/parallel/decompose/scotchDecomp/Make/options ++++ b/src/parallel/decompose/scotchDecomp/Make/options +@@ -12,5 +12,9 @@ + -I/usr/include/scotch \ + -I../decompositionMethods/lnInclude + ++ifneq ($(WM_ARCH_BASE),darwin) ++RTLIB=-lrt ++endif ++ + LIB_LIBS = \ +- -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN) -lscotch -lscotcherrexit -lrt ++ -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN) -lscotch -lscotcherrexit $(RTLIB) +diff --git a/src/renumber/Allwmake b/src/renumber/Allwmake +--- a/src/renumber/Allwmake ++++ b/src/renumber/Allwmake +@@ -20,6 +20,11 @@ + + if [ -n "$BOOST_ARCH_PATH" ] + then ++ if [ -n "$WM_USE_MACPORT" ] ++ then ++ export BOOST_THREAD_EXTENSION=-mt ++ fi ++ + wmake $makeType SloanRenumber + else + echo +diff --git a/src/renumber/SloanRenumber/Make/options b/src/renumber/SloanRenumber/Make/options +--- a/src/renumber/SloanRenumber/Make/options ++++ b/src/renumber/SloanRenumber/Make/options +@@ -1,12 +1,11 @@ + EXE_INC = \ +- /* -DFULLDEBUG -g -O0 */ \ + -I$(BOOST_ARCH_PATH)/include \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/parallel/decompose/decompositionMethods/lnInclude \ + -I$(LIB_SRC)/renumber/renumberMethods/lnInclude + + LIB_LIBS = \ +- -L$(BOOST_ARCH_PATH)/lib -lboost_thread \ ++ -L$(BOOST_ARCH_PATH)/lib -lboost_thread$(BOOST_THREAD_EXTENSION) \ + -lmeshTools \ + -ldecompositionMethods \ + -lrenumberMethods +diff --git a/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H b/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H +--- a/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H ++++ b/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H +@@ -32,6 +32,7 @@ + #ifndef ensightPTraits_H + #define ensightPTraits_H + ++#include "vector.H" + #include "pTraits.H" + #include "fieldTypes.H" + +diff --git a/wmake/Makefile b/wmake/Makefile +--- a/wmake/Makefile ++++ b/wmake/Makefile +@@ -91,7 +91,11 @@ + LIB = libNULL + + # Shared library extension ++ifeq ($(WM_ARCH_BASE),darwin) ++SO = dylib ++else + SO = so ++endif + + # Project executable + EXE = $(WM_PROJECT).out +diff --git a/wmake/rules/darwinIntel64Clang/c b/wmake/rules/darwinIntel64Clang/c +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/c +@@ -0,0 +1,17 @@ ++.SUFFIXES: .c .h ++ ++cWARN = -Wall ++ ++cc = $(WM_CC) -m64 -ftrapping-math ++# -fsignaling-nans ++ ++include $(RULES)/c$(WM_COMPILE_OPTION) ++ ++cFLAGS = -I/opt/local/include $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ ++ ++LINK_LIBS = $(cDBUG) ++ ++LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress ++LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs +diff --git a/wmake/rules/darwinIntel64Clang/c++ b/wmake/rules/darwinIntel64Clang/c++ +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/c++ +@@ -0,0 +1,23 @@ ++.SUFFIXES: .C .cxx .cc .cpp ++ ++c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual -Wno-unused-comparison ++ ++CC = $(WM_CXX) -m64 -ftrapping-math ++# -fsignaling-nans ++ ++include $(RULES)/c++$(WM_COMPILE_OPTION) ++ ++ptFLAGS = -DNoRepository -ftemplate-depth-100 ++ ++c++FLAGS = -I/opt/local/include $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ ++cxxtoo = $(Ctoo) ++cctoo = $(Ctoo) ++cpptoo = $(Ctoo) ++ ++LINK_LIBS = $(c++DBUG) -lpthread ++ ++LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup ++# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream ++LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream +diff --git a/wmake/rules/darwinIntel64Clang/c++Debug b/wmake/rules/darwinIntel64Clang/c++Debug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/c++Debug +@@ -0,0 +1,4 @@ ++# c++DBUG = -ggdb2 -DFULLDEBUG ++c++DBUG = -g -DFULLDEBUG ++# c++OPT = -O0 -fdefault-inline ++c++OPT = -O0 +diff --git a/wmake/rules/darwinIntel64Clang/c++Opt b/wmake/rules/darwinIntel64Clang/c++Opt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/c++Opt +@@ -0,0 +1,5 @@ ++c++DBUG = ++c++OPT = -O2 ++# c++OPT = -O3 ++#c++OPT = -march=nocona -O3 ++# -ftree-vectorize -ftree-vectorizer-verbose=3 +diff --git a/wmake/rules/darwinIntel64Clang/c++Prof b/wmake/rules/darwinIntel64Clang/c++Prof +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/c++Prof +@@ -0,0 +1,2 @@ ++c++DBUG = -pg ++c++OPT = -O2 +diff --git a/wmake/rules/darwinIntel64Clang/cDebug b/wmake/rules/darwinIntel64Clang/cDebug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/cDebug +@@ -0,0 +1,4 @@ ++cDBUG = -g -DFULLDEBUG ++cOPT = -O0 ++# cDBUG = -ggdb -DFULLDEBUG ++# cOPT = -O1 -fdefault-inline -finline-functions +diff --git a/wmake/rules/darwinIntel64Clang/cOpt b/wmake/rules/darwinIntel64Clang/cOpt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/cOpt +@@ -0,0 +1,3 @@ ++cDBUG = ++cOPT = -O2 ++# cOPT = -O3 +diff --git a/wmake/rules/darwinIntel64Clang/cProf b/wmake/rules/darwinIntel64Clang/cProf +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/cProf +@@ -0,0 +1,2 @@ ++cDBUG = -pg ++cOPT = -O2 +diff --git a/wmake/rules/darwinIntel64Clang/general b/wmake/rules/darwinIntel64Clang/general +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/general +@@ -0,0 +1,9 @@ ++CPP = cpp --traditional-cpp $(GFLAGS) ++LD = ld ++ ++PROJECT_LIBS = -l$(WM_PROJECT) -ldl ++ ++include $(GENERAL_RULES)/standard ++ ++include $(RULES)/c ++include $(RULES)/c++ +diff --git a/wmake/rules/darwinIntel64Clang/mplib b/wmake/rules/darwinIntel64Clang/mplib +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/mplib +@@ -0,0 +1,3 @@ ++PFLAGS = ++PINC = ++PLIBS = +diff --git a/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) ++PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich +diff --git a/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = $(shell mpicc-openmpi-mp --showme:compile) ++PLIBS = $(shell mpicc-openmpi-mp --showme:link) +diff --git a/wmake/rules/darwinIntel64Clang/mplibOPENMPI b/wmake/rules/darwinIntel64Clang/mplibOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Clang/mplibOPENMPI +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I$(MPI_ARCH_PATH)/include ++PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi +diff --git a/wmake/rules/darwinIntel64Dragonegg/c b/wmake/rules/darwinIntel64Dragonegg/c +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/c +@@ -0,0 +1,16 @@ ++.SUFFIXES: .c .h ++ ++cWARN = -Wall ++ ++cc = $(WM_CC) -m64 -fsignaling-nans -ftrapping-math ++ ++include $(RULES)/c$(WM_COMPILE_OPTION) ++ ++cFLAGS = $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ ++ ++LINK_LIBS = $(cDBUG) ++ ++LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress ++LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs +diff --git a/wmake/rules/darwinIntel64Dragonegg/c++ b/wmake/rules/darwinIntel64Dragonegg/c++ +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/c++ +@@ -0,0 +1,22 @@ ++.SUFFIXES: .C .cxx .cc .cpp ++ ++c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor ++ ++CC = $(WM_CXX) -m64 -fsignaling-nans -ftrapping-math ++ ++include $(RULES)/c++$(WM_COMPILE_OPTION) ++ ++ptFLAGS = -DNoRepository -ftemplate-depth-100 ++ ++c++FLAGS = $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ ++cxxtoo = $(Ctoo) ++cctoo = $(Ctoo) ++cpptoo = $(Ctoo) ++ ++LINK_LIBS = $(c++DBUG) -lpthread ++ ++LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup ++# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream ++LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream +diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Debug b/wmake/rules/darwinIntel64Dragonegg/c++Debug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/c++Debug +@@ -0,0 +1,2 @@ ++c++DBUG = -ggdb2 -DFULLDEBUG ++c++OPT = -O0 -fdefault-inline +diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Opt b/wmake/rules/darwinIntel64Dragonegg/c++Opt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/c++Opt +@@ -0,0 +1,5 @@ ++c++DBUG = ++c++OPT = -O2 ++# c++OPT = -O3 ++#c++OPT = -march=nocona -O3 ++# -ftree-vectorize -ftree-vectorizer-verbose=3 +diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Prof b/wmake/rules/darwinIntel64Dragonegg/c++Prof +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/c++Prof +@@ -0,0 +1,2 @@ ++c++DBUG = -pg ++c++OPT = -O2 +diff --git a/wmake/rules/darwinIntel64Dragonegg/cDebug b/wmake/rules/darwinIntel64Dragonegg/cDebug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/cDebug +@@ -0,0 +1,2 @@ ++cDBUG = -ggdb -DFULLDEBUG ++cOPT = -O1 -fdefault-inline -finline-functions +diff --git a/wmake/rules/darwinIntel64Dragonegg/cOpt b/wmake/rules/darwinIntel64Dragonegg/cOpt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/cOpt +@@ -0,0 +1,3 @@ ++cDBUG = ++cOPT = -O2 ++# cOPT = -O3 +diff --git a/wmake/rules/darwinIntel64Dragonegg/cProf b/wmake/rules/darwinIntel64Dragonegg/cProf +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/cProf +@@ -0,0 +1,2 @@ ++cDBUG = -pg ++cOPT = -O2 +diff --git a/wmake/rules/darwinIntel64Dragonegg/general b/wmake/rules/darwinIntel64Dragonegg/general +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/general +@@ -0,0 +1,9 @@ ++CPP = cpp --traditional-cpp $(GFLAGS) ++LD = ld ++ ++PROJECT_LIBS = -l$(WM_PROJECT) -ldl ++ ++include $(GENERAL_RULES)/standard ++ ++include $(RULES)/c ++include $(RULES)/c++ +diff --git a/wmake/rules/darwinIntel64Dragonegg/mplib b/wmake/rules/darwinIntel64Dragonegg/mplib +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/mplib +@@ -0,0 +1,3 @@ ++PFLAGS = ++PINC = ++PLIBS = +diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) ++PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich +diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI +@@ -0,0 +1,5 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++# PINC = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:compile) ++# PLIBS = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:link) ++PINC = -I/opt/local/include/openmpi-$(WM_MACPORT_MPI_VERSION) ++PLIBS = -L/opt/local/lib/openmpi-$(WM_MACPORT_MPI_VERSION) -lmpi +diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI b/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I$(MPI_ARCH_PATH)/include ++PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi +diff --git a/wmake/rules/darwinIntel64Gcc/c b/wmake/rules/darwinIntel64Gcc/c +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/c +@@ -0,0 +1,16 @@ ++.SUFFIXES: .c .h ++ ++cWARN = -Wall ++ ++cc = $(WM_CC) -m64 -fsignaling-nans -ftrapping-math ++ ++include $(RULES)/c$(WM_COMPILE_OPTION) ++ ++cFLAGS = $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ ++ ++LINK_LIBS = $(cDBUG) ++ ++LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress ++LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs +diff --git a/wmake/rules/darwinIntel64Gcc/c++ b/wmake/rules/darwinIntel64Gcc/c++ +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/c++ +@@ -0,0 +1,22 @@ ++.SUFFIXES: .C .cxx .cc .cpp ++ ++c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor ++ ++CC = $(WM_CXX) -m64 -fsignaling-nans -ftrapping-math ++ ++include $(RULES)/c++$(WM_COMPILE_OPTION) ++ ++ptFLAGS = -DNoRepository -ftemplate-depth-100 ++ ++c++FLAGS = $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin ++ ++Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ ++cxxtoo = $(Ctoo) ++cctoo = $(Ctoo) ++cpptoo = $(Ctoo) ++ ++LINK_LIBS = $(c++DBUG) -lpthread ++ ++LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup ++# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream ++LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream +diff --git a/wmake/rules/darwinIntel64Gcc/c++Debug b/wmake/rules/darwinIntel64Gcc/c++Debug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/c++Debug +@@ -0,0 +1,2 @@ ++c++DBUG = -ggdb2 -DFULLDEBUG ++c++OPT = -O0 -fdefault-inline +diff --git a/wmake/rules/darwinIntel64Gcc/c++Opt b/wmake/rules/darwinIntel64Gcc/c++Opt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/c++Opt +@@ -0,0 +1,5 @@ ++c++DBUG = ++c++OPT = -O2 ++# c++OPT = -O3 ++#c++OPT = -march=nocona -O3 ++# -ftree-vectorize -ftree-vectorizer-verbose=3 +diff --git a/wmake/rules/darwinIntel64Gcc/c++Prof b/wmake/rules/darwinIntel64Gcc/c++Prof +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/c++Prof +@@ -0,0 +1,2 @@ ++c++DBUG = -pg ++c++OPT = -O2 +diff --git a/wmake/rules/darwinIntel64Gcc/cDebug b/wmake/rules/darwinIntel64Gcc/cDebug +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/cDebug +@@ -0,0 +1,2 @@ ++cDBUG = -ggdb -DFULLDEBUG ++cOPT = -O1 -fdefault-inline -finline-functions +diff --git a/wmake/rules/darwinIntel64Gcc/cOpt b/wmake/rules/darwinIntel64Gcc/cOpt +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/cOpt +@@ -0,0 +1,3 @@ ++cDBUG = ++cOPT = -O2 ++# cOPT = -O3 +diff --git a/wmake/rules/darwinIntel64Gcc/cProf b/wmake/rules/darwinIntel64Gcc/cProf +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/cProf +@@ -0,0 +1,2 @@ ++cDBUG = -pg ++cOPT = -O2 +diff --git a/wmake/rules/darwinIntel64Gcc/general b/wmake/rules/darwinIntel64Gcc/general +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/general +@@ -0,0 +1,9 @@ ++CPP = cpp --traditional-cpp $(GFLAGS) ++LD = ld ++ ++PROJECT_LIBS = -l$(WM_PROJECT) -ldl ++ ++include $(GENERAL_RULES)/standard ++ ++include $(RULES)/c ++include $(RULES)/c++ +diff --git a/wmake/rules/darwinIntel64Gcc/mplib b/wmake/rules/darwinIntel64Gcc/mplib +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/mplib +@@ -0,0 +1,3 @@ ++PFLAGS = ++PINC = ++PLIBS = +diff --git a/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) ++PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich +diff --git a/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI +@@ -0,0 +1,5 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++# PINC = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:compile) ++# PLIBS = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:link) ++PINC = -I/opt/local/include/openmpi-$(WM_MACPORT_MPI_VERSION) ++PLIBS = -L/opt/local/lib/openmpi-$(WM_MACPORT_MPI_VERSION) -lmpi +diff --git a/wmake/rules/darwinIntel64Gcc/mplibOPENMPI b/wmake/rules/darwinIntel64Gcc/mplibOPENMPI +new file mode 100644 +--- /dev/null ++++ b/wmake/rules/darwinIntel64Gcc/mplibOPENMPI +@@ -0,0 +1,3 @@ ++PFLAGS = -DOMPI_SKIP_MPICXX ++PINC = -I$(MPI_ARCH_PATH)/include ++PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi diff --git a/applications/solvers/combustion/fireFoam/Make/options b/applications/solvers/combustion/fireFoam/Make/options index 93bda979..37e43cad 100644 --- a/applications/solvers/combustion/fireFoam/Make/options +++ b/applications/solvers/combustion/fireFoam/Make/options @@ -36,8 +36,10 @@ EXE_LIBS = \ -lsampling \ -lcompressibleRASModels \ -lcompressibleLESModels \ + -lcompressibleTurbulenceModel \ -lspecie \ -lfluidThermophysicalModels \ + -lliquidProperties \ -lsolidProperties \ -lsolidMixtureProperties \ -lthermophysicalFunctions \ @@ -53,5 +55,6 @@ EXE_LIBS = \ -lpyrolysisModels \ -lregionCoupling \ -llagrangianIntermediate \ + -llagrangian \ -llagrangianTurbulence \ -lODE diff --git a/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options b/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options index cc82ba95..adead0f3 100644 --- a/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options +++ b/applications/solvers/compressible/rhoSimpleFoam/rhoSimplecFoam/Make/options @@ -13,6 +13,7 @@ EXE_LIBS = \ -lfluidThermophysicalModels \ -lspecie \ -lcompressibleRASModels \ + -lcompressibleTurbulenceModel \ -lfiniteVolume \ -lsampling \ -lmeshTools \ diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options index ccd275ad..4e559630 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options @@ -21,6 +21,7 @@ EXE_LIBS = \ -lfluidThermophysicalModels \ -lsolidThermo \ -lspecie \ + -lmeshTools \ -lcompressibleTurbulenceModel \ -lcompressibleRASModels \ -lcompressibleLESModels \ diff --git a/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options b/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options index 1223bdd0..dbc45d38 100644 --- a/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options +++ b/applications/solvers/incompressible/adjointShapeOptimizationFoam/Make/options @@ -6,6 +6,7 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude EXE_LIBS = \ + -lincompressibleTurbulenceModel \ -lincompressibleRASModels \ -lincompressibleTransportModels \ -lfiniteVolume diff --git a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options index cae6c88f..3246cb5f 100644 --- a/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options +++ b/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/options @@ -11,6 +11,7 @@ EXE_INC = \ EXE_LIBS = \ + -lincompressibleTurbulenceModel \ -lincompressibleRASModels \ -lincompressibleTransportModels \ -lfiniteVolume \ diff --git a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options index 13f3b202..c2da65a1 100644 --- a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options +++ b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/Make/options @@ -21,6 +21,7 @@ EXE_LIBS = \ -lfluidThermophysicalModels \ -lspecie \ -lradiationModels \ + -lincompressibleTurbulenceModel \ -lincompressibleRASModels \ -lincompressibleLESModels \ -lincompressibleTransportModels \ diff --git a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options index 24749170..2c0782c3 100644 --- a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options +++ b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/icoUncoupledKinematicParcelDyMFoam/Make/options @@ -27,6 +27,7 @@ EXE_LIBS = \ -lradiationModels \ -lincompressibleRASModels \ -lincompressibleLESModels \ + -lincompressibleTurbulenceModel \ -lincompressibleTransportModels \ -lfiniteVolume \ -lmeshTools \ diff --git a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options index 1520f13f..9955666f 100644 --- a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options +++ b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options @@ -30,6 +30,7 @@ EXE_LIBS = \ -lfvOptions \ -lsampling \ -lmeshTools \ + -lcompressibleTurbulenceModel \ -lcompressibleRASModels \ -lcompressibleLESModels \ -lspecie \ @@ -44,6 +45,8 @@ EXE_LIBS = \ -lradiationModels \ -lsurfaceFilmModels \ -lsurfaceFilmDerivedFvPatchFields \ + -lliquidProperties \ + -llagrangian \ -llagrangianIntermediate \ -llagrangianTurbulence \ -lODE \ diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/Make/options b/applications/solvers/multiphase/multiphaseEulerFoam/Make/options index ab8d9709..f9ce8127 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/Make/options +++ b/applications/solvers/multiphase/multiphaseEulerFoam/Make/options @@ -17,6 +17,7 @@ EXE_LIBS = \ -linterfaceProperties \ -lincompressibleTransportModels \ -lcompressibleMultiphaseEulerianInterfacialModels \ + -lincompressibleTurbulenceModel \ -lincompressibleLESModels \ -lincompressibleRASModels \ -lfiniteVolume diff --git a/applications/utilities/mesh/generation/blockMesh/Make/options b/applications/utilities/mesh/generation/blockMesh/Make/options index 2e07c477..f07fdc39 100644 --- a/applications/utilities/mesh/generation/blockMesh/Make/options +++ b/applications/utilities/mesh/generation/blockMesh/Make/options @@ -6,4 +6,5 @@ EXE_INC = \ EXE_LIBS = \ -lblockMesh \ -lmeshTools \ + -lfiniteVolume \ -ldynamicMesh diff --git a/applications/utilities/mesh/generation/foamyQuadMesh/Make/options b/applications/utilities/mesh/generation/foamyQuadMesh/Make/options index 75823532..59da03f2 100644 --- a/applications/utilities/mesh/generation/foamyQuadMesh/Make/options +++ b/applications/utilities/mesh/generation/foamyQuadMesh/Make/options @@ -27,6 +27,8 @@ EXE_INC = \ EXE_LIBS = \ $(CGAL_LIBS) \ + -lboost_thread-mt \ + -lgmp \ -lextrude2DMesh \ -lextrudeModel \ -lcv2DMesh \ diff --git a/applications/utilities/mesh/generation/snappyHexMesh/Make/options b/applications/utilities/mesh/generation/snappyHexMesh/Make/options index 219e3d41..e8b06882 100644 --- a/applications/utilities/mesh/generation/snappyHexMesh/Make/options +++ b/applications/utilities/mesh/generation/snappyHexMesh/Make/options @@ -1,5 +1,4 @@ EXE_INC = \ - /* -g -DFULLDEBUG -O0 */ \ -I$(LIB_SRC)/parallel/decompose/decompositionMethods/lnInclude \ -I$(LIB_SRC)/mesh/autoMesh/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ diff --git a/applications/utilities/mesh/manipulation/renumberMesh/Make/options b/applications/utilities/mesh/manipulation/renumberMesh/Make/options index 49a1c3d2..882d1e43 100644 --- a/applications/utilities/mesh/manipulation/renumberMesh/Make/options +++ b/applications/utilities/mesh/manipulation/renumberMesh/Make/options @@ -1,5 +1,4 @@ EXE_INC = \ - /* -DFULLDEBUG -g -O0 */ \ ${COMPILE_FLAGS} \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/dynamicMesh/lnInclude \ diff --git a/applications/utilities/miscellaneous/expandDictionary/Make/options b/applications/utilities/miscellaneous/expandDictionary/Make/options index 18e6fe47..e69de29b 100644 --- a/applications/utilities/miscellaneous/expandDictionary/Make/options +++ b/applications/utilities/miscellaneous/expandDictionary/Make/options @@ -1,2 +0,0 @@ -/* EXE_INC = */ -/* EXE_LIBS = */ diff --git a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options index 43f0c24c..262b4c35 100644 --- a/applications/utilities/miscellaneous/foamDebugSwitches/Make/options +++ b/applications/utilities/miscellaneous/foamDebugSwitches/Make/options @@ -42,10 +42,8 @@ EXE_LIBS = \ -lmeshTools \ -lmolecularMeasurements \ -lmolecule \ -/* -lmultiphaseInterFoam */ \ -lODE \ -lOpenFOAM \ -/* -lphaseModel */ \ -lpotential \ -lradiationModels \ -lrandomProcesses \ diff --git a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options index f9b5424e..dcc3830b 100644 --- a/applications/utilities/parallelProcessing/reconstructParMesh/Make/options +++ b/applications/utilities/parallelProcessing/reconstructParMesh/Make/options @@ -4,5 +4,6 @@ EXE_INC = \ -I$(LIB_SRC)/meshTools/lnInclude EXE_LIBS = \ + -lfiniteVolume \ -ldynamicMesh \ -lmeshTools diff --git a/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options b/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options index 77992428..3bcea78b 100644 --- a/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options +++ b/applications/utilities/postProcessing/dataConversion/foamToEnsight/Make/options @@ -1,5 +1,4 @@ EXE_INC = \ - /* -DFULLDEBUG -g -O0 */ \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/sampling/lnInclude \ @@ -11,4 +10,3 @@ EXE_LIBS = \ -lsampling \ -lgenericPatchFields \ -llagrangian - diff --git a/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options b/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options index 01260072..c403e35b 100644 --- a/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options +++ b/applications/utilities/postProcessing/miscellaneous/execFlowFunctionObjects/Make/options @@ -12,10 +12,12 @@ EXE_LIBS = \ -lincompressibleTransportModels \ -lincompressibleRASModels \ -lincompressibleLESModels \ + -lincompressibleTurbulenceModel \ -lfluidThermophysicalModels \ -lspecie \ -lcompressibleRASModels \ -lcompressibleLESModels \ + -lcompressibleTurbulenceModel \ -lfiniteVolume \ -lfvOptions \ -lmeshTools \ diff --git a/applications/utilities/postProcessing/turbulence/R/Make/options b/applications/utilities/postProcessing/turbulence/R/Make/options index 27b70cae..4115e7c9 100644 --- a/applications/utilities/postProcessing/turbulence/R/Make/options +++ b/applications/utilities/postProcessing/turbulence/R/Make/options @@ -8,10 +8,12 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude EXE_LIBS = \ + -lincompressibleTurbulenceModel \ -lincompressibleTransportModels \ -lincompressibleRASModels \ -lfluidThermophysicalModels \ -lspecie \ + -lcompressibleTurbulenceModel \ -lcompressibleRASModels \ -lfiniteVolume \ -lgenericPatchFields \ diff --git a/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options b/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options index 88625658..7e737720 100644 --- a/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options +++ b/applications/utilities/postProcessing/turbulence/createTurbulenceFields/Make/options @@ -5,6 +5,7 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude EXE_LIBS = \ + -lincompressibleTurbulenceModel \ -lincompressibleRASModels \ -lincompressibleTransportModels \ -lfiniteVolume \ diff --git a/applications/utilities/postProcessing/velocityField/Pe/Make/options b/applications/utilities/postProcessing/velocityField/Pe/Make/options index 1d984aa9..939daa83 100644 --- a/applications/utilities/postProcessing/velocityField/Pe/Make/options +++ b/applications/utilities/postProcessing/velocityField/Pe/Make/options @@ -12,10 +12,12 @@ EXE_LIBS = \ -lincompressibleTransportModels \ -lincompressibleRASModels \ -lincompressibleLESModels \ + -lincompressibleTurbulenceModel \ -lfluidThermophysicalModels \ -lspecie \ -lcompressibleRASModels \ -lcompressibleLESModels \ + -lcompressibleTurbulenceModel \ -lfiniteVolume \ -lgenericPatchFields \ -lmeshTools diff --git a/applications/utilities/postProcessing/wall/wallShearStress/Make/options b/applications/utilities/postProcessing/wall/wallShearStress/Make/options index 240bf953..dcf3be8f 100644 --- a/applications/utilities/postProcessing/wall/wallShearStress/Make/options +++ b/applications/utilities/postProcessing/wall/wallShearStress/Make/options @@ -7,8 +7,10 @@ EXE_INC = \ EXE_LIBS = \ -lincompressibleTransportModels \ -lincompressibleRASModels \ + -lincompressibleTurbulenceModel \ -lfluidThermophysicalModels \ -lspecie \ -lcompressibleRASModels \ + -lcompressibleTurbulenceModel \ -lfiniteVolume \ -lgenericPatchFields diff --git a/applications/utilities/postProcessing/wall/yPlusLES/Make/options b/applications/utilities/postProcessing/wall/yPlusLES/Make/options index d7446846..15ad79fd 100644 --- a/applications/utilities/postProcessing/wall/yPlusLES/Make/options +++ b/applications/utilities/postProcessing/wall/yPlusLES/Make/options @@ -8,6 +8,7 @@ EXE_INC = \ EXE_LIBS = \ -lincompressibleLESModels \ + -lincompressibleTurbulenceModel \ -lincompressibleTransportModels \ -lfiniteVolume \ -lgenericPatchFields diff --git a/applications/utilities/postProcessing/wall/yPlusRAS/Make/options b/applications/utilities/postProcessing/wall/yPlusRAS/Make/options index 27b70cae..f2560ef1 100644 --- a/applications/utilities/postProcessing/wall/yPlusRAS/Make/options +++ b/applications/utilities/postProcessing/wall/yPlusRAS/Make/options @@ -10,9 +10,11 @@ EXE_INC = \ EXE_LIBS = \ -lincompressibleTransportModels \ -lincompressibleRASModels \ + -lincompressibleTurbulenceModel \ -lfluidThermophysicalModels \ -lspecie \ -lcompressibleRASModels \ + -lcompressibleTurbulenceModel \ -lfiniteVolume \ -lgenericPatchFields \ -lmeshTools \ diff --git a/applications/utilities/preProcessing/applyBoundaryLayer/Make/options b/applications/utilities/preProcessing/applyBoundaryLayer/Make/options index e4ea36c3..fdf751a2 100644 --- a/applications/utilities/preProcessing/applyBoundaryLayer/Make/options +++ b/applications/utilities/preProcessing/applyBoundaryLayer/Make/options @@ -8,6 +8,7 @@ EXE_INC = \ EXE_LIBS = \ -lfiniteVolume \ + -lincompressibleTurbulenceModel \ -lincompressibleRASModels \ -lincompressibleLESModels \ -lincompressibleTransportModels \ diff --git a/bin/addr2line4Mac.py b/bin/addr2line4Mac.py new file mode 100755 index 00000000..54a40f1a --- /dev/null +++ b/bin/addr2line4Mac.py @@ -0,0 +1,49 @@ +#! /usr/bin/python + +import sys +filename=sys.argv[1] +address=sys.argv[2] +import re +from os import environ,path + +fullFile=None +if path.exists(filename): + fullFile=filename + +for v in ["PATH","LD_LIBRARY_PATH"]: + if not fullFile: + for d in environ[v].split(':'): + if path.exists(path.join(d,filename)): + fullFile=path.join(d,filename) + break + +if not fullFile: + fullFile=filename + +answer="??:0" + +if path.exists(fullFile): + import subprocess + + result=subprocess.Popen(["xcrun", "atos", + "-o",fullFile, + address], + stdout=subprocess.PIPE + ).communicate()[0] + match=re.compile('.+ \((.+)\) \((.+)\)').match(result) + if match: + answer=match.group(2)+" "+match.group(1) + else: + import os + result=subprocess.Popen(["xcrun", "atos", + "-p",str(os.getppid()), + address], + stdout=subprocess.PIPE + ).communicate()[0] + match=re.compile('.+ \((.+)\) \((.+)\)').match(result) + if match: + answer=match.group(2)+" "+match.group(1) + +print answer, + +sys.exit(255) diff --git a/etc/bashrc b/etc/bashrc index a8bd2dbb..eb5396c8 100644 --- a/etc/bashrc +++ b/etc/bashrc @@ -63,7 +63,7 @@ foamCompiler=system #- Compiler: # WM_COMPILER = Gcc | Gcc45 | Gcc46 | Gcc47 | Clang | Icc (Intel icc) -export WM_COMPILER=Gcc +export WM_COMPILER=Gcc47 unset WM_COMPILER_ARCH WM_COMPILER_LIB_ARCH #- Architecture: @@ -81,7 +81,7 @@ export WM_COMPILE_OPTION=Opt #- MPI implementation: # WM_MPLIB = SYSTEMOPENMPI | OPENMPI | MPICH | MPICH-GM | HPMPI # | GAMMA | MPI | QSMPI | SGIMPI -export WM_MPLIB=OPENMPI +export WM_MPLIB=SYSTEMOPENMPI #- Operating System: # WM_OSTYPE = POSIX | ??? @@ -199,6 +199,10 @@ cleaned=`$foamClean "$LD_LIBRARY_PATH" "$foamOldDirs"` \ #- Clean MANPATH cleaned=`$foamClean "$MANPATH" "$foamOldDirs"` && MANPATH="$cleaned" +if [[ `uname -s` == "Darwin" ]] +then + cleaned=`$foamClean "$DYLD_LIBRARY_PATH" "$foamOldDirs"` && DYLD_LIBRARY_PATH="$cleaned" +fi export PATH LD_LIBRARY_PATH MANPATH @@ -237,6 +241,14 @@ then export LD_PRELOAD fi +if [[ `uname -s` == "Darwin" ]] +then + if [[ `ulimit -n` == "unlimited" || `ulimit -n` < 8192 ]] + then + # higher limit needed for wmkdeps + ulimit -n 8192 + fi +fi # cleanup environment: # ~~~~~~~~~~~~~~~~~~~~ @@ -244,3 +256,9 @@ unset cleaned foamClean foamInstall foamOldDirs unset _foamSource _foamEval # ----------------------------------------------------------------- end-of-file + +export WM_CC='gcc-mp-4.7' +export WM_CXX='g++-mp-4.7' +export WM_NCOMPPROCS=4 +ulimit -n 1024 + diff --git a/etc/config/CGAL.sh b/etc/config/CGAL.sh index dc8772dd..40d94f7c 100644 --- a/etc/config/CGAL.sh +++ b/etc/config/CGAL.sh @@ -35,6 +35,22 @@ cgal_version=CGAL-4.3 export BOOST_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$boost_version export CGAL_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$cgal_version +if [ -n "$WM_USE_MACPORT" ] +then + if [ -d "/opt/local/include/boost" ] + then + export BOOST_ARCH_PATH=/opt/local + else + echo "No boost in MacPorts. Install boost with 'port install boost'" + fi + if [ -d "/opt/local/include/CGAL" ] + then + export CGAL_ARCH_PATH=/opt/local + else + echo "No CGAL in MacPorts. Install CGAL with 'port install cgal'" + fi +fi + if [ "$FOAM_VERBOSE" -a "$PS1" ] then echo "Using CGAL and boost" diff --git a/etc/config/metis.sh b/etc/config/metis.sh index af7efde3..b6aad89a 100644 --- a/etc/config/metis.sh +++ b/etc/config/metis.sh @@ -36,4 +36,15 @@ export METIS_VERSION=metis-5.1.0 export METIS_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$METIS_VERSION +if [ -n "$WM_USE_MACPORT" ] +then + if [ -e "/opt/local/include/metis.h" ] + then + export METIS_ARCH_PATH=/opt/local + unset METIS_VERSION + else + echo "No metis in MacPorts. Install metis with 'port install metis'" + fi +fi + # ----------------------------------------------------------------------------- diff --git a/etc/config/paraview.sh b/etc/config/paraview.sh index f883f390..7cc92863 100644 --- a/etc/config/paraview.sh +++ b/etc/config/paraview.sh @@ -144,6 +144,19 @@ else unset PV_PLUGIN_PATH fi +if [ $WM_ARCH_BASE=="darwin" ] +then + : ${PARAVIEW_APP_DIR:="/Applications/paraview.app"}; export PARAVIEW_APP_DIR + if [ -d $PARAVIEW_APP_DIR -a ! -r $ParaView_DIR ] + then + echo "Using paraview in directory $PARAVIEW_APP_DIR" + unset ParaView_VERSION ParaView_MAJOR ParaView_DIR + # needs to be an alias because if it is in the path the Python Shell does not work + alias paraview=$PARAVIEW_APP_DIR/Contents/MacOS/paraview + export PATH=$PARAVIEW_APP_DIR/Contents/bin:$PATH + fi +fi + unset _foamParaviewEval unset cleaned cmake paraviewInstDir paraviewPython diff --git a/etc/config/scotch.sh b/etc/config/scotch.sh index 1ee06e80..974e0314 100644 --- a/etc/config/scotch.sh +++ b/etc/config/scotch.sh @@ -36,4 +36,16 @@ export SCOTCH_VERSION=scotch_6.0.0 export SCOTCH_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$SCOTCH_VERSION +if [ -n "$WM_USE_MACPORT" ] +then + if [ -e "/opt/local/include/scotch.h" ] + then + export SCOTCH_ARCH_PATH=/opt/local + export SCOTCH_ROOT=$SCOTCH_ARCH_PATH +# unset SCOTCH_VERSION + else + echo "No scotch in MacPorts. Install scotch with 'port install scotch'" + fi +fi + # ----------------------------------------------------------------------------- diff --git a/etc/config/settings.sh b/etc/config/settings.sh index ec2dcf20..83a00d63 100644 --- a/etc/config/settings.sh +++ b/etc/config/settings.sh @@ -46,6 +46,14 @@ _foamAddLib() while [ $# -ge 1 ] do export LD_LIBRARY_PATH=$1:$LD_LIBRARY_PATH + if [ "$WM_ARCH_BASE" == "darwin" ] + then + # do NOT add the lib of MacPort as this might break programs + if [ "$1" != "/opt/local/lib" ] + then + export DYLD_LIBRARY_PATH=$1:$DYLD_LIBRARY_PATH + fi + fi shift done } @@ -151,6 +159,152 @@ SunOS) export WM_LDFLAGS='-mabi=64 -G0' ;; +Darwin) + export WM_ARCH_BASE=darwin + + case `uname -p` in + powerpc) + export WM_ARCH=darwinPpc + ;; + i386) + export WM_ARCH=darwinIntel + case $WM_ARCH_OPTION in + 32) + export WM_COMPILER_LIB_ARCH=32 + export WM_CC='gcc' + export WM_CXX='g++' + export WM_CFLAGS='-m32 -fPIC' + export WM_CXXFLAGS='-m32 -fPIC' + export WM_LDFLAGS='-m32' + ;; + 64) + WM_ARCH=darwinIntel64 + export WM_COMPILER_LIB_ARCH=64 + export WM_CC='gcc' + export WM_CXX='g++' + export WM_CFLAGS='-m64 -fPIC' + export WM_CXXFLAGS='-m64 -fPIC' + export WM_LDFLAGS='-m64' + ;; + *) + echo Unknown WM_ARCH_OPTION $WM_ARCH_OPTION, should be 32 or 64 + ;; + esac + ;; + *) + echo "Unknown architecture "`uname -p` "for Darwin" + esac + + which -s port >/dev/null + if [ $? -eq "0" -a -d '/opt/local/etc/macports' ] + then + if [ "$FOAM_VERBOSE" -a "$PS1" ] + then + echo "Using Macports binaries" + fi + + export WM_USE_MACPORT=1 + export WM_BASE_COMPILER=`echo $WM_COMPILER | tr -d "[:digit:]"` + export WM_MACPORT_MPI_VERSION=`echo $WM_COMPILER | tr "[:upper:]" "[:lower:]"` + export WM_MACPORT_VERSION=`echo $WM_MACPORT_MPI_VERSION | tr -d "[:alpha:]" | sed -e "s/\(.\)\(.\)/\1\.\2/"` + + if [ -z "$WM_CHOSEN_MAC_MPI" ] + then + if [ -e '/opt/local/bin/mpicc' ] + then + readlink /opt/local/bin/mpicc | grep openmpi >/dev/null + if [ $? -eq "0" ] + then + export WM_MPLIB=MACPORTOPENMPI + if [ "$FOAM_VERBOSE" -a "$PS1" ] + then + echo "Using OpenMPI from MacPorts" + fi + else + readlink /opt/local/bin/mpicc | grep mpich >/dev/null + if [ $? -eq "0" ] + then + export WM_MPLIB=MACPORTMPICH + if [ "$FOAM_VERBOSE" -a "$PS1" ] + then + echo "Using MPICH from MacPorts" + fi + else + echo "/opt/local/bin/mpicc neither OpenMPI nor MPICH. Confused. Defaulting to OPENMPI" + export WM_MPLIB=OPENMPI + fi + fi + fi + else + export WM_MPLIB=$WM_CHOSEN_MAC_MPI + if [ "$FOAM_VERBOSE" -a "$PS1" ] + then + echo "User chose WM_CHOSEN_MAC_MPI=$WM_CHOSEN_MAC_MPI" + fi + fi + + if [ "$WM_MPLIB" == "MACPORTOPENMPI" ] + then + if [ ! -e "/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION" ] + then + export WM_MACPORT_MPI_VERSION=mp + if [ ! -e "/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION" ] + then + echo "Proper OpenMPI not installed. Either do 'port install openmpi-$WM_MACPORT_MPI_VERSION' or 'port install openmpi-default'" + fi + fi + else + if [ "$WM_MPLIB" == "MACPORTMPICH" ] + then + if [ ! -e "/opt/local/lib/mpich-$WM_MACPORT_MPI_VERSION" ] + then + echo "MPICH wants the same version as the used compiler. Do 'port install mpich-$WM_MACPORT_MPI_VERSION'" + fi + fi + fi + + if [ "$WM_COMPILER" != "Gcc" ] + then + if [ "$WM_BASE_COMPILER" == "Gcc" ] + then + export WM_CC="gcc-mp-$WM_MACPORT_VERSION" + export WM_CXX="g++-mp-$WM_MACPORT_VERSION" + elif [ "$WM_BASE_COMPILER" == "Clang" ] + then + export WM_CC="clang-mp-$WM_MACPORT_VERSION" + export WM_CXX="clang++-mp-$WM_MACPORT_VERSION" + elif [ "$WM_BASE_COMPILER" == "Dragonegg" ] + then + export WM_CC="dragonegg-$WM_MACPORT_VERSION-gcc" + export WM_CXX="dragonegg-$WM_MACPORT_VERSION-g++" + else + echo "Unknown base compiler $WM_BASE_COMPILER" + fi + + ruleDirBase=$WM_PROJECT_DIR/wmake/rules/$WM_ARCH + ruleDirTarget=$ruleDirBase$WM_BASE_COMPILER + ruleDir=$ruleDirBase$WM_COMPILER + if [ ! -e $ruleDir ] + then + echo "Rule directory $ruleDir not existing. Linking to $ruleDirTarget" + ln -s $ruleDirTarget $ruleDir + fi + unset ruleDir ruleDirBase + fi + else + echo "Seems you're not using MacPorts. This is currently not supported/tested. Find this line in 'etc/config/settings.sh', modify it accordingly and send patches to Bernhard" + export WM_COMPILER= + export WM_MPLIB=OPENMPI + fi + + # Make sure that binaries use the best features of the used OS-Version + # We need to get rid of the revision number from this string. eg turn "10.7.5" into "10.7" + # v=(`sw_vers -productVersion | sed 's/\./ /g'`) + # export MACOSX_DEPLOYMENT_TARGET="${v[1]}.${v[2]}" + export MACOSX_DEPLOYMENT_TARGET=`sw_vers -productVersion | sed -e "s/\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\1.\2/g"` + ;; + + *) # an unsupported operating system /bin/cat <&2 @@ -373,6 +527,19 @@ SYSTEMOPENMPI) unset libDir ;; +MACPORTOPENMPI) + unset OPAL_PREFIX + + export FOAM_MPI=openmpi-macport-$WM_MACPORT_MPI_VERSION + + # Currently not correctly working on MacPorts + # libDir=`mpicc-openmpi-$WM_MACPORT_MPI_VERSION --showme:libdirs` + libDir=/opt/local/lib/openmpi-$WM_MACPORT_MPI_VERSION + + _foamAddLib $libDir + unset libDir + ;; + OPENMPI) export FOAM_MPI=openmpi-1.6.5 # optional configuration tweaks: @@ -421,6 +588,17 @@ MPICH-GM) _foamAddLib $GM_LIB_PATH ;; +MACPORTMPICH) + export FOAM_MPI=mpich-macports-$WM_MACPORT_MPI_VERSION + export MPI_HOME=$WM_THIRD_PARTY_DIR/$FOAM_MPI + + libDir=/opt/local/lib/mpich-$WM_MACPORT_MPI_VERSION + + _foamAddLib $libDir + unset libDir + + ;; + HPMPI) export FOAM_MPI=hpmpi export MPI_HOME=/opt/hpmpi @@ -548,6 +726,23 @@ then fi export MPI_BUFFER_SIZE +if [ -n "$WM_USE_MACPORT" ] +then + if [ -e "/opt/local/include/mpfr.h" ] + then + export MPFR_ARCH_PATH=/opt/local + unset MPFR_VERSION + else + echo "No mpfr in MacPorts. Install mpfr with 'port install mpfr'" + fi + if [ -e "/opt/local/include/gmp.h" ] + then + export GMP_ARCH_PATH=/opt/local + unset GMP_VERSION + else + echo "No gmp in MacPorts. Install gmp with 'port install gmp'" + fi +fi # cleanup environment: # ~~~~~~~~~~~~~~~~~~~~ diff --git a/etc/controlDict b/etc/controlDict index 68d8f86a..3401ee18 100644 --- a/etc/controlDict +++ b/etc/controlDict @@ -18,7 +18,8 @@ FoamFile Documentation { - docBrowser "firefox %f"; + // docBrowser "firefox %f"; + docBrowser "open %f"; doxyDocDirs ( "$WM_PROJECT_USER_DIR/html" diff --git a/logName.log b/logName.log new file mode 100644 index 00000000..9311fa82 --- /dev/null +++ b/logName.log @@ -0,0 +1,6402 @@ +make: Nothing to be done for `all'. +no ThirdParty sources found - skipping +++ wmakePrintBuild -check +same version as previous build +++ wmakeLnInclude OpenFOAM +++ wmakeLnInclude OSspecific/POSIX +++ Pstream/Allwmake ++ wmake libso dummy +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy/libPstream.dylib' is up to date. ++ case "$WM_MPLIB" in ++ set +x + +Note: ignore spurious warnings about missing mpicxx.h headers + +wclean mpi +wmake libso mpi +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file UIPread.C +Making dependency list for source file UPstream.C +Making dependency list for source file UOPwrite.C +Making dependency list for source file PstreamGlobals.C +could not open file omp.h for source file UPstream.C due to No such file or directory +could not open file omp.h for source file UOPwrite.C due to No such file or directory +could not open file omp.h for source file UIPread.C due to No such file or directory +could not open file omp.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/pmpicxx.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/pmpicxx.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/pmpicxx.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/pmpicxx.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/constants.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/constants.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/constants.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/functions.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/constants.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/functions.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/functions.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/functions.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/exception.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/exception.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/exception.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/exception.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/op.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/op.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/op.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/status.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/op.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/status.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/request.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/status.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/status.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/request.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/group.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/request.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/request.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/group.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/comm.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/group.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/group.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/comm.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/win.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/comm.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/comm.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/win.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/file.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/win.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/win.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/file.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/file.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/file.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/topology.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/topology.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/topology.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/topology.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/info.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/info.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/info.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/info.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/pop_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/pop_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/pop_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/pop_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/pgroup_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/pgroup_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/pgroup_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/pgroup_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/pstatus_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/pstatus_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/pstatus_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/pstatus_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/prequest_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/prequest_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/prequest_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/prequest_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/functions_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/request_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/functions_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/functions_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/comm_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/request_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/request_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/functions_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/comm_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/comm_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/request_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/topology_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/comm_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/topology_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/group_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/topology_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/op_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/group_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/topology_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/group_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/op_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/status_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/op_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/group_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/info_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/status_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/op_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/win_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/info_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/status_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/file_inln.h for source file PstreamGlobals.C due to No such file or directory +could not open file ompi/mpi/cxx/win_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/info_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/file_inln.h for source file UPstream.C due to No such file or directory +could not open file ompi/mpi/cxx/status_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/win_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/info_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/file_inln.h for source file UIPread.C due to No such file or directory +could not open file ompi/mpi/cxx/win_inln.h for source file UOPwrite.C due to No such file or directory +could not open file ompi/mpi/cxx/file_inln.h for source file UOPwrite.C due to No such file or directory +SOURCE=UIPread.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/UIPread.o +SOURCE=UOPwrite.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/UOPwrite.o +SOURCE=PstreamGlobals.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/PstreamGlobals.o +SOURCE=UPstream.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/UPstream.o +In file included from allReduce.H:66:0, + from UPstream.C:33: +allReduceTemplates.C: In function 'void Foam::allReduce(Type&, int, MPI_Datatype, MPI_Op, const BinaryOp&, int, int)': +allReduceTemplates.C:70:25: warning: use of old-style cast [-Wold-style-cast] +allReduceTemplates.C:174:21: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static bool Foam::UPstream::init(int&, char**&)': +UPstream.C:67:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:67:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:69:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:69:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::exit(int)': +UPstream.C:164:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:164:19: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::abort()': +UPstream.C:171:15: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:171:15: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In function 'void Foam::reduce(Foam::scalar&, const Foam::sumOp&, int, Foam::label)': +UPstream.C:190:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:190:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:190:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:190:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In function 'void Foam::reduce(Foam::scalar&, const Foam::minOp&, int, Foam::label)': +UPstream.C:209:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:209:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:209:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:209:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In function 'void Foam::reduce(Foam::vector2D&, const Foam::sumOp >&, int, Foam::label)': +UPstream.C:228:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:228:25: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:228:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:228:37: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::allocatePstreamCommunicator(Foam::label, Foam::label)': +UPstream.C:343:52: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:343:52: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:344:24: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:344:24: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:375:57: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:375:57: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::freePstreamCommunicator(Foam::label)': +UPstream.C:413:64: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:413:64: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:418:57: warning: use of old-style cast [-Wold-style-cast] +UPstream.C:418:57: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::waitRequests(Foam::label)': +UPstream.C:466:17: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static void Foam::UPstream::waitRequest(Foam::label)': +UPstream.C:511:13: warning: use of old-style cast [-Wold-style-cast] +UPstream.C: In static member function 'static bool Foam::UPstream::finishedRequest(Foam::label)': +UPstream.C:554:9: warning: use of old-style cast [-Wold-style-cast] +UIPread.C: In constructor 'Foam::UIPstream::UIPstream(Foam::UPstream::commsTypes, int, Foam::DynamicList&, Foam::label&, int, Foam::label, bool, Foam::IOstream::streamFormat, Foam::IOstream::versionNumber)': +UIPread.C:93:36: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:93:36: warning: use of old-style cast [-Wold-style-cast] +UIPread.C: In constructor 'Foam::UIPstream::UIPstream(int, Foam::PstreamBuffers&)': +UIPread.C:190:36: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:190:36: warning: use of old-style cast [-Wold-style-cast] +UIPread.C: In static member function 'static Foam::label Foam::UIPstream::read(Foam::UPstream::commsTypes, int, char*, std::streamsize, int, Foam::label)': +UIPread.C:264:17: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:264:17: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:286:32: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:286:32: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:320:17: warning: use of old-style cast [-Wold-style-cast] +UIPread.C:320:17: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C: In static member function 'static bool Foam::UOPstream::write(Foam::UPstream::commsTypes, int, const char*, std::streamsize, int, Foam::label)': +UOPwrite.C:77:13: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C:77:13: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C:97:13: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C:97:13: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C:119:13: warning: use of old-style cast [-Wold-style-cast] +UOPwrite.C:119:13: warning: use of old-style cast [-Wold-style-cast] +In file included from /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/DynamicList.H:252:0, + from /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/UPstream.H:43, + from UPstream.C:28: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/DynamicListI.H: In static member function 'static void Foam::UPstream::allocatePstreamCommunicator(Foam::label, Foam::label)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/DynamicListI.H:317:5: warning: 'newGroup' may be used uninitialized in this function [-Wuninitialized] +UPstream.C:307:19: note: 'newGroup' was declared here +In file included from /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/DynamicList.H:252:0, + from /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/UPstream.H:43, + from UPstream.C:28: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/DynamicListI.H:317:5: warning: 'newComm' may be used uninitialized in this function [-Wuninitialized] +UPstream.C:309:18: note: 'newComm' was declared here +ld: warning: directory not found for option '-L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOptMACPORTOPENMPI/lib' +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp/libPstream.dylib' is up to date. +++ OSspecific/POSIX/Allwmake +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libOSspecific.o' is up to date. +++ wmake libso OpenFOAM +SOURCE=meshes/lduMesh/lduPrimitiveMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lduPrimitiveMesh.o +SOURCE=matrices/LduMatrix/Preconditioners/lduPreconditioners.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lduPreconditioners.o +SOURCE=matrices/LduMatrix/Smoothers/lduSmoothers.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lduSmoothers.o +SOURCE=matrices/LduMatrix/Solvers/lduSolvers.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lduSolvers.o +SOURCE=meshes/primitiveShapes/line/line.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/line.o +SOURCE=meshes/primitiveShapes/plane/plane.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/plane.o +SOURCE=meshes/primitiveShapes/triangle/intersection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/intersection.o +SOURCE=meshes/primitiveShapes/objectHit/pointIndexHitIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointIndexHitIOList.o +SOURCE=meshes/meshShapes/edge/edge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edge.o +SOURCE=meshes/meshShapes/edge/edgeIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeIOList.o +SOURCE=meshes/meshShapes/face/face.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/face.o +SOURCE=meshes/meshShapes/face/faceIntersection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceIntersection.o +SOURCE=meshes/meshShapes/face/faceContactSphere.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceContactSphere.o +SOURCE=meshes/meshShapes/face/faceAreaInContact.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceAreaInContact.o +SOURCE=meshes/meshShapes/face/faceIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceIOList.o +SOURCE=meshes/meshShapes/cell/cell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cell.o +SOURCE=meshes/meshShapes/cell/oppositeCellFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oppositeCellFace.o +SOURCE=meshes/meshShapes/cell/cellIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellIOList.o +SOURCE=meshes/meshShapes/tetCell/tetCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetCell.o +SOURCE=meshes/meshShapes/cellModeller/cellModeller.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellModeller.o +SOURCE=meshes/meshShapes/cellModel/cellModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellModel.o +SOURCE=meshes/meshShapes/cellModel/cellModelIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellModelIO.o +SOURCE=meshes/meshShapes/cellShape/cellShape.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShape.o +SOURCE=meshes/meshShapes/cellShape/cellShapeEqual.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShapeEqual.o +SOURCE=meshes/meshShapes/cellShape/cellShapeIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShapeIO.o +SOURCE=meshes/meshShapes/cellShape/cellShapeIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShapeIOList.o +SOURCE=meshes/Identifiers/patch/patchIdentifier.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchIdentifier.o +SOURCE=meshes/Identifiers/patch/coupleGroupIdentifier.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupleGroupIdentifier.o +SOURCE=meshes/MeshObject/meshObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshObject.o +SOURCE=meshes/polyMesh/polyPatches/polyPatch/polyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyPatch.o +SOURCE=meshes/polyMesh/polyPatches/polyPatch/polyPatchNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyPatchNew.o +SOURCE=meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/basic/generic/genericPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/genericPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/cyclicSlip/cyclicSlipPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/oldCyclic/oldCyclicPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oldCyclicPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/empty/emptyPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/symmetryPlane/symmetryPlanePolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlanePolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/symmetry/symmetryPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/constraint/wedge/wedgePolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgePolyPatch.o +SOURCE=meshes/polyMesh/polyPatches/derived/wall/wallPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallPolyPatch.o +SOURCE=meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyBoundaryMesh.o +SOURCE=meshes/polyMesh/polyBoundaryMesh/polyBoundaryMeshEntries.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyBoundaryMeshEntries.o +SOURCE=meshes/ProcessorTopology/commSchedule.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/commSchedule.o +SOURCE=meshes/polyMesh/globalMeshData/globalMeshData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/globalMeshData.o +SOURCE=meshes/polyMesh/globalMeshData/globalPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/globalPoints.o +SOURCE=meshes/polyMesh/globalMeshData/globalIndex.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/globalIndex.o +SOURCE=meshes/polyMesh/syncTools/syncTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/syncTools.o +SOURCE=meshes/polyMesh/polyMeshTetDecomposition/polyMeshTetDecomposition.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshTetDecomposition.o +SOURCE=meshes/polyMesh/polyMeshTetDecomposition/tetIndices.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetIndices.o +SOURCE=meshes/polyMesh/zones/zone/zone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zone.o +SOURCE=meshes/polyMesh/zones/cellZone/cellZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellZone.o +SOURCE=meshes/polyMesh/zones/cellZone/cellZoneNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellZoneNew.o +SOURCE=meshes/polyMesh/zones/faceZone/faceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZone.o +SOURCE=meshes/polyMesh/zones/faceZone/faceZoneNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZoneNew.o +SOURCE=meshes/polyMesh/zones/pointZone/pointZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointZone.o +SOURCE=meshes/polyMesh/zones/pointZone/pointZoneNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointZoneNew.o +SOURCE=meshes/polyMesh/polyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMesh.o +SOURCE=meshes/polyMesh/polyMeshFromShapeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshFromShapeMesh.o +SOURCE=meshes/polyMesh/polyMeshIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshIO.o +SOURCE=meshes/polyMesh/polyMeshInitMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshInitMesh.o +SOURCE=meshes/polyMesh/polyMeshClear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshClear.o +SOURCE=meshes/polyMesh/polyMeshUpdate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshUpdate.o +SOURCE=meshes/polyMesh/polyMeshCheck/polyMeshCheck.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshCheck.o +SOURCE=meshes/polyMesh/polyMeshCheck/polyMeshTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshTools.o +SOURCE=meshes/primitiveMesh/primitiveMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMesh.o +SOURCE=meshes/primitiveMesh/primitiveMeshCellCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCellCells.o +SOURCE=meshes/primitiveMesh/primitiveMeshCellCentresAndVols.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCellCentresAndVols.o +SOURCE=meshes/primitiveMesh/primitiveMeshCellEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCellEdges.o +SOURCE=meshes/primitiveMesh/primitiveMeshCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCells.o +SOURCE=meshes/primitiveMesh/primitiveMeshClear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshClear.o +SOURCE=meshes/primitiveMesh/primitiveMeshEdgeCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshEdgeCells.o +SOURCE=meshes/primitiveMesh/primitiveMeshEdgeFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshEdgeFaces.o +SOURCE=meshes/primitiveMesh/primitiveMeshEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshEdges.o +SOURCE=meshes/primitiveMesh/primitiveMeshFaceCentresAndAreas.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshFaceCentresAndAreas.o +SOURCE=meshes/primitiveMesh/primitiveMeshFindCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshFindCell.o +SOURCE=meshes/primitiveMesh/primitiveMeshPointCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshPointCells.o +SOURCE=meshes/primitiveMesh/primitiveMeshPointFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshPointFaces.o +SOURCE=meshes/primitiveMesh/primitiveMeshPointPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshPointPoints.o +SOURCE=meshes/primitiveMesh/primitiveMeshCellPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCellPoints.o +SOURCE=meshes/primitiveMesh/primitiveMeshCalcCellShapes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCalcCellShapes.o +SOURCE=meshes/primitiveMesh/primitiveMeshCheck/primitiveMeshCheck.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCheck.o +SOURCE=meshes/primitiveMesh/primitiveMeshCheck/primitiveMeshCheckPointNearness.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCheckPointNearness.o +SOURCE=meshes/primitiveMesh/primitiveMeshCheck/primitiveMeshCheckEdgeLength.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshCheckEdgeLength.o +SOURCE=meshes/primitiveMesh/primitiveMeshCheck/primitiveMeshTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshTools.o +SOURCE=meshes/primitiveMesh/primitivePatch/patchZones.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchZones.o +SOURCE=meshes/primitiveMesh/primitivePatch/walkPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/walkPatch.o +SOURCE=meshes/meshShapes/cellMatcher/cellMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/hexMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hexMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/wedgeMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgeMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/prismMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/prismMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/pyrMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pyrMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/tetWedgeMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetWedgeMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/tetMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetMatcher.o +SOURCE=meshes/meshShapes/cellMatcher/degenerateMatcher.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/degenerateMatcher.o +SOURCE=meshes/polyMesh/mapPolyMesh/mapPolyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapPolyMesh.o +SOURCE=meshes/polyMesh/mapPolyMesh/faceMapper/faceMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceMapper.o +SOURCE=meshes/polyMesh/mapPolyMesh/cellMapper/cellMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellMapper.o +SOURCE=meshes/polyMesh/mapPolyMesh/mapDistribute/mapDistribute.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapDistribute.o +SOURCE=meshes/polyMesh/mapPolyMesh/mapDistribute/mapDistributePolyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapDistributePolyMesh.o +SOURCE=meshes/polyMesh/mapPolyMesh/mapAddedPolyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapAddedPolyMesh.o +SOURCE=meshes/primitiveMesh/PrimitivePatch/PrimitivePatchName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PrimitivePatchName.o +SOURCE=meshes/pointMesh/pointMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointMesh.o +SOURCE=meshes/pointMesh/pointMeshMapper/pointMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointMapper.o +SOURCE=meshes/pointMesh/pointMeshMapper/pointPatchMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointPatchMapper.o +SOURCE=meshes/pointMesh/pointPatches/pointPatch/pointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointPatch.o +SOURCE=meshes/pointMesh/pointPatches/facePointPatch/facePointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/facePointPatch.o +SOURCE=meshes/pointMesh/pointPatches/facePointPatch/facePointPatchNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/facePointPatchNew.o +SOURCE=meshes/pointMesh/pointPatches/basic/coupled/coupledPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/genericPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/cyclicSlip/cyclicSlipPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/processorCyclic/processorCyclicPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/symmetryPlane/symmetryPlanePointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlanePointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPointPatch.o +SOURCE=meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgePointPatch.o +SOURCE=meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledFacePointPatch.o +SOURCE=meshes/pointMesh/pointPatches/derived/wall/wallPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallPointPatch.o +SOURCE=meshes/pointMesh/pointBoundaryMesh/pointBoundaryMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointBoundaryMesh.o +SOURCE=meshes/boundBox/boundBox.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundBox.o +SOURCE=meshes/treeBoundBox/treeBoundBox.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeBoundBox.o +SOURCE=meshes/meshTools/matchPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/matchPoints.o +SOURCE=fields/UniformDimensionedFields/uniformDimensionedFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformDimensionedFields.o +SOURCE=fields/cloud/cloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloud.o +SOURCE=fields/Fields/labelField/labelField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelField.o +SOURCE=fields/Fields/scalarField/scalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarField.o +SOURCE=fields/Fields/sphericalTensorField/sphericalTensorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphericalTensorField.o +SOURCE=fields/Fields/diagTensorField/diagTensorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diagTensorField.o +SOURCE=fields/Fields/symmTensorField/symmTensorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmTensorField.o +SOURCE=fields/Fields/tensorField/tensorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tensorField.o +SOURCE=fields/Fields/quaternionField/quaternionField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quaternionField.o +SOURCE=fields/Fields/triadField/triadField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triadField.o +SOURCE=fields/Fields/complexFields/complexFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/complexFields.o +SOURCE=fields/Fields/labelField/labelIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelIOField.o +SOURCE=fields/Fields/labelField/labelFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelFieldIOField.o +SOURCE=fields/Fields/scalarField/scalarIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarIOField.o +SOURCE=fields/Fields/scalarField/scalarFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarFieldIOField.o +SOURCE=fields/Fields/vectorField/vectorIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vectorIOField.o +SOURCE=fields/Fields/vectorField/vectorFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vectorFieldIOField.o +SOURCE=fields/Fields/vector2DField/vector2DIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vector2DIOField.o +SOURCE=fields/Fields/vector2DField/vector2DFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vector2DFieldIOField.o +SOURCE=fields/Fields/sphericalTensorField/sphericalTensorIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphericalTensorIOField.o +SOURCE=fields/Fields/sphericalTensorField/sphericalTensorFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphericalTensorFieldIOField.o +SOURCE=fields/Fields/diagTensorField/diagTensorIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diagTensorIOField.o +SOURCE=fields/Fields/diagTensorField/diagTensorFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diagTensorFieldIOField.o +SOURCE=fields/Fields/symmTensorField/symmTensorIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmTensorIOField.o +SOURCE=fields/Fields/symmTensorField/symmTensorFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmTensorFieldIOField.o +SOURCE=fields/Fields/tensorField/tensorIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tensorIOField.o +SOURCE=fields/Fields/tensorField/tensorFieldIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tensorFieldIOField.o +SOURCE=fields/Fields/quaternionField/quaternionIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quaternionIOField.o +SOURCE=fields/Fields/triadField/triadIOField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triadIOField.o +SOURCE=fields/Fields/transformField/transformField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transformField.o +SOURCE=fields/pointPatchFields/pointPatchField/pointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointPatchFields.o +SOURCE=fields/pointPatchFields/basic/calculated/calculatedPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calculatedPointPatchFields.o +SOURCE=fields/pointPatchFields/basic/coupled/coupledPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledPointPatchFields.o +SOURCE=fields/pointPatchFields/basic/value/valuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/valuePointPatchFields.o +SOURCE=fields/pointPatchFields/basic/fixedValue/fixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedValuePointPatchFields.o +SOURCE=fields/pointPatchFields/basic/zeroGradient/zeroGradientPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zeroGradientPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/cyclic/cyclicPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/cyclicSlip/cyclicSlipPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/empty/emptyPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/processor/processorPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/processorCyclic/processorCyclicPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/symmetryPlane/symmetryPlanePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlanePointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/symmetry/symmetryPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPointPatchFields.o +SOURCE=fields/pointPatchFields/constraint/wedge/wedgePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgePointPatchFields.o +SOURCE=fields/pointPatchFields/derived/slip/slipPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slipPointPatchFields.o +SOURCE=fields/pointPatchFields/derived/fixedNormalSlip/fixedNormalSlipPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedNormalSlipPointPatchFields.o +SOURCE=fields/pointPatchFields/derived/uniformFixedValue/uniformFixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformFixedValuePointPatchFields.o +SOURCE=fields/pointPatchFields/derived/timeVaryingUniformFixedValue/timeVaryingUniformFixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeVaryingUniformFixedValuePointPatchFields.o +SOURCE=fields/pointPatchFields/derived/codedFixedValue/codedFixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/codedFixedValuePointPatchFields.o +SOURCE=fields/GeometricFields/pointFields/pointFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointFields.o +SOURCE=meshes/bandCompression/bandCompression.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/bandCompression.o +SOURCE=meshes/preservePatchTypes/preservePatchTypes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/preservePatchTypes.o +SOURCE=interpolations/patchToPatchInterpolation/PatchToPatchInterpolationName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PatchToPatchInterpolationName.o +SOURCE=interpolations/interpolationTable/tableReaders/tableReaders.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tableReaders.o +SOURCE=interpolations/interpolationTable/tableReaders/openFoam/openFoamTableReaders.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/openFoamTableReaders.o +SOURCE=interpolations/interpolationTable/tableReaders/csv/csvTableReaders.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/csvTableReaders.o +SOURCE=interpolations/interpolationWeights/interpolationWeights/interpolationWeights.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interpolationWeights.o +SOURCE=interpolations/interpolationWeights/linearInterpolationWeights/linearInterpolationWeights.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearInterpolationWeights.o +SOURCE=interpolations/interpolationWeights/splineInterpolationWeights/splineInterpolationWeights.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splineInterpolationWeights.o +SOURCE=algorithms/indexedOctree/indexedOctreeName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/indexedOctreeName.o +SOURCE=algorithms/indexedOctree/treeDataCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataCell.o +SOURCE=algorithms/indexedOctree/volumeType.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/volumeType.o +SOURCE=algorithms/dynamicIndexedOctree/dynamicIndexedOctreeName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicIndexedOctreeName.o +SOURCE=algorithms/dynamicIndexedOctree/dynamicTreeDataPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicTreeDataPoint.o +SOURCE=graph/curve/curve.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/curve.o +SOURCE=graph/graph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/graph.o +SOURCE=graph/writers/rawGraph/rawGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rawGraph.o +SOURCE=graph/writers/gnuplotGraph/gnuplotGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gnuplotGraph.o +SOURCE=graph/writers/xmgrGraph/xmgrGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/xmgrGraph.o +SOURCE=graph/writers/jplotGraph/jplotGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/jplotGraph.o +SOURCE=meshes/data/data.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IMake/darwinIntel64Gcc47DPOpt -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/data.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libOpenFOAM.dylib' is up to date. +++ wmake libso fileFormats +SOURCE=starcd/STARCDCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDCore.o +SOURCE=sampledSetWriters/ensight/ensightSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightSetWriterRunTime.o +SOURCE=vtk/vtkUnstructuredReader.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkUnstructuredReader.o +SOURCE=sampledSetWriters/writers.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writers.o +SOURCE=sampledSetWriters/gnuplot/gnuplotSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gnuplotSetWriterRunTime.o +SOURCE=sampledSetWriters/jplot/jplotSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/jplotSetWriterRunTime.o +SOURCE=sampledSetWriters/raw/rawSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rawSetWriterRunTime.o +SOURCE=sampledSetWriters/vtk/vtkSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkSetWriterRunTime.o +SOURCE=sampledSetWriters/xmgrace/xmgraceSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/xmgraceSetWriterRunTime.o +SOURCE=sampledSetWriters/csv/csvSetWriterRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/csvSetWriterRunTime.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfileFormats.dylib' is up to date. +++ wmake libso surfMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file surfZone/surfZone/surfZone.C +Making dependency list for source file surfZone/surfZoneIdentifier/surfZoneIdentifier.C +Making dependency list for source file surfZone/surfZone/surfZoneIOList.C +Making dependency list for source file MeshedSurfaceAllocator/MeshedSurfaceIOAllocator.C +Making dependency list for source file MeshedSurface/MeshedSurfaceCore.C +Making dependency list for source file MeshedSurface/MeshedSurfaces.C +Making dependency list for source file UnsortedMeshedSurface/UnsortedMeshedSurfaces.C +Making dependency list for source file MeshedSurfaceProxy/MeshedSurfaceProxyCore.C +Making dependency list for source file surfaceRegistry/surfaceRegistry.C +Making dependency list for source file surfMesh/surfMesh.C +Making dependency list for source file surfMesh/surfMeshClear.C +Making dependency list for source file surfMesh/surfMeshIO.C +Making dependency list for source file surfFields/surfFields/surfFields.C +Making dependency list for source file surfFields/surfPointFields/surfPointFields.C +Making dependency list for source file surfaceFormats/surfaceFormatsCore.C +Making dependency list for source file surfaceFormats/ac3d/AC3DsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/ac3d/AC3DsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/ftr/FTRsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/gts/GTSsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/nas/NASsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/obj/OBJsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/obj/OBJstream.C +Making dependency list for source file surfaceFormats/off/OFFsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/ofs/OFSsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/ofs/OFSsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/smesh/SMESHsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/starcd/STARCDsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/starcd/STARCDsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/stl/STLsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/stl/STLsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/stl/STLsurfaceFormatASCII.L +Making dependency list for source file surfaceFormats/tri/TRIsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/tri/TRIsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/vtk/VTKsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/vtk/VTKsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/wrl/WRLsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/wrl/WRLsurfaceFormatRunTime.C +Making dependency list for source file surfaceFormats/x3d/X3DsurfaceFormatCore.C +Making dependency list for source file surfaceFormats/x3d/X3DsurfaceFormatRunTime.C +SOURCE=surfZone/surfZone/surfZoneIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfZoneIOList.o +SOURCE=surfZone/surfZone/surfZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfZone.o +SOURCE=surfZone/surfZoneIdentifier/surfZoneIdentifier.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfZoneIdentifier.o +SOURCE=MeshedSurfaceAllocator/MeshedSurfaceIOAllocator.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MeshedSurfaceIOAllocator.o +SOURCE=MeshedSurface/MeshedSurfaceCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MeshedSurfaceCore.o +SOURCE=MeshedSurface/MeshedSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MeshedSurfaces.o +SOURCE=UnsortedMeshedSurface/UnsortedMeshedSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/UnsortedMeshedSurfaces.o +SOURCE=MeshedSurfaceProxy/MeshedSurfaceProxyCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MeshedSurfaceProxyCore.o +SOURCE=surfaceRegistry/surfaceRegistry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceRegistry.o +SOURCE=surfMesh/surfMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfMesh.o +SOURCE=surfMesh/surfMeshClear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfMeshClear.o +SOURCE=surfMesh/surfMeshIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfMeshIO.o +SOURCE=surfFields/surfFields/surfFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfFields.o +SOURCE=surfFields/surfPointFields/surfPointFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfPointFields.o +SOURCE=surfaceFormats/surfaceFormatsCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFormatsCore.o +SOURCE=surfaceFormats/ac3d/AC3DsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/AC3DsurfaceFormatCore.o +SOURCE=surfaceFormats/ac3d/AC3DsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/AC3DsurfaceFormatRunTime.o +SOURCE=surfaceFormats/ftr/FTRsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/FTRsurfaceFormatRunTime.o +SOURCE=surfaceFormats/gts/GTSsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GTSsurfaceFormatRunTime.o +SOURCE=surfaceFormats/nas/NASsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NASsurfaceFormatRunTime.o +SOURCE=surfaceFormats/obj/OBJsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OBJsurfaceFormatRunTime.o +SOURCE=surfaceFormats/obj/OBJstream.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OBJstream.o +SOURCE=surfaceFormats/off/OFFsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OFFsurfaceFormatRunTime.o +SOURCE=surfaceFormats/ofs/OFSsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OFSsurfaceFormatCore.o +SOURCE=surfaceFormats/ofs/OFSsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OFSsurfaceFormatRunTime.o +SOURCE=surfaceFormats/smesh/SMESHsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SMESHsurfaceFormatRunTime.o +SOURCE=surfaceFormats/starcd/STARCDsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDsurfaceFormatCore.o +SOURCE=surfaceFormats/starcd/STARCDsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDsurfaceFormatRunTime.o +SOURCE=surfaceFormats/stl/STLsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatCore.o +SOURCE=surfaceFormats/stl/STLsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatRunTime.o +SOURCE=surfaceFormats/stl/STLsurfaceFormatASCII.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C -o Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.o +SOURCE=surfaceFormats/tri/TRIsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TRIsurfaceFormatCore.o +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'int STLASCIILexer::lex()': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:5550:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:5550:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:5566:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:5798:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6053:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6076:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6089:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6089:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6110:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6135:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6138:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6138:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6165:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6165:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6225:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6226:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6234:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6301:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6379:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6388:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6410:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6413:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6415:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6540:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6560:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6580:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6583:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6583:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6662:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6674:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6674:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/STLsurfaceFormatASCII.C:6679:17: warning: use of old-style cast [-Wold-style-cast] +SOURCE=surfaceFormats/tri/TRIsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TRIsurfaceFormatRunTime.o +SOURCE=surfaceFormats/vtk/VTKsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/VTKsurfaceFormatCore.o +SOURCE=surfaceFormats/vtk/VTKsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/VTKsurfaceFormatRunTime.o +SOURCE=surfaceFormats/wrl/WRLsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/WRLsurfaceFormatCore.o +SOURCE=surfaceFormats/wrl/WRLsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/WRLsurfaceFormatRunTime.o +SOURCE=surfaceFormats/x3d/X3DsurfaceFormatCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/X3DsurfaceFormatCore.o +SOURCE=surfaceFormats/x3d/X3DsurfaceFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/X3DsurfaceFormatRunTime.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsurfMesh.dylib' is up to date. +++ wmake libso triSurface +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file triSurface/triSurface.C +Making dependency list for source file meshTriangulation/meshTriangulation.C +Making dependency list for source file faceTriangulation/faceTriangulation.C +Making dependency list for source file triSurface/triSurfaceAddressing.C +Making dependency list for source file triSurface/stitchTriangles.C +Making dependency list for source file triSurface/interfaces/STL/writeSTL.C +Making dependency list for source file triSurface/interfaces/STL/readSTL.C +Making dependency list for source file triSurface/interfaces/STL/readSTLASCII.L +Making dependency list for source file triSurface/interfaces/GTS/writeGTS.C +Making dependency list for source file triSurface/interfaces/STL/readSTLBINARY.C +Making dependency list for source file triSurface/interfaces/OBJ/readOBJ.C +Making dependency list for source file triSurface/interfaces/GTS/readGTS.C +Making dependency list for source file triSurface/interfaces/OBJ/writeOBJ.C +Making dependency list for source file triSurface/interfaces/SMESH/writeSMESH.C +Making dependency list for source file triSurface/interfaces/OFF/readOFF.C +Making dependency list for source file triSurface/interfaces/OFF/writeOFF.C +Making dependency list for source file triSurface/interfaces/TRI/writeTRI.C +Making dependency list for source file triSurface/interfaces/TRI/readTRI.C +Making dependency list for source file triSurface/interfaces/DX/writeDX.C +Making dependency list for source file triSurface/interfaces/AC3D/readAC.C +Making dependency list for source file triSurface/interfaces/AC3D/writeAC.C +Making dependency list for source file triSurface/interfaces/VTK/readVTK.C +Making dependency list for source file triSurface/interfaces/VTK/writeVTK.C +Making dependency list for source file triSurface/interfaces/NAS/readNAS.C +Making dependency list for source file triSurface/geometricSurfacePatch/geometricSurfacePatch.C +Making dependency list for source file triSurface/surfacePatch/surfacePatch.C +Making dependency list for source file triSurface/surfacePatch/surfacePatchIOList.C +Making dependency list for source file tools/labelledTri/sortLabelledTri.C +Making dependency list for source file triSurfaceFields/triSurfaceFields.C +SOURCE=faceTriangulation/faceTriangulation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceTriangulation.o +SOURCE=meshTriangulation/meshTriangulation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshTriangulation.o +SOURCE=triSurface/triSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurface.o +SOURCE=triSurface/triSurfaceAddressing.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceAddressing.o +SOURCE=triSurface/stitchTriangles.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/stitchTriangles.o +SOURCE=triSurface/interfaces/STL/writeSTL.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeSTL.o +SOURCE=triSurface/interfaces/STL/readSTL.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readSTL.o +SOURCE=triSurface/interfaces/STL/readSTLASCII.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/readSTLASCII.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C -o Make/darwinIntel64Gcc47DPOpt/readSTLASCII.o +SOURCE=triSurface/interfaces/STL/readSTLBINARY.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readSTLBINARY.o +SOURCE=triSurface/interfaces/GTS/writeGTS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeGTS.o +SOURCE=triSurface/interfaces/GTS/readGTS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readGTS.o +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'int STLLexer::lex()': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:5553:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:5553:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:5569:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:5783:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6038:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6061:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6074:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6074:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6095:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6120:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6123:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6123:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6150:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6150:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6210:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6211:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6219:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6286:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6364:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6373:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6395:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6398:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6400:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6525:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6545:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6565:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6568:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6568:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6647:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6659:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6659:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/readSTLASCII.C:6664:17: warning: use of old-style cast [-Wold-style-cast] +SOURCE=triSurface/interfaces/OBJ/readOBJ.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readOBJ.o +SOURCE=triSurface/interfaces/OBJ/writeOBJ.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeOBJ.o +SOURCE=triSurface/interfaces/SMESH/writeSMESH.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeSMESH.o +SOURCE=triSurface/interfaces/OFF/readOFF.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readOFF.o +SOURCE=triSurface/interfaces/OFF/writeOFF.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeOFF.o +SOURCE=triSurface/interfaces/TRI/writeTRI.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeTRI.o +SOURCE=triSurface/interfaces/TRI/readTRI.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readTRI.o +SOURCE=triSurface/interfaces/DX/writeDX.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeDX.o +SOURCE=triSurface/interfaces/AC3D/readAC.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readAC.o +SOURCE=triSurface/interfaces/AC3D/writeAC.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeAC.o +SOURCE=triSurface/interfaces/VTK/readVTK.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readVTK.o +SOURCE=triSurface/interfaces/VTK/writeVTK.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeVTK.o +SOURCE=triSurface/interfaces/NAS/readNAS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readNAS.o +SOURCE=triSurface/geometricSurfacePatch/geometricSurfacePatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/geometricSurfacePatch.o +SOURCE=triSurface/surfacePatch/surfacePatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfacePatch.o +SOURCE=triSurface/surfacePatch/surfacePatchIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfacePatchIOList.o +SOURCE=tools/labelledTri/sortLabelledTri.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sortLabelledTri.o +SOURCE=triSurfaceFields/triSurfaceFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceFields.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtriSurface.dylib' is up to date. +++ wmake libso meshTools +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file cellClassification/cellClassification.C +Making dependency list for source file cellClassification/cellInfo.C +Making dependency list for source file cellQuality/cellQuality.C +Making dependency list for source file cellDist/cellDistFuncs.C +Making dependency list for source file cellDist/patchWave/patchWave.C +Making dependency list for source file cellDist/wallPoint/wallPoint.C +Making dependency list for source file cellFeatures/cellFeatures.C +Making dependency list for source file coordinateSystems/coordinateSystem.C +Making dependency list for source file coordinateSystems/coordinateSystemNew.C +Making dependency list for source file coordinateSystems/coordinateSystems.C +Making dependency list for source file coordinateSystems/cylindricalCS.C +Making dependency list for source file coordinateSystems/cartesianCS.C +Making dependency list for source file coordinateSystems/coordinateRotation/axesRotation.C +Making dependency list for source file coordinateSystems/coordinateRotation/coordinateRotation.C +Making dependency list for source file coordinateSystems/coordinateRotation/coordinateRotationNew.C +Making dependency list for source file coordinateSystems/coordinateRotation/EulerCoordinateRotation.C +Making dependency list for source file coordinateSystems/coordinateRotation/STARCDCoordinateRotation.C +Making dependency list for source file coordinateSystems/coordinateRotation/localAxesRotation.C +Making dependency list for source file edgeFaceCirculator/edgeFaceCirculator.C +Making dependency list for source file polyMeshZipUpCells/polyMeshZipUpCells.C +Making dependency list for source file primitiveMeshGeometry/primitiveMeshGeometry.C +Making dependency list for source file meshSearch/meshSearch.C +Making dependency list for source file meshSearch/meshSearchFACECENTRETETSMeshObject.C +Making dependency list for source file meshSearch/meshSearchMeshObject.C +Making dependency list for source file meshTools/meshTools.C +Making dependency list for source file algorithms/PointEdgeWave/PointEdgeWaveName.C +Making dependency list for source file algorithms/PointEdgeWave/pointEdgePoint.C +Making dependency list for source file algorithms/PatchEdgeFaceWave/PatchEdgeFaceWaveName.C +Making dependency list for source file algorithms/PatchEdgeFaceWave/patchEdgeFaceInfo.C +Making dependency list for source file algorithms/PatchEdgeFaceWave/patchPatchDist.C +Making dependency list for source file algorithms/PatchEdgeFaceWave/patchEdgeFaceRegions.C +Making dependency list for source file algorithms/PatchEdgeFaceWave/patchEdgeFaceRegion.C +Making dependency list for source file algorithms/MeshWave/MeshWaveName.C +Making dependency list for source file algorithms/MeshWave/FaceCellWaveName.C +Making dependency list for source file regionSplit/regionSplit.C +Making dependency list for source file regionSplit/localPointRegion.C +Making dependency list for source file indexedOctree/treeDataEdge.C +Making dependency list for source file indexedOctree/treeDataFace.C +Making dependency list for source file indexedOctree/treeDataPoint.C +Making dependency list for source file indexedOctree/treeDataPrimitivePatchName.C +Making dependency list for source file indexedOctree/treeDataTriSurface.C +Making dependency list for source file searchableSurface/searchableBox.C +Making dependency list for source file searchableSurface/searchableCylinder.C +Making dependency list for source file searchableSurface/searchablePlane.C +Making dependency list for source file searchableSurface/searchablePlate.C +Making dependency list for source file searchableSurface/searchableSphere.C +Making dependency list for source file searchableSurface/searchableSurface.C +Making dependency list for source file searchableSurface/searchableSurfaceCollection.C +Making dependency list for source file searchableSurface/searchableSurfaces.C +Making dependency list for source file searchableSurface/searchableSurfacesQueries.C +Making dependency list for source file searchableSurface/searchableSurfaceWithGaps.C +Making dependency list for source file searchableSurface/triSurfaceMesh.C +Making dependency list for source file searchableSurface/closedTriSurfaceMesh.C +Making dependency list for source file sets/topoSets/cellSet.C +Making dependency list for source file sets/topoSets/topoSet.C +Making dependency list for source file sets/topoSets/faceSet.C +Making dependency list for source file sets/topoSets/pointSet.C +Making dependency list for source file sets/topoSets/cellZoneSet.C +Making dependency list for source file sets/topoSets/faceZoneSet.C +Making dependency list for source file sets/topoSets/pointZoneSet.C +Making dependency list for source file sets/topoSetSource/topoSetSource.C +Making dependency list for source file sets/cellSources/faceToCell/faceToCell.C +Making dependency list for source file sets/cellSources/fieldToCell/fieldToCell.C +Making dependency list for source file sets/cellSources/pointToCell/pointToCell.C +Making dependency list for source file sets/cellSources/shapeToCell/shapeToCell.C +Making dependency list for source file sets/cellSources/boxToCell/boxToCell.C +Making dependency list for source file sets/cellSources/regionToCell/regionToCell.C +Making dependency list for source file sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C +Making dependency list for source file sets/cellSources/labelToCell/labelToCell.C +Making dependency list for source file sets/cellSources/surfaceToCell/surfaceToCell.C +Making dependency list for source file sets/cellSources/cellToCell/cellToCell.C +Making dependency list for source file sets/cellSources/nearestToCell/nearestToCell.C +Making dependency list for source file sets/cellSources/nbrToCell/nbrToCell.C +Making dependency list for source file sets/cellSources/zoneToCell/zoneToCell.C +Making dependency list for source file sets/cellSources/sphereToCell/sphereToCell.C +Making dependency list for source file sets/cellSources/cylinderToCell/cylinderToCell.C +Making dependency list for source file sets/cellSources/faceZoneToCell/faceZoneToCell.C +Making dependency list for source file sets/cellSources/cylinderAnnulusToCell/cylinderAnnulusToCell.C +Making dependency list for source file sets/cellSources/targetVolumeToCell/targetVolumeToCell.C +Making dependency list for source file sets/faceSources/faceToFace/faceToFace.C +Making dependency list for source file sets/faceSources/labelToFace/labelToFace.C +Making dependency list for source file sets/faceSources/cellToFace/cellToFace.C +Making dependency list for source file sets/faceSources/normalToFace/normalToFace.C +Making dependency list for source file sets/faceSources/pointToFace/pointToFace.C +Making dependency list for source file sets/faceSources/patchToFace/patchToFace.C +Making dependency list for source file sets/faceSources/boundaryToFace/boundaryToFace.C +Making dependency list for source file sets/faceSources/zoneToFace/zoneToFace.C +Making dependency list for source file sets/faceSources/boxToFace/boxToFace.C +Making dependency list for source file sets/faceSources/regionToFace/regionToFace.C +Making dependency list for source file sets/pointSources/labelToPoint/labelToPoint.C +Making dependency list for source file sets/pointSources/pointToPoint/pointToPoint.C +Making dependency list for source file sets/pointSources/cellToPoint/cellToPoint.C +Making dependency list for source file sets/pointSources/faceToPoint/faceToPoint.C +Making dependency list for source file sets/pointSources/boxToPoint/boxToPoint.C +Making dependency list for source file sets/pointSources/surfaceToPoint/surfaceToPoint.C +Making dependency list for source file sets/pointSources/zoneToPoint/zoneToPoint.C +Making dependency list for source file sets/pointSources/nearestToPoint/nearestToPoint.C +Making dependency list for source file sets/faceZoneSources/faceZoneToFaceZone/faceZoneToFaceZone.C +Making dependency list for source file sets/faceZoneSources/setsToFaceZone/setsToFaceZone.C +Making dependency list for source file sets/faceZoneSources/setToFaceZone/setToFaceZone.C +Making dependency list for source file sets/faceZoneSources/setAndNormalToFaceZone/setAndNormalToFaceZone.C +Making dependency list for source file sets/faceZoneSources/searchableSurfaceToFaceZone/searchableSurfaceToFaceZone.C +Making dependency list for source file sets/cellZoneSources/setToCellZone/setToCellZone.C +Making dependency list for source file sets/pointZoneSources/setToPointZone/setToPointZone.C +Making dependency list for source file momentOfInertia/momentOfInertia.C +Making dependency list for source file surfaceSets/surfaceSets.C +Making dependency list for source file triSurface/orientedSurface/orientedSurface.C +Making dependency list for source file triSurface/surfaceLocation/surfaceLocation.C +Making dependency list for source file triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C +Making dependency list for source file triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C +Making dependency list for source file triSurface/booleanOps/surfaceIntersection/edgeIntersections.C +Making dependency list for source file triSurface/booleanOps/booleanSurface/booleanSurface.C +Making dependency list for source file triSurface/booleanOps/intersectedSurface/intersectedSurface.C +Making dependency list for source file triSurface/booleanOps/intersectedSurface/edgeSurface.C +Making dependency list for source file triSurface/triSurfaceSearch/triSurfaceSearch.C +Making dependency list for source file triSurface/triSurfaceSearch/triSurfaceRegionSearch.C +Making dependency list for source file triSurface/triangleFuncs/triangleFuncs.C +Making dependency list for source file triSurface/surfaceFeatures/surfaceFeatures.C +Making dependency list for source file triSurface/triSurfaceTools/triSurfaceTools.C +Making dependency list for source file triSurface/triSurfaceTools/geompack/geompack.C +Making dependency list for source file triSurface/triSurfaceTools/pointToPointPlanarInterpolation.C +Making dependency list for source file twoDPointCorrector/twoDPointCorrector.C +Making dependency list for source file AMIInterpolation/AMIInterpolation/AMIInterpolationName.C +Making dependency list for source file AMIInterpolation/AMIInterpolation/AMIPatchToPatchInterpolation.C +Making dependency list for source file AMIInterpolation/faceAreaIntersect/faceAreaIntersect.C +Making dependency list for source file AMIInterpolation/GAMG/interfaces/cyclicAMIGAMGInterface/cyclicAMIGAMGInterface.C +Making dependency list for source file AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C +Making dependency list for source file AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.C +Making dependency list for source file AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C +Making dependency list for source file AMIInterpolation/patches/cyclicAMI/cyclicAMILduInterfaceField/cyclicAMILduInterface.C +Making dependency list for source file AMIInterpolation/patches/cyclicAMI/cyclicAMILduInterfaceField/cyclicAMILduInterfaceField.C +Making dependency list for source file AMIInterpolation/patches/cyclicAMI/cyclicAMIPointPatch/cyclicAMIPointPatch.C +Making dependency list for source file AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C +Making dependency list for source file AMIInterpolation/patches/cyclicAMI/cyclicAMIPointPatchField/cyclicAMIPointPatchFields.C +Making dependency list for source file AMIInterpolation/patches/cyclicACMI/cyclicACMILduInterfaceField/cyclicACMILduInterface.C +Making dependency list for source file AMIInterpolation/patches/cyclicACMI/cyclicACMILduInterfaceField/cyclicACMILduInterfaceField.C +Making dependency list for source file AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C +Making dependency list for source file AMIInterpolation/patches/cyclicACMI/cyclicACMIPointPatch/cyclicACMIPointPatch.C +Making dependency list for source file AMIInterpolation/patches/cyclicACMI/cyclicACMIPointPatchField/cyclicACMIPointPatchFields.C +Making dependency list for source file mappedPatches/mappedPolyPatch/mappedPatchBase.C +Making dependency list for source file mappedPatches/mappedPolyPatch/mappedPolyPatch.C +Making dependency list for source file mappedPatches/mappedPolyPatch/mappedWallPolyPatch.C +Making dependency list for source file mappedPatches/mappedPolyPatch/mappedVariableThicknessWallPolyPatch.C +Making dependency list for source file mappedPatches/mappedPointPatch/mappedPointPatch.C +Making dependency list for source file mappedPatches/mappedPointPatch/mappedWallPointPatch.C +Making dependency list for source file meshStructure/meshStructure.C +Making dependency list for source file meshStructure/topoDistanceData.C +Making dependency list for source file meshStructure/pointTopoDistanceData.C +Making dependency list for source file regionCoupled/patches/regionCoupledPolyPatch/regionCoupledBase.C +Making dependency list for source file regionCoupled/patches/regionCoupledPolyPatch/regionCoupledPolyPatch.C +Making dependency list for source file regionCoupled/patches/regionCoupledPolyPatch/regionCoupledWallPolyPatch.C +Making dependency list for source file regionCoupled/patches/regionCoupledLduInterface/regionCoupledLduInterface.C +Making dependency list for source file regionCoupled/patches/regionCoupledPointPatch/regionCoupledPointPatch.C +Making dependency list for source file regionCoupled/patches/regionCoupledPointPatch/regionCoupledWallPointPatch.C +Making dependency list for source file regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.C +Making dependency list for source file regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledGAMGInterface.C +Making dependency list for source file regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledWallGAMGInterface.C +Making dependency list for source file regionCoupled/GAMG/interfaceFields/regionCoupledGAMGInterfaceField/regionCoupledGAMGInterfaceField.C +Making dependency list for source file regionCoupled/GAMG/interfaceFields/regionCoupledGAMGInterfaceField/regionCoupledWallGAMGInterfaceField.C +Making dependency list for source file tetOverlapVolume/tetOverlapVolume.C +SOURCE=cellClassification/cellInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellInfo.o +SOURCE=cellDist/cellDistFuncs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellDistFuncs.o +SOURCE=cellQuality/cellQuality.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellQuality.o +SOURCE=cellClassification/cellClassification.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellClassification.o +SOURCE=cellDist/patchWave/patchWave.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchWave.o +SOURCE=cellDist/wallPoint/wallPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallPoint.o +SOURCE=cellFeatures/cellFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellFeatures.o +SOURCE=coordinateSystems/coordinateSystem.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coordinateSystem.o +SOURCE=coordinateSystems/coordinateSystemNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coordinateSystemNew.o +SOURCE=coordinateSystems/coordinateSystems.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coordinateSystems.o +SOURCE=coordinateSystems/cylindricalCS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cylindricalCS.o +SOURCE=coordinateSystems/cartesianCS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cartesianCS.o +SOURCE=coordinateSystems/coordinateRotation/axesRotation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/axesRotation.o +SOURCE=coordinateSystems/coordinateRotation/coordinateRotation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coordinateRotation.o +SOURCE=coordinateSystems/coordinateRotation/coordinateRotationNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coordinateRotationNew.o +SOURCE=coordinateSystems/coordinateRotation/EulerCoordinateRotation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/EulerCoordinateRotation.o +SOURCE=coordinateSystems/coordinateRotation/STARCDCoordinateRotation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDCoordinateRotation.o +SOURCE=coordinateSystems/coordinateRotation/localAxesRotation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localAxesRotation.o +SOURCE=edgeFaceCirculator/edgeFaceCirculator.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeFaceCirculator.o +SOURCE=polyMeshZipUpCells/polyMeshZipUpCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshZipUpCells.o +SOURCE=primitiveMeshGeometry/primitiveMeshGeometry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primitiveMeshGeometry.o +SOURCE=meshSearch/meshSearch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshSearch.o +SOURCE=meshSearch/meshSearchFACECENTRETETSMeshObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshSearchFACECENTRETETSMeshObject.o +SOURCE=meshSearch/meshSearchMeshObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshSearchMeshObject.o +SOURCE=meshTools/meshTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshTools.o +SOURCE=algorithms/PointEdgeWave/PointEdgeWaveName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PointEdgeWaveName.o +SOURCE=algorithms/PointEdgeWave/pointEdgePoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointEdgePoint.o +SOURCE=algorithms/PatchEdgeFaceWave/PatchEdgeFaceWaveName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PatchEdgeFaceWaveName.o +SOURCE=algorithms/PatchEdgeFaceWave/patchEdgeFaceInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchEdgeFaceInfo.o +SOURCE=algorithms/PatchEdgeFaceWave/patchPatchDist.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchPatchDist.o +SOURCE=algorithms/PatchEdgeFaceWave/patchEdgeFaceRegion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchEdgeFaceRegion.o +SOURCE=algorithms/PatchEdgeFaceWave/patchEdgeFaceRegions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchEdgeFaceRegions.o +SOURCE=algorithms/MeshWave/MeshWaveName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MeshWaveName.o +SOURCE=algorithms/MeshWave/FaceCellWaveName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/FaceCellWaveName.o +SOURCE=regionSplit/regionSplit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionSplit.o +SOURCE=regionSplit/localPointRegion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localPointRegion.o +SOURCE=indexedOctree/treeDataEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataEdge.o +SOURCE=indexedOctree/treeDataFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataFace.o +SOURCE=indexedOctree/treeDataPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataPoint.o +SOURCE=indexedOctree/treeDataPrimitivePatchName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataPrimitivePatchName.o +SOURCE=indexedOctree/treeDataTriSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/treeDataTriSurface.o +SOURCE=searchableSurface/searchableBox.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableBox.o +SOURCE=searchableSurface/searchableCylinder.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableCylinder.o +SOURCE=searchableSurface/searchablePlane.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchablePlane.o +SOURCE=searchableSurface/searchablePlate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchablePlate.o +SOURCE=searchableSurface/searchableSphere.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSphere.o +SOURCE=searchableSurface/searchableSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurface.o +SOURCE=searchableSurface/searchableSurfaceCollection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceCollection.o +SOURCE=searchableSurface/searchableSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaces.o +SOURCE=searchableSurface/searchableSurfacesQueries.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfacesQueries.o +SOURCE=searchableSurface/searchableSurfaceWithGaps.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceWithGaps.o +SOURCE=searchableSurface/triSurfaceMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceMesh.o +SOURCE=searchableSurface/closedTriSurfaceMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/closedTriSurfaceMesh.o +SOURCE=sets/topoSets/cellSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSet.o +SOURCE=sets/topoSets/topoSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoSet.o +SOURCE=sets/topoSets/faceSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceSet.o +SOURCE=sets/topoSets/pointSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointSet.o +SOURCE=sets/topoSets/cellZoneSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellZoneSet.o +SOURCE=sets/topoSets/faceZoneSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZoneSet.o +SOURCE=sets/topoSets/pointZoneSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointZoneSet.o +SOURCE=sets/topoSetSource/topoSetSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoSetSource.o +SOURCE=sets/cellSources/faceToCell/faceToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceToCell.o +SOURCE=sets/cellSources/fieldToCell/fieldToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldToCell.o +SOURCE=sets/cellSources/shapeToCell/shapeToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shapeToCell.o +SOURCE=sets/cellSources/pointToCell/pointToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointToCell.o +SOURCE=sets/cellSources/boxToCell/boxToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boxToCell.o +SOURCE=sets/cellSources/regionToCell/regionToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionToCell.o +SOURCE=sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotatedBoxToCell.o +SOURCE=sets/cellSources/labelToCell/labelToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelToCell.o +SOURCE=sets/cellSources/surfaceToCell/surfaceToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceToCell.o +SOURCE=sets/cellSources/cellToCell/cellToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellToCell.o +SOURCE=sets/cellSources/nearestToCell/nearestToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearestToCell.o +SOURCE=sets/cellSources/nbrToCell/nbrToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nbrToCell.o +SOURCE=sets/cellSources/zoneToCell/zoneToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zoneToCell.o +SOURCE=sets/cellSources/sphereToCell/sphereToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphereToCell.o +SOURCE=sets/cellSources/cylinderToCell/cylinderToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cylinderToCell.o +SOURCE=sets/cellSources/faceZoneToCell/faceZoneToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZoneToCell.o +SOURCE=sets/cellSources/cylinderAnnulusToCell/cylinderAnnulusToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cylinderAnnulusToCell.o +SOURCE=sets/cellSources/targetVolumeToCell/targetVolumeToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/targetVolumeToCell.o +SOURCE=sets/faceSources/faceToFace/faceToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceToFace.o +SOURCE=sets/faceSources/labelToFace/labelToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelToFace.o +SOURCE=sets/faceSources/cellToFace/cellToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellToFace.o +SOURCE=sets/faceSources/normalToFace/normalToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/normalToFace.o +SOURCE=sets/faceSources/pointToFace/pointToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointToFace.o +SOURCE=sets/faceSources/patchToFace/patchToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchToFace.o +SOURCE=sets/faceSources/boundaryToFace/boundaryToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryToFace.o +SOURCE=sets/faceSources/zoneToFace/zoneToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zoneToFace.o +SOURCE=sets/faceSources/boxToFace/boxToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boxToFace.o +SOURCE=sets/faceSources/regionToFace/regionToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionToFace.o +SOURCE=sets/pointSources/labelToPoint/labelToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/labelToPoint.o +SOURCE=sets/pointSources/pointToPoint/pointToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointToPoint.o +SOURCE=sets/pointSources/cellToPoint/cellToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellToPoint.o +SOURCE=sets/pointSources/faceToPoint/faceToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceToPoint.o +SOURCE=sets/pointSources/boxToPoint/boxToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boxToPoint.o +SOURCE=sets/pointSources/surfaceToPoint/surfaceToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceToPoint.o +SOURCE=sets/pointSources/zoneToPoint/zoneToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zoneToPoint.o +SOURCE=sets/pointSources/nearestToPoint/nearestToPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearestToPoint.o +SOURCE=sets/faceZoneSources/faceZoneToFaceZone/faceZoneToFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZoneToFaceZone.o +SOURCE=sets/faceZoneSources/setsToFaceZone/setsToFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setsToFaceZone.o +SOURCE=sets/faceZoneSources/setToFaceZone/setToFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setToFaceZone.o +SOURCE=sets/faceZoneSources/setAndNormalToFaceZone/setAndNormalToFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setAndNormalToFaceZone.o +SOURCE=sets/faceZoneSources/searchableSurfaceToFaceZone/searchableSurfaceToFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceToFaceZone.o +SOURCE=sets/cellZoneSources/setToCellZone/setToCellZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setToCellZone.o +SOURCE=sets/pointZoneSources/setToPointZone/setToPointZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setToPointZone.o +SOURCE=momentOfInertia/momentOfInertia.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/momentOfInertia.o +SOURCE=surfaceSets/surfaceSets.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSets.o +SOURCE=triSurface/orientedSurface/orientedSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/orientedSurface.o +SOURCE=triSurface/surfaceLocation/surfaceLocation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceLocation.o +SOURCE=triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceIntersection.o +SOURCE=triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceIntersectionFuncs.o +SOURCE=triSurface/booleanOps/surfaceIntersection/edgeIntersections.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeIntersections.o +SOURCE=triSurface/booleanOps/booleanSurface/booleanSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/booleanSurface.o +SOURCE=triSurface/booleanOps/intersectedSurface/intersectedSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/intersectedSurface.o +SOURCE=triSurface/booleanOps/intersectedSurface/edgeSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeSurface.o +SOURCE=triSurface/triSurfaceSearch/triSurfaceSearch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceSearch.o +SOURCE=triSurface/triSurfaceSearch/triSurfaceRegionSearch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceRegionSearch.o +SOURCE=triSurface/triangleFuncs/triangleFuncs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triangleFuncs.o +SOURCE=triSurface/surfaceFeatures/surfaceFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFeatures.o +SOURCE=triSurface/triSurfaceTools/triSurfaceTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceTools.o +SOURCE=triSurface/triSurfaceTools/geompack/geompack.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/geompack.o +SOURCE=triSurface/triSurfaceTools/pointToPointPlanarInterpolation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointToPointPlanarInterpolation.o +SOURCE=twoDPointCorrector/twoDPointCorrector.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoDPointCorrector.o +SOURCE=AMIInterpolation/AMIInterpolation/AMIInterpolationName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/AMIInterpolationName.o +SOURCE=AMIInterpolation/AMIInterpolation/AMIPatchToPatchInterpolation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/AMIPatchToPatchInterpolation.o +SOURCE=AMIInterpolation/faceAreaIntersect/faceAreaIntersect.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceAreaIntersect.o +SOURCE=AMIInterpolation/GAMG/interfaces/cyclicAMIGAMGInterface/cyclicAMIGAMGInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIGAMGInterface.o +SOURCE=AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIGAMGInterfaceField.o +SOURCE=AMIInterpolation/GAMG/interfaces/cyclicACMIGAMGInterface/cyclicACMIGAMGInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIGAMGInterface.o +SOURCE=AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIGAMGInterfaceField.o +SOURCE=AMIInterpolation/patches/cyclicAMI/cyclicAMILduInterfaceField/cyclicAMILduInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMILduInterface.o +SOURCE=AMIInterpolation/patches/cyclicAMI/cyclicAMILduInterfaceField/cyclicAMILduInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMILduInterfaceField.o +SOURCE=AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIPolyPatch.o +SOURCE=AMIInterpolation/patches/cyclicAMI/cyclicAMIPointPatch/cyclicAMIPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIPointPatch.o +SOURCE=AMIInterpolation/patches/cyclicAMI/cyclicAMIPointPatchField/cyclicAMIPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIPointPatchFields.o +SOURCE=AMIInterpolation/patches/cyclicACMI/cyclicACMILduInterfaceField/cyclicACMILduInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMILduInterface.o +SOURCE=AMIInterpolation/patches/cyclicACMI/cyclicACMILduInterfaceField/cyclicACMILduInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMILduInterfaceField.o +SOURCE=AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIPolyPatch.o +SOURCE=AMIInterpolation/patches/cyclicACMI/cyclicACMIPointPatch/cyclicACMIPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIPointPatch.o +SOURCE=AMIInterpolation/patches/cyclicACMI/cyclicACMIPointPatchField/cyclicACMIPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIPointPatchFields.o +SOURCE=mappedPatches/mappedPolyPatch/mappedPatchBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedPatchBase.o +SOURCE=mappedPatches/mappedPolyPatch/mappedPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedPolyPatch.o +SOURCE=mappedPatches/mappedPolyPatch/mappedWallPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedWallPolyPatch.o +SOURCE=mappedPatches/mappedPolyPatch/mappedVariableThicknessWallPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedVariableThicknessWallPolyPatch.o +SOURCE=mappedPatches/mappedPointPatch/mappedPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedPointPatch.o +SOURCE=mappedPatches/mappedPointPatch/mappedWallPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedWallPointPatch.o +SOURCE=meshStructure/meshStructure.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshStructure.o +SOURCE=meshStructure/topoDistanceData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoDistanceData.o +SOURCE=meshStructure/pointTopoDistanceData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointTopoDistanceData.o +SOURCE=regionCoupled/patches/regionCoupledPolyPatch/regionCoupledBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledBase.o +SOURCE=regionCoupled/patches/regionCoupledPolyPatch/regionCoupledPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledPolyPatch.o +SOURCE=regionCoupled/patches/regionCoupledPolyPatch/regionCoupledWallPolyPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledWallPolyPatch.o +SOURCE=regionCoupled/patches/regionCoupledLduInterface/regionCoupledLduInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledLduInterface.o +SOURCE=regionCoupled/patches/regionCoupledPointPatch/regionCoupledPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledPointPatch.o +SOURCE=regionCoupled/patches/regionCoupledPointPatch/regionCoupledWallPointPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledWallPointPatch.o +SOURCE=regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledBaseGAMGInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledBaseGAMGInterface.o +SOURCE=regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledGAMGInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledGAMGInterface.o +SOURCE=regionCoupled/GAMG/interfaces/regionCoupledGAMGInterface/regionCoupledWallGAMGInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledWallGAMGInterface.o +SOURCE=regionCoupled/GAMG/interfaceFields/regionCoupledGAMGInterfaceField/regionCoupledGAMGInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledGAMGInterfaceField.o +SOURCE=regionCoupled/GAMG/interfaceFields/regionCoupledGAMGInterfaceField/regionCoupledWallGAMGInterfaceField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledWallGAMGInterfaceField.o +SOURCE=tetOverlapVolume/tetOverlapVolume.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetOverlapVolume.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmeshTools.dylib' is up to date. +++ wmake libso edgeMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file edgeMesh.C +Making dependency list for source file edgeMeshIO.C +Making dependency list for source file edgeMeshNew.C +Making dependency list for source file edgeMeshFormats/edgeMeshFormatsCore.C +Making dependency list for source file edgeMeshFormats/edgeMesh/edgeMeshFormat.C +Making dependency list for source file edgeMeshFormats/edgeMesh/edgeMeshFormatRunTime.C +Making dependency list for source file edgeMeshFormats/extendedFeatureEdgeMesh/extendedFeatureEdgeMeshFormat.C +Making dependency list for source file edgeMeshFormats/extendedFeatureEdgeMesh/extendedFeatureEdgeMeshFormatRunTime.C +Making dependency list for source file edgeMeshFormats/nas/NASedgeFormat.C +Making dependency list for source file edgeMeshFormats/nas/NASedgeFormatRunTime.C +Making dependency list for source file edgeMeshFormats/obj/OBJedgeFormat.C +Making dependency list for source file edgeMeshFormats/obj/OBJedgeFormatRunTime.C +Making dependency list for source file edgeMeshFormats/starcd/STARCDedgeFormat.C +Making dependency list for source file edgeMeshFormats/vtk/VTKedgeFormat.C +Making dependency list for source file edgeMeshFormats/starcd/STARCDedgeFormatRunTime.C +Making dependency list for source file edgeMeshFormats/vtk/VTKedgeFormatRunTime.C +Making dependency list for source file featureEdgeMesh/featureEdgeMesh.C +Making dependency list for source file extendedEdgeMesh/extendedEdgeMesh.C +Making dependency list for source file extendedEdgeMesh/extendedEdgeMeshNew.C +Making dependency list for source file extendedEdgeMesh/extendedEdgeMeshFormats/extendedEdgeMeshFormat/extendedEdgeMeshFormat.C +Making dependency list for source file extendedEdgeMesh/extendedEdgeMeshFormats/extendedEdgeMeshFormat/extendedEdgeMeshFormatRunTime.C +Making dependency list for source file extendedEdgeMesh/extendedFeatureEdgeMesh/extendedFeatureEdgeMesh.C +SOURCE=edgeMeshIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMeshIO.o +SOURCE=edgeMeshFormats/edgeMeshFormatsCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMeshFormatsCore.o +SOURCE=edgeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMesh.o +SOURCE=edgeMeshNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMeshNew.o +SOURCE=edgeMeshFormats/edgeMesh/edgeMeshFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMeshFormat.o +SOURCE=edgeMeshFormats/edgeMesh/edgeMeshFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeMeshFormatRunTime.o +SOURCE=edgeMeshFormats/extendedFeatureEdgeMesh/extendedFeatureEdgeMeshFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedFeatureEdgeMeshFormat.o +SOURCE=edgeMeshFormats/extendedFeatureEdgeMesh/extendedFeatureEdgeMeshFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedFeatureEdgeMeshFormatRunTime.o +SOURCE=edgeMeshFormats/nas/NASedgeFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NASedgeFormat.o +SOURCE=edgeMeshFormats/nas/NASedgeFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NASedgeFormatRunTime.o +SOURCE=edgeMeshFormats/obj/OBJedgeFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OBJedgeFormat.o +SOURCE=edgeMeshFormats/obj/OBJedgeFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OBJedgeFormatRunTime.o +SOURCE=edgeMeshFormats/starcd/STARCDedgeFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDedgeFormat.o +SOURCE=edgeMeshFormats/starcd/STARCDedgeFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDedgeFormatRunTime.o +SOURCE=edgeMeshFormats/vtk/VTKedgeFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/VTKedgeFormat.o +SOURCE=edgeMeshFormats/vtk/VTKedgeFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/VTKedgeFormatRunTime.o +SOURCE=featureEdgeMesh/featureEdgeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/featureEdgeMesh.o +SOURCE=extendedEdgeMesh/extendedEdgeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedEdgeMesh.o +SOURCE=extendedEdgeMesh/extendedEdgeMeshNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedEdgeMeshNew.o +SOURCE=extendedEdgeMesh/extendedEdgeMeshFormats/extendedEdgeMeshFormat/extendedEdgeMeshFormat.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedEdgeMeshFormat.o +SOURCE=extendedEdgeMesh/extendedEdgeMeshFormats/extendedEdgeMeshFormat/extendedEdgeMeshFormatRunTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedEdgeMeshFormatRunTime.o +SOURCE=extendedEdgeMesh/extendedFeatureEdgeMesh/extendedFeatureEdgeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedFeatureEdgeMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libedgeMesh.dylib' is up to date. +++ parallel/decompose/AllwmakeLnInclude ++ wmakeLnInclude decompositionMethods +wmakeLnInclude: linking include files to decompositionMethods/lnInclude ++ wmakeLnInclude metisDecomp +wmakeLnInclude: linking include files to metisDecomp/lnInclude ++ wmakeLnInclude scotchDecomp +wmakeLnInclude: linking include files to scotchDecomp/lnInclude ++ wmakeLnInclude ptscotchDecomp +wmakeLnInclude: linking include files to ptscotchDecomp/lnInclude +++ dummyThirdParty/Allwmake ++ wmake libso scotchDecomp +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dummyScotchDecomp.C +SOURCE=dummyScotchDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/scotchDecomp/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dummyScotchDecomp.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy/libscotchDecomp.dylib' is up to date. ++ wmake libso ptscotchDecomp +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dummyPtscotchDecomp.C +SOURCE=dummyPtscotchDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/ptscotchDecomp/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dummyPtscotchDecomp.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy/libptscotchDecomp.dylib' is up to date. ++ wmake libso metisDecomp +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dummyMetisDecomp.C +SOURCE=dummyMetisDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/metisDecomp/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dummyMetisDecomp.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy/libmetisDecomp.dylib' is up to date. ++ wmake libso MGridGen +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dummyMGridGen.C +SOURCE=dummyMGridGen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dummyMGridGen.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy/libMGridGen.dylib' is up to date. +++ wmake libso finiteVolume +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fvMesh/fvMesh.C +Making dependency list for source file fvMesh/fvMeshGeometry.C +Making dependency list for source file fvMesh/singleCellFvMesh/singleCellFvMesh.C +Making dependency list for source file fvMesh/fvMeshSubset/fvMeshSubset.C +Making dependency list for source file fvMesh/fvBoundaryMesh/fvBoundaryMesh.C +Making dependency list for source file fvMesh/fvPatches/fvPatch/fvPatch.C +Making dependency list for source file fvMesh/fvPatches/fvPatch/fvPatchNew.C +Making dependency list for source file fvMesh/fvPatches/basic/coupled/coupledFvPatch.C +Making dependency list for source file fvMesh/fvPatches/basic/generic/genericFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/cyclic/cyclicFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/cyclicAMI/cyclicAMIFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/cyclicACMI/cyclicACMIFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/cyclicSlip/cyclicSlipFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/empty/emptyFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/processor/processorFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/processorCyclic/processorCyclicFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/symmetryPlane/symmetryPlaneFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/symmetry/symmetryFvPatch.C +Making dependency list for source file fvMesh/fvPatches/constraint/wedge/wedgeFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/wall/wallFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/mapped/mappedFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/mapped/mappedWallFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/regionCoupled/regionCoupledBaseFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/regionCoupled/regionCoupledFvPatch.C +Making dependency list for source file fvMesh/fvPatches/derived/regionCoupled/regionCoupledWallFvPatch.C +Making dependency list for source file fvMesh/wallDist/patchDist.C +Making dependency list for source file fvMesh/wallDist/wallPointYPlus/wallPointYPlus.C +Making dependency list for source file fvMesh/wallDist/nearWallDistNoSearch.C +Making dependency list for source file fvMesh/wallDist/nearWallDist.C +Making dependency list for source file fvMesh/wallDist/wallDist.C +Making dependency list for source file fvMesh/wallDist/reflectionVectors.C +Making dependency list for source file fvMesh/wallDist/wallDistReflection.C +Making dependency list for source file fvMesh/fvMeshMapper/fvPatchMapper.C +Making dependency list for source file fvMesh/fvMeshMapper/fvSurfaceMapper.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/extendedCellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/globalIndexStencils/CFCCellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/globalIndexStencils/cellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/globalIndexStencils/CPCCellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/MeshObjects/centredCECCellToCellStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/globalIndexStencils/CECCellToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/MeshObjects/centredCFCCellToCellStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToCell/MeshObjects/centredCPCCellToCellStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/globalIndexStencils/cellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/globalIndexStencils/CFCCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/globalIndexStencils/CECCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/globalIndexStencils/CPCCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/globalIndexStencils/FECCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/extendedCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/centredCECCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/centredCFCCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/centredCPCCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/centredFECCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCECCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCFCCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCPCCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/upwindFECCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/cellToFace/MeshObjects/pureUpwindCFCCellToFaceStencilObject.C +Making dependency list for source file fvMesh/extendedStencil/faceToCell/globalIndexStencils/faceToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/faceToCell/globalIndexStencils/CFCFaceToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/faceToCell/extendedFaceToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.C +Making dependency list for source file fvMesh/extendedStencil/faceToCell/MeshObjects/centredCFCFaceToCellStencilObject.C +Making dependency list for source file fields/fvPatchFields/fvPatchField/fvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/calculated/calculatedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/basic/coupled/coupledFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/mixed/mixedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/sliced/slicedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/transform/transformFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/basic/transform/transformFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/cyclic/cyclicFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/empty/emptyFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/jumpCyclic/jumpCyclicFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/processor/processorFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/processor/processorFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/constraint/symmetry/symmetryFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/wedge/wedgeFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/constraint/wedge/wedgeFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/advective/advectiveFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fan/fanFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/freestream/freestreamFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.C +Making dependency list for source file fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/oscillatingFixedValue/oscillatingFixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/outletInlet/outletInletFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/slip/slipFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/timeVaryingMappedFixedValue/AverageIOFields.C +Making dependency list for source file fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.C +Making dependency list for source file fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchFields.C +Making dependency list for source file fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.C +Making dependency list for source file fields/fvPatchFields/derived/interstitialInletVelocity/interstitialInletVelocityFvPatchVectorField.C +Making dependency list for source file fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.C +Making dependency list for source file fields/fvsPatchFields/fvsPatchField/fvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/basic/calculated/calculatedFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/basic/coupled/coupledFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/basic/fixedValue/fixedValueFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/basic/sliced/slicedFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/cyclic/cyclicFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/cyclicAMI/cyclicAMIFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/cyclicACMI/cyclicACMIFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/cyclicSlip/cyclicSlipFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/empty/emptyFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/processor/processorFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/processorCyclic/processorCyclicFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/symmetryPlane/symmetryPlaneFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/symmetry/symmetryFvsPatchFields.C +Making dependency list for source file fields/fvsPatchFields/constraint/wedge/wedgeFvsPatchFields.C +Making dependency list for source file fields/volFields/volFields.C +Making dependency list for source file fields/surfaceFields/surfaceFields.C +Making dependency list for source file fvMatrices/fvMatrices.C +Making dependency list for source file fvMatrices/fvScalarMatrix/fvScalarMatrix.C +Making dependency list for source file fvMatrices/solvers/MULES/MULES.C +Making dependency list for source file fvMatrices/solvers/MULES/CMULES.C +Making dependency list for source file fvMatrices/solvers/MULES/IMULES.C +Making dependency list for source file fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C +Making dependency list for source file interpolation/interpolation/interpolation/interpolations.C +Making dependency list for source file interpolation/interpolation/interpolationCell/makeInterpolationCell.C +Making dependency list for source file interpolation/interpolation/interpolationCellPatchConstrained/makeInterpolationCellPatchConstrained.C +Making dependency list for source file interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C +Making dependency list for source file interpolation/interpolation/interpolationCellPoint/makeInterpolationCellPoint.C +Making dependency list for source file interpolation/interpolation/interpolationCellPointFace/makeInterpolationCellPointFace.C +Making dependency list for source file interpolation/interpolation/interpolationCellPointWallModified/cellPointWeightWallModified/cellPointWeightWallModified.C +Making dependency list for source file interpolation/interpolation/interpolationCellPointWallModified/makeInterpolationCellPointWallModified.C +Making dependency list for source file interpolation/interpolation/interpolationPointMVC/pointMVCWeight.C +Making dependency list for source file interpolation/interpolation/interpolationPointMVC/makeInterpolationPointMVC.C +Making dependency list for source file interpolation/volPointInterpolation/volPointInterpolation.C +Making dependency list for source file interpolation/volPointInterpolation/pointConstraints.C +Making dependency list for source file interpolation/surfaceInterpolation/surfaceInterpolation/surfaceInterpolation.C +Making dependency list for source file interpolation/surfaceInterpolation/surfaceInterpolationScheme/surfaceInterpolationSchemes.C +Making dependency list for source file interpolation/surfaceInterpolation/blendedSchemeBase/blendedSchemeBaseName.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/linear/linear.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/pointLinear/pointLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/midPoint/midPoint.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/downwind/downwind.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/weighted/weighted.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/cubic/cubic.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/skewCorrected/skewCorrectionVectors.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/skewCorrected/skewCorrected.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/outletStabilised/outletStabilised.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/reverseLinear/reverseLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/clippedLinear/clippedLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/harmonic/harmonic.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/fixedBlended/fixedBlended.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/localBlended/localBlended.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/limiterBlended/limiterBlended.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/CoBlended/CoBlended.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/localMax/localMax.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/localMin/localMin.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearFit/linearFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/biLinearFit/biLinearFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticLinearFit/quadraticLinearFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticFit/quadraticFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticLinearUpwindFit/quadraticLinearUpwindFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/quadraticUpwindFit/quadraticUpwindFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/cubicUpwindFit/cubicUpwindFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearPureUpwindFit/linearPureUpwindFit.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearUpwind/linearUpwind.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/linearUpwind/linearUpwindV.C +Making dependency list for source file interpolation/surfaceInterpolation/schemes/LUST/LUST.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/limitedSurfaceInterpolationScheme/limitedSurfaceInterpolationSchemes.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/blended/blended.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/Gamma/Gamma.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/SFCD/SFCD.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/Minmod/Minmod.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/vanLeer/vanLeer.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/OSPRE/OSPRE.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/vanAlbada/vanAlbada.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/limitedLinear/limitedLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/limitedCubic/limitedCubic.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/SuperBee/SuperBee.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/QUICK/QUICK.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/UMIST/UMIST.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/Phi/Phi.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/filteredLinear/filteredLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/filteredLinear2/filteredLinear2.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/filteredLinear3/filteredLinear3.C +Making dependency list for source file interpolation/surfaceInterpolation/limitedSchemes/limitWith/limitWith.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/multivariateSurfaceInterpolationScheme/multivariateSurfaceInterpolationSchemes.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/multivariateSelectionScheme/multivariateSelectionSchemes.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/multivariateIndependentScheme/multivariateIndependentSchemes.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/upwind/multivariateUpwind.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/Gamma/multivariateGamma.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/vanLeer/multivariateVanLeer.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/Minmod/multivariateMinmod.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/SuperBee/multivariateSuperBee.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/MUSCL/multivariateMUSCL.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/limitedLinear/multivariateLimitedLinear.C +Making dependency list for source file interpolation/surfaceInterpolation/multivariateSchemes/limitedCubic/multivariateLimitedCubic.C +Making dependency list for source file finiteVolume/fv/fv.C +Making dependency list for source file finiteVolume/fvSchemes/fvSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/ddtScheme/ddtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/steadyStateDdtScheme/steadyStateDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/EulerDdtScheme/EulerDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/CoEulerDdtScheme/CoEulerDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/SLTSDdtScheme/SLTSDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/localEulerDdtScheme/localEulerDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/backwardDdtScheme/backwardDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/CrankNicolsonDdtScheme/CrankNicolsonDdtSchemes.C +Making dependency list for source file finiteVolume/ddtSchemes/boundedDdtScheme/boundedDdtSchemes.C +Making dependency list for source file finiteVolume/d2dt2Schemes/d2dt2Scheme/d2dt2Schemes.C +Making dependency list for source file finiteVolume/d2dt2Schemes/steadyStateD2dt2Scheme/steadyStateD2dt2Schemes.C +Making dependency list for source file finiteVolume/d2dt2Schemes/EulerD2dt2Scheme/EulerD2dt2Schemes.C +Making dependency list for source file finiteVolume/divSchemes/divScheme/divSchemes.C +Making dependency list for source file finiteVolume/divSchemes/gaussDivScheme/gaussDivSchemes.C +Making dependency list for source file finiteVolume/gradSchemes/gradScheme/gradSchemes.C +Making dependency list for source file finiteVolume/gradSchemes/gaussGrad/gaussGrads.C +Making dependency list for source file finiteVolume/gradSchemes/leastSquaresGrad/leastSquaresVectors.C +Making dependency list for source file finiteVolume/gradSchemes/leastSquaresGrad/leastSquaresGrads.C +Making dependency list for source file finiteVolume/gradSchemes/LeastSquaresGrad/LeastSquaresGrads.C +Making dependency list for source file finiteVolume/gradSchemes/fourthGrad/fourthGrads.C +Making dependency list for source file finiteVolume/gradSchemes/limitedGradSchemes/faceLimitedGrad/faceLimitedGrads.C +Making dependency list for source file finiteVolume/gradSchemes/limitedGradSchemes/cellLimitedGrad/cellLimitedGrads.C +Making dependency list for source file finiteVolume/gradSchemes/limitedGradSchemes/faceMDLimitedGrad/faceMDLimitedGrads.C +Making dependency list for source file finiteVolume/gradSchemes/limitedGradSchemes/cellMDLimitedGrad/cellMDLimitedGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/snGradScheme/snGradSchemes.C +Making dependency list for source file finiteVolume/snGradSchemes/correctedSnGrad/correctedSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/faceCorrectedSnGrad/faceCorrectedSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/limitedSnGrad/limitedSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/uncorrectedSnGrad/uncorrectedSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/orthogonalSnGrad/orthogonalSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/quadraticFitSnGrad/quadraticFitSnGrads.C +Making dependency list for source file finiteVolume/snGradSchemes/linearFitSnGrad/linearFitSnGrads.C +Making dependency list for source file finiteVolume/convectionSchemes/convectionScheme/convectionSchemes.C +Making dependency list for source file finiteVolume/convectionSchemes/gaussConvectionScheme/gaussConvectionSchemes.C +Making dependency list for source file finiteVolume/convectionSchemes/multivariateGaussConvectionScheme/multivariateGaussConvectionSchemes.C +Making dependency list for source file finiteVolume/convectionSchemes/boundedConvectionScheme/boundedConvectionSchemes.C +Making dependency list for source file finiteVolume/laplacianSchemes/laplacianScheme/laplacianSchemes.C +Making dependency list for source file finiteVolume/laplacianSchemes/gaussLaplacianScheme/gaussLaplacianSchemes.C +Making dependency list for source file finiteVolume/fvc/fvcMeshPhi.C +Making dependency list for source file finiteVolume/fvc/fvcSmooth/fvcSmooth.C +Making dependency list for source file finiteVolume/fvc/fvcReconstructMag.C +Making dependency list for source file cfdTools/general/findRefCell/findRefCell.C +Making dependency list for source file cfdTools/general/adjustPhi/adjustPhi.C +Making dependency list for source file cfdTools/general/bound/bound.C +Making dependency list for source file cfdTools/general/solutionControl/solutionControl/solutionControl.C +Making dependency list for source file cfdTools/general/solutionControl/simpleControl/simpleControl.C +Making dependency list for source file cfdTools/general/solutionControl/pimpleControl/pimpleControl.C +Making dependency list for source file cfdTools/general/porosityModel/porosityModel/porosityModel.C +Making dependency list for source file cfdTools/general/porosityModel/porosityModel/porosityModelNew.C +Making dependency list for source file cfdTools/general/porosityModel/porosityModel/porosityModelList.C +Making dependency list for source file cfdTools/general/porosityModel/porosityModel/IOporosityModelList.C +Making dependency list for source file cfdTools/general/porosityModel/DarcyForchheimer/DarcyForchheimer.C +Making dependency list for source file cfdTools/general/porosityModel/fixedCoeff/fixedCoeff.C +Making dependency list for source file cfdTools/general/porosityModel/powerLaw/powerLaw.C +Making dependency list for source file cfdTools/general/MRF/MRFZone.C +Making dependency list for source file cfdTools/general/MRF/MRFZoneList.C +Making dependency list for source file cfdTools/general/MRF/IOMRFZoneList.C +Making dependency list for source file cfdTools/general/SRF/SRFModel/SRFModel/SRFModel.C +Making dependency list for source file cfdTools/general/SRF/SRFModel/SRFModel/SRFModelNew.C +Making dependency list for source file cfdTools/general/SRF/SRFModel/rpm/rpm.C +Making dependency list for source file cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.C +Making dependency list for source file cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.C +SOURCE=fvMesh/fvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMesh.o +SOURCE=fvMesh/fvMeshGeometry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMeshGeometry.o +SOURCE=fvMesh/singleCellFvMesh/singleCellFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/singleCellFvMesh.o +SOURCE=fvMesh/fvMeshSubset/fvMeshSubset.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMeshSubset.o +SOURCE=fvMesh/fvBoundaryMesh/fvBoundaryMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvBoundaryMesh.o +SOURCE=fvMesh/fvPatches/fvPatch/fvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvPatch.o +SOURCE=fvMesh/fvPatches/fvPatch/fvPatchNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvPatchNew.o +SOURCE=fvMesh/fvPatches/basic/coupled/coupledFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledFvPatch.o +SOURCE=fvMesh/fvPatches/basic/generic/genericFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/genericFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/cyclic/cyclicFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/cyclicAMI/cyclicAMIFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/cyclicACMI/cyclicACMIFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/cyclicSlip/cyclicSlipFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/empty/emptyFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/processor/processorFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/processorCyclic/processorCyclicFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/symmetryPlane/symmetryPlaneFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlaneFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/symmetry/symmetryFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryFvPatch.o +SOURCE=fvMesh/fvPatches/constraint/wedge/wedgeFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgeFvPatch.o +SOURCE=fvMesh/fvPatches/derived/wall/wallFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallFvPatch.o +SOURCE=fvMesh/fvPatches/derived/mapped/mappedFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFvPatch.o +SOURCE=fvMesh/fvPatches/derived/mapped/mappedWallFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedWallFvPatch.o +SOURCE=fvMesh/fvPatches/derived/regionCoupled/regionCoupledBaseFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledBaseFvPatch.o +SOURCE=fvMesh/fvPatches/derived/regionCoupled/regionCoupledFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledFvPatch.o +SOURCE=fvMesh/wallDist/patchDist.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchDist.o +SOURCE=fvMesh/fvPatches/derived/regionCoupled/regionCoupledWallFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionCoupledWallFvPatch.o +SOURCE=fvMesh/wallDist/wallPointYPlus/wallPointYPlus.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallPointYPlus.o +SOURCE=fvMesh/wallDist/nearWallDistNoSearch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearWallDistNoSearch.o +SOURCE=fvMesh/wallDist/nearWallDist.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearWallDist.o +SOURCE=fvMesh/wallDist/wallDist.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallDist.o +SOURCE=fvMesh/wallDist/reflectionVectors.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reflectionVectors.o +SOURCE=fvMesh/wallDist/wallDistReflection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallDistReflection.o +SOURCE=fvMesh/fvMeshMapper/fvPatchMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvPatchMapper.o +SOURCE=fvMesh/fvMeshMapper/fvSurfaceMapper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvSurfaceMapper.o +SOURCE=fvMesh/extendedStencil/cellToCell/extendedCellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedCellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/extendedCentredCellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedCentredCellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/globalIndexStencils/cellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/globalIndexStencils/CFCCellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CFCCellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/globalIndexStencils/CPCCellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CPCCellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/globalIndexStencils/CECCellToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CECCellToCellStencil.o +SOURCE=fvMesh/extendedStencil/cellToCell/MeshObjects/centredCECCellToCellStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCECCellToCellStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToCell/MeshObjects/centredCFCCellToCellStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCFCCellToCellStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToCell/MeshObjects/centredCPCCellToCellStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCPCCellToCellStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/globalIndexStencils/cellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/globalIndexStencils/CFCCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CFCCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/globalIndexStencils/CECCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CECCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/globalIndexStencils/CPCCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CPCCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/globalIndexStencils/FECCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/FECCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/extendedCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/extendedCentredCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedCentredCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/extendedUpwindCellToFaceStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedUpwindCellToFaceStencil.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/centredCECCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCECCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/centredCFCCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCFCCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/centredCPCCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCPCCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/centredFECCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredFECCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCECCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/upwindCECCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCFCCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/upwindCFCCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/upwindCPCCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/upwindCPCCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/upwindFECCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/upwindFECCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/cellToFace/MeshObjects/pureUpwindCFCCellToFaceStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pureUpwindCFCCellToFaceStencilObject.o +SOURCE=fvMesh/extendedStencil/faceToCell/globalIndexStencils/faceToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceToCellStencil.o +SOURCE=fvMesh/extendedStencil/faceToCell/globalIndexStencils/CFCFaceToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CFCFaceToCellStencil.o +SOURCE=fvMesh/extendedStencil/faceToCell/extendedFaceToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedFaceToCellStencil.o +SOURCE=fvMesh/extendedStencil/faceToCell/extendedCentredFaceToCellStencil.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extendedCentredFaceToCellStencil.o +SOURCE=fvMesh/extendedStencil/faceToCell/MeshObjects/centredCFCFaceToCellStencilObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/centredCFCFaceToCellStencilObject.o +SOURCE=fields/fvPatchFields/fvPatchField/fvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvPatchFields.o +SOURCE=fields/fvPatchFields/basic/basicSymmetry/basicSymmetryFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicSymmetryFvPatchScalarField.o +SOURCE=fields/fvPatchFields/basic/calculated/calculatedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calculatedFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/coupled/coupledFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/directionMixedFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/fixedGradient/fixedGradientFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedGradientFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/fixedValue/fixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/mixed/mixedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixedFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/sliced/slicedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slicedFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/transform/transformFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transformFvPatchFields.o +SOURCE=fields/fvPatchFields/basic/transform/transformFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transformFvPatchScalarField.o +SOURCE=fields/fvPatchFields/basic/zeroGradient/zeroGradientFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zeroGradientFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/cyclic/cyclicFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/cyclicSlip/cyclicSlipFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/empty/emptyFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/jumpCyclic/jumpCyclicFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/jumpCyclicFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/jumpCyclicAMIFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/processor/processorFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/processor/processorFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorFvPatchScalarField.o +SOURCE=fields/fvPatchFields/constraint/processorCyclic/processorCyclicFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlaneFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/symmetryPlane/symmetryPlaneFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlaneFvPatchScalarField.o +SOURCE=fields/fvPatchFields/constraint/symmetry/symmetryFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/wedge/wedgeFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgeFvPatchFields.o +SOURCE=fields/fvPatchFields/constraint/wedge/wedgeFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgeFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/activeBaffleVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/activePressureForceBaffleVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/advective/advectiveFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/advectiveFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/codedFixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/codedMixed/codedMixedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/codedMixedFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/cylindricalInletVelocity/cylindricalInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cylindricalInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/externalCoupledMixed/externalCoupledMixedFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/externalCoupledMixedFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fan/fanFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fanFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fanPressure/fanPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fanPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/fixedFluxPressure/fixedFluxPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedFluxPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/fixedInternalValueFvPatchField/fixedInternalValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedInternalValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fixedJump/fixedJumpFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedJumpFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fixedJumpAMI/fixedJumpAMIFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedJumpAMIFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fixedMean/fixedMeanFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedMeanFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fixedNormalSlip/fixedNormalSlipFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedNormalSlipFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/fixedPressureCompressibleDensity/fixedPressureCompressibleDensityFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedPressureCompressibleDensityFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/flowRateInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/fluxCorrectedVelocity/fluxCorrectedVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fluxCorrectedVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/freestream/freestreamFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/freestreamFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/freestreamPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/inletOutlet/inletOutletFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inletOutletFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/inletOutletTotalTemperature/inletOutletTotalTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inletOutletTotalTemperatureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFieldFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/mappedFixedInternalValue/mappedFixedInternalValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFixedInternalValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/mappedFixedPushedInternalValue/mappedFixedPushedInternalValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFixedPushedInternalValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/mappedFixedValue/mappedFixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/mappedFlowRate/mappedFlowRateFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedFlowRateFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/mappedVelocityFluxFixedValue/mappedVelocityFluxFixedValueFvPatchField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedVelocityFluxFixedValueFvPatchField.o +SOURCE=fields/fvPatchFields/derived/movingWallVelocity/movingWallVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/movingWallVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/oscillatingFixedValue/oscillatingFixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oscillatingFixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/outletInlet/outletInletFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/outletInletFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/outletMappedUniformInlet/outletMappedUniformInletFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/outletMappedUniformInletFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/partialSlip/partialSlipFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/partialSlipFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/phaseHydrostaticPressure/phaseHydrostaticPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseHydrostaticPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/pressureDirectedInletOutletVelocity/pressureDirectedInletOutletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureDirectedInletOutletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureDirectedInletVelocity/pressureDirectedInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureDirectedInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureInletOutletParSlipVelocity/pressureInletOutletParSlipVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureInletOutletParSlipVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureInletOutletVelocity/pressureInletOutletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureInletOutletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureInletUniformVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureInletVelocity/pressureInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/pressureNormalInletOutletVelocity/pressureNormalInletOutletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureNormalInletOutletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/rotatingPressureInletOutletVelocity/rotatingPressureInletOutletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotatingPressureInletOutletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/rotatingTotalPressure/rotatingTotalPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotatingTotalPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/rotatingWallVelocity/rotatingWallVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotatingWallVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/slip/slipFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slipFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/supersonicFreestream/supersonicFreestreamFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/supersonicFreestreamFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/surfaceNormalFixedValue/surfaceNormalFixedValueFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceNormalFixedValueFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/swirlFlowRateInletVelocity/swirlFlowRateInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/swirlFlowRateInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/syringePressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/timeVaryingMappedFixedValue/AverageIOFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/AverageIOFields.o +SOURCE=fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeVaryingMappedFixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/totalPressure/totalPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/totalPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/totalTemperature/totalTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/totalTemperatureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/translatingWallVelocity/translatingWallVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/translatingWallVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/turbulentInlet/turbulentInletFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentInletFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentIntensityKineticEnergyInletFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/uniformDensityHydrostaticPressure/uniformDensityHydrostaticPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformDensityHydrostaticPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/uniformFixedGradient/uniformFixedGradientFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformFixedGradientFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/uniformFixedValue/uniformFixedValueFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformFixedValueFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/uniformInletOutlet/uniformInletOutletFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformInletOutletFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/uniformJump/uniformJumpFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformJumpFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/uniformJumpAMI/uniformJumpAMIFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformJumpAMIFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/uniformTotalPressure/uniformTotalPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformTotalPressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/variableHeightFlowRate/variableHeightFlowRateFvPatchField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/variableHeightFlowRateFvPatchField.o +SOURCE=fields/fvPatchFields/derived/variableHeightFlowRateInletVelocity/variableHeightFlowRateInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/variableHeightFlowRateInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/outletPhaseMeanVelocity/outletPhaseMeanVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/outletPhaseMeanVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/waveTransmissiveFvPatchFields.o +SOURCE=fields/fvPatchFields/derived/waveSurfacePressure/waveSurfacePressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/waveSurfacePressureFvPatchScalarField.o +SOURCE=fields/fvPatchFields/derived/interstitialInletVelocity/interstitialInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interstitialInletVelocityFvPatchVectorField.o +SOURCE=fields/fvPatchFields/derived/prghPressure/prghPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/prghPressureFvPatchScalarField.o +SOURCE=fields/fvsPatchFields/fvsPatchField/fvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvsPatchFields.o +SOURCE=fields/fvsPatchFields/basic/calculated/calculatedFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calculatedFvsPatchFields.o +SOURCE=fields/fvsPatchFields/basic/coupled/coupledFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledFvsPatchFields.o +SOURCE=fields/fvsPatchFields/basic/fixedValue/fixedValueFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedValueFvsPatchFields.o +SOURCE=fields/fvsPatchFields/basic/sliced/slicedFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slicedFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/cyclic/cyclicFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/cyclicAMI/cyclicAMIFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicAMIFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/cyclicACMI/cyclicACMIFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicACMIFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/cyclicSlip/cyclicSlipFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cyclicSlipFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/empty/emptyFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/emptyFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/nonuniformTransformCyclic/nonuniformTransformCyclicFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonuniformTransformCyclicFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/processor/processorFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/processorCyclic/processorCyclicFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorCyclicFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/symmetryPlane/symmetryPlaneFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryPlaneFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/symmetry/symmetryFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/symmetryFvsPatchFields.o +SOURCE=fields/fvsPatchFields/constraint/wedge/wedgeFvsPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedgeFvsPatchFields.o +SOURCE=fields/volFields/volFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/volFields.o +SOURCE=fields/surfaceFields/surfaceFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFields.o +SOURCE=fvMatrices/fvMatrices.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMatrices.o +SOURCE=fvMatrices/fvScalarMatrix/fvScalarMatrix.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvScalarMatrix.o +SOURCE=fvMatrices/solvers/MULES/MULES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MULES.o +SOURCE=fvMatrices/solvers/MULES/CMULES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CMULES.o +SOURCE=fvMatrices/solvers/MULES/IMULES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IMULES.o +SOURCE=fvMatrices/solvers/GAMGSymSolver/GAMGAgglomerations/faceAreaPairGAMGAgglomeration/faceAreaPairGAMGAgglomeration.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceAreaPairGAMGAgglomeration.o +SOURCE=interpolation/interpolation/interpolation/interpolations.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interpolations.o +SOURCE=interpolation/interpolation/interpolationCell/makeInterpolationCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationCell.o +SOURCE=interpolation/interpolation/interpolationCellPatchConstrained/makeInterpolationCellPatchConstrained.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationCellPatchConstrained.o +SOURCE=interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellPointWeight.o +SOURCE=interpolation/interpolation/interpolationCellPoint/makeInterpolationCellPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationCellPoint.o +SOURCE=interpolation/interpolation/interpolationCellPointFace/makeInterpolationCellPointFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationCellPointFace.o +SOURCE=interpolation/interpolation/interpolationCellPointWallModified/cellPointWeightWallModified/cellPointWeightWallModified.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellPointWeightWallModified.o +SOURCE=interpolation/interpolation/interpolationCellPointWallModified/makeInterpolationCellPointWallModified.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationCellPointWallModified.o +SOURCE=interpolation/interpolation/interpolationPointMVC/pointMVCWeight.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointMVCWeight.o +SOURCE=interpolation/interpolation/interpolationPointMVC/makeInterpolationPointMVC.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeInterpolationPointMVC.o +SOURCE=interpolation/volPointInterpolation/volPointInterpolation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/volPointInterpolation.o +SOURCE=interpolation/volPointInterpolation/pointConstraints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointConstraints.o +SOURCE=interpolation/surfaceInterpolation/surfaceInterpolation/surfaceInterpolation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceInterpolation.o +SOURCE=interpolation/surfaceInterpolation/surfaceInterpolationScheme/surfaceInterpolationSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceInterpolationSchemes.o +SOURCE=interpolation/surfaceInterpolation/blendedSchemeBase/blendedSchemeBaseName.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blendedSchemeBaseName.o +SOURCE=interpolation/surfaceInterpolation/schemes/linear/linear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linear.o +SOURCE=interpolation/surfaceInterpolation/schemes/pointLinear/pointLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointLinear.o +SOURCE=interpolation/surfaceInterpolation/schemes/midPoint/midPoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/midPoint.o +SOURCE=interpolation/surfaceInterpolation/schemes/downwind/downwind.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/downwind.o +SOURCE=interpolation/surfaceInterpolation/schemes/weighted/weighted.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/weighted.o +SOURCE=interpolation/surfaceInterpolation/schemes/cubic/cubic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cubic.o +SOURCE=interpolation/surfaceInterpolation/schemes/skewCorrected/skewCorrectionVectors.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/skewCorrectionVectors.o +SOURCE=interpolation/surfaceInterpolation/schemes/skewCorrected/skewCorrected.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/skewCorrected.o +SOURCE=interpolation/surfaceInterpolation/schemes/outletStabilised/outletStabilised.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/outletStabilised.o +SOURCE=interpolation/surfaceInterpolation/schemes/reverseLinear/reverseLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reverseLinear.o +SOURCE=interpolation/surfaceInterpolation/schemes/clippedLinear/clippedLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/clippedLinear.o +SOURCE=interpolation/surfaceInterpolation/schemes/harmonic/harmonic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/harmonic.o +SOURCE=interpolation/surfaceInterpolation/schemes/fixedBlended/fixedBlended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedBlended.o +SOURCE=interpolation/surfaceInterpolation/schemes/localBlended/localBlended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localBlended.o +SOURCE=interpolation/surfaceInterpolation/schemes/limiterBlended/limiterBlended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limiterBlended.o +SOURCE=interpolation/surfaceInterpolation/schemes/CoBlended/CoBlended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CoBlended.o +SOURCE=interpolation/surfaceInterpolation/schemes/localMax/localMax.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localMax.o +SOURCE=interpolation/surfaceInterpolation/schemes/localMin/localMin.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localMin.o +SOURCE=interpolation/surfaceInterpolation/schemes/linearFit/linearFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/biLinearFit/biLinearFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/biLinearFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/quadraticLinearFit/quadraticLinearFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticLinearFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/quadraticFit/quadraticFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/quadraticLinearUpwindFit/quadraticLinearUpwindFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticLinearUpwindFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/quadraticUpwindFit/quadraticUpwindFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticUpwindFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/cubicUpwindFit/cubicUpwindFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cubicUpwindFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/linearPureUpwindFit/linearPureUpwindFit.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearPureUpwindFit.o +SOURCE=interpolation/surfaceInterpolation/schemes/linearUpwind/linearUpwind.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearUpwind.o +SOURCE=interpolation/surfaceInterpolation/schemes/linearUpwind/linearUpwindV.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearUpwindV.o +SOURCE=interpolation/surfaceInterpolation/schemes/LUST/LUST.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LUST.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/limitedSurfaceInterpolationScheme/limitedSurfaceInterpolationSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limitedSurfaceInterpolationSchemes.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/upwind/upwind.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/upwind.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/blended/blended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blended.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/Gamma/Gamma.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gamma.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/SFCD/SFCD.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SFCD.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/Minmod/Minmod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Minmod.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/vanLeer/vanLeer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vanLeer.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/vanAlbada/vanAlbada.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vanAlbada.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/OSPRE/OSPRE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/OSPRE.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/limitedLinear/limitedLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limitedLinear.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/limitedCubic/limitedCubic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limitedCubic.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/SuperBee/SuperBee.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SuperBee.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/QUICK/QUICK.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/QUICK.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/MUSCL/MUSCL.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MUSCL.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/UMIST/UMIST.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/UMIST.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/Phi/Phi.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Phi.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/filteredLinear/filteredLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filteredLinear.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/filteredLinear2/filteredLinear2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filteredLinear2.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/filteredLinear3/filteredLinear3.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filteredLinear3.o +SOURCE=interpolation/surfaceInterpolation/limitedSchemes/limitWith/limitWith.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limitWith.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/multivariateSurfaceInterpolationScheme/multivariateSurfaceInterpolationSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateSurfaceInterpolationSchemes.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/multivariateSelectionScheme/multivariateSelectionSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateSelectionSchemes.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/multivariateIndependentScheme/multivariateIndependentSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateIndependentSchemes.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/upwind/multivariateUpwind.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateUpwind.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/Gamma/multivariateGamma.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateGamma.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/vanLeer/multivariateVanLeer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateVanLeer.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/Minmod/multivariateMinmod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateMinmod.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/SuperBee/multivariateSuperBee.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateSuperBee.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/MUSCL/multivariateMUSCL.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateMUSCL.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/limitedLinear/multivariateLimitedLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateLimitedLinear.o +SOURCE=interpolation/surfaceInterpolation/multivariateSchemes/limitedCubic/multivariateLimitedCubic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateLimitedCubic.o +SOURCE=finiteVolume/fv/fv.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fv.o +SOURCE=finiteVolume/fvSchemes/fvSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvSchemes.o +SOURCE=finiteVolume/ddtSchemes/ddtScheme/ddtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ddtSchemes.o +SOURCE=finiteVolume/ddtSchemes/steadyStateDdtScheme/steadyStateDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/steadyStateDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/EulerDdtScheme/EulerDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/EulerDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/CoEulerDdtScheme/CoEulerDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CoEulerDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/SLTSDdtScheme/SLTSDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SLTSDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/localEulerDdtScheme/localEulerDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/localEulerDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/backwardDdtScheme/backwardDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/backwardDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/CrankNicolsonDdtScheme/CrankNicolsonDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CrankNicolsonDdtSchemes.o +SOURCE=finiteVolume/ddtSchemes/boundedDdtScheme/boundedDdtSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundedDdtSchemes.o +SOURCE=finiteVolume/d2dt2Schemes/d2dt2Scheme/d2dt2Schemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/d2dt2Schemes.o +SOURCE=finiteVolume/d2dt2Schemes/steadyStateD2dt2Scheme/steadyStateD2dt2Schemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/steadyStateD2dt2Schemes.o +SOURCE=finiteVolume/d2dt2Schemes/EulerD2dt2Scheme/EulerD2dt2Schemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/EulerD2dt2Schemes.o +SOURCE=finiteVolume/divSchemes/divScheme/divSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/divSchemes.o +SOURCE=finiteVolume/divSchemes/gaussDivScheme/gaussDivSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gaussDivSchemes.o +SOURCE=finiteVolume/gradSchemes/gradScheme/gradSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gradSchemes.o +SOURCE=finiteVolume/gradSchemes/gaussGrad/gaussGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gaussGrads.o +SOURCE=finiteVolume/gradSchemes/leastSquaresGrad/leastSquaresVectors.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/leastSquaresVectors.o +SOURCE=finiteVolume/gradSchemes/leastSquaresGrad/leastSquaresGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/leastSquaresGrads.o +SOURCE=finiteVolume/gradSchemes/LeastSquaresGrad/LeastSquaresGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LeastSquaresGrads.o +SOURCE=finiteVolume/gradSchemes/fourthGrad/fourthGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fourthGrads.o +SOURCE=finiteVolume/gradSchemes/limitedGradSchemes/faceLimitedGrad/faceLimitedGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceLimitedGrads.o +SOURCE=finiteVolume/gradSchemes/limitedGradSchemes/cellLimitedGrad/cellLimitedGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellLimitedGrads.o +SOURCE=finiteVolume/gradSchemes/limitedGradSchemes/faceMDLimitedGrad/faceMDLimitedGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceMDLimitedGrads.o +SOURCE=finiteVolume/gradSchemes/limitedGradSchemes/cellMDLimitedGrad/cellMDLimitedGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellMDLimitedGrads.o +SOURCE=finiteVolume/snGradSchemes/snGradScheme/snGradSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/snGradSchemes.o +SOURCE=finiteVolume/snGradSchemes/correctedSnGrad/correctedSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/correctedSnGrads.o +SOURCE=finiteVolume/snGradSchemes/faceCorrectedSnGrad/faceCorrectedSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceCorrectedSnGrads.o +SOURCE=finiteVolume/snGradSchemes/limitedSnGrad/limitedSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/limitedSnGrads.o +SOURCE=finiteVolume/snGradSchemes/uncorrectedSnGrad/uncorrectedSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uncorrectedSnGrads.o +SOURCE=finiteVolume/snGradSchemes/orthogonalSnGrad/orthogonalSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/orthogonalSnGrads.o +SOURCE=finiteVolume/snGradSchemes/quadraticFitSnGrad/quadraticFitSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticFitSnGrads.o +SOURCE=finiteVolume/snGradSchemes/linearFitSnGrad/linearFitSnGrads.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearFitSnGrads.o +SOURCE=finiteVolume/convectionSchemes/convectionScheme/convectionSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/convectionSchemes.o +SOURCE=finiteVolume/convectionSchemes/gaussConvectionScheme/gaussConvectionSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gaussConvectionSchemes.o +SOURCE=finiteVolume/convectionSchemes/multivariateGaussConvectionScheme/multivariateGaussConvectionSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multivariateGaussConvectionSchemes.o +SOURCE=finiteVolume/convectionSchemes/boundedConvectionScheme/boundedConvectionSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundedConvectionSchemes.o +SOURCE=finiteVolume/laplacianSchemes/laplacianScheme/laplacianSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laplacianSchemes.o +SOURCE=finiteVolume/laplacianSchemes/gaussLaplacianScheme/gaussLaplacianSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gaussLaplacianSchemes.o +SOURCE=finiteVolume/fvc/fvcMeshPhi.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvcMeshPhi.o +SOURCE=finiteVolume/fvc/fvcSmooth/fvcSmooth.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvcSmooth.o +SOURCE=finiteVolume/fvc/fvcReconstructMag.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvcReconstructMag.o +SOURCE=cfdTools/general/findRefCell/findRefCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/findRefCell.o +SOURCE=cfdTools/general/adjustPhi/adjustPhi.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adjustPhi.o +SOURCE=cfdTools/general/bound/bound.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/bound.o +SOURCE=cfdTools/general/solutionControl/solutionControl/solutionControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solutionControl.o +SOURCE=cfdTools/general/solutionControl/simpleControl/simpleControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleControl.o +SOURCE=cfdTools/general/solutionControl/pimpleControl/pimpleControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pimpleControl.o +SOURCE=cfdTools/general/porosityModel/porosityModel/porosityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porosityModel.o +SOURCE=cfdTools/general/porosityModel/porosityModel/porosityModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porosityModelNew.o +SOURCE=cfdTools/general/porosityModel/porosityModel/porosityModelList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porosityModelList.o +SOURCE=cfdTools/general/porosityModel/porosityModel/IOporosityModelList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IOporosityModelList.o +SOURCE=cfdTools/general/porosityModel/DarcyForchheimer/DarcyForchheimer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DarcyForchheimer.o +SOURCE=cfdTools/general/porosityModel/fixedCoeff/fixedCoeff.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedCoeff.o +SOURCE=cfdTools/general/porosityModel/powerLaw/powerLaw.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/powerLaw.o +SOURCE=cfdTools/general/MRF/MRFZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MRFZone.o +SOURCE=cfdTools/general/MRF/MRFZoneList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MRFZoneList.o +SOURCE=cfdTools/general/MRF/IOMRFZoneList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IOMRFZoneList.o +SOURCE=cfdTools/general/SRF/SRFModel/SRFModel/SRFModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFModel.o +SOURCE=cfdTools/general/SRF/SRFModel/SRFModel/SRFModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFModelNew.o +SOURCE=cfdTools/general/SRF/SRFModel/rpm/rpm.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rpm.o +SOURCE=cfdTools/general/SRF/derivedFvPatchFields/SRFVelocityFvPatchVectorField/SRFVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFVelocityFvPatchVectorField.o +SOURCE=cfdTools/general/SRF/derivedFvPatchFields/SRFFreestreamVelocityFvPatchVectorField/SRFFreestreamVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFFreestreamVelocityFvPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfiniteVolume.dylib' is up to date. +++ wmake libso lagrangian/basic +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file particle/particle.C +Making dependency list for source file passiveParticle/passiveParticleCloud.C +Making dependency list for source file particle/particleIO.C +Making dependency list for source file indexedParticle/indexedParticleCloud.C +Making dependency list for source file InteractionLists/referredWallFace/referredWallFace.C +SOURCE=particle/particleIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/particleIO.o +SOURCE=indexedParticle/indexedParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/indexedParticleCloud.o +SOURCE=particle/particle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/particle.o +SOURCE=passiveParticle/passiveParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/passiveParticleCloud.o +SOURCE=InteractionLists/referredWallFace/referredWallFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/referredWallFace.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblagrangian.dylib' is up to date. +++ wmake libso lagrangian/distributionModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fixedValue/fixedValue.C +Making dependency list for source file distributionModel/distributionModelNew.C +Making dependency list for source file distributionModel/distributionModel.C +Making dependency list for source file exponential/exponential.C +Making dependency list for source file general/general.C +Making dependency list for source file multiNormal/multiNormal.C +Making dependency list for source file normal/normal.C +Making dependency list for source file RosinRammler/RosinRammler.C +Making dependency list for source file uniform/uniform.C +SOURCE=distributionModel/distributionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/distributionModel.o +SOURCE=distributionModel/distributionModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/distributionModelNew.o +SOURCE=fixedValue/fixedValue.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedValue.o +SOURCE=exponential/exponential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/exponential.o +SOURCE=general/general.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/general.o +SOURCE=multiNormal/multiNormal.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiNormal.o +SOURCE=normal/normal.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/normal.o +SOURCE=RosinRammler/RosinRammler.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RosinRammler.o +SOURCE=uniform/uniform.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniform.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdistributionModels.dylib' is up to date. +++ wmake libso genericPatchFields +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file genericPointPatchField/genericPointPatchFields.C +Making dependency list for source file genericFvPatchField/genericFvPatchFields.C +SOURCE=genericPointPatchField/genericPointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/genericPointPatchFields.o +SOURCE=genericFvPatchField/genericFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/genericFvPatchFields.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libgenericPatchFields.dylib' is up to date. +++ parallel/Allwmake ++ decompose/Allwmake +No scotch in MacPorts. Install scotch with 'port install scotch' +using SCOTCH_ARCH_PATH=/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/platforms/darwinIntel64Gcc47/scotch_6.0.0 ++ wmakeLnInclude decompositionMethods ++ '[' -n /Users/fcontino/OpenFOAM/ThirdParty-2.3.x/platforms/darwinIntel64Gcc47/scotch_6.0.0 ']' ++ wmake libso scotchDecomp +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file scotchDecomp.C +could not open file scotch.h for source file scotchDecomp.C due to No such file or directory +SOURCE=scotchDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -I/include -I/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/platforms/darwinIntel64Gcc47/scotch_6.0.0/include -I/usr/include/scotch -I../decompositionMethods/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scotchDecomp.o +scotchDecomp.C:132:20: fatal error: scotch.h: No such file or directory +compilation terminated. +make: *** [Make/darwinIntel64Gcc47DPOpt/scotchDecomp.o] Error 1 ++ '[' -d /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp ']' ++ '[' scotch_6.0.0 = scotch_6.0.0 ']' ++ export LINK_FLAGS=-lscotch ++ LINK_FLAGS=-lscotch ++ wmakeMpiLib ptscotchDecomp ++ set +x +wclean ptscotchDecomp +wmake libso ptscotchDecomp +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file ptscotchDecomp.C +could not open file omp.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/pmpicxx.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/constants.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/functions.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/exception.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/op.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/status.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/request.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/group.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/comm.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/win.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/file.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/topology.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/info.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/pop_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/pgroup_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/pstatus_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/prequest_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/datatype_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/functions_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/request_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/comm_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/intracomm_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/topology_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/intercomm_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/group_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/op_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/errhandler_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/status_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/info_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/win_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ompi/mpi/cxx/file_inln.h for source file ptscotchDecomp.C due to No such file or directory +could not open file ptscotch.h for source file ptscotchDecomp.C due to No such file or directory +SOURCE=ptscotchDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -DOMPI_SKIP_MPICXX -I/opt/local/include/openmpi-mp -I/include -I/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/platforms/darwinIntel64Gcc47/scotch_6.0.0/include/openmpi-macport-mp -I/usr/include/scotch -I../decompositionMethods/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/ptscotchDecomp.o +ptscotchDecomp.C:126:22: fatal error: ptscotch.h: No such file or directory +compilation terminated. +make: *** [Make/darwinIntel64Gcc47DPOptMACPORTOPENMPI/ptscotchDecomp.o] Error 1 ++ cd metisDecomp ++ ./Allwmake libso +No metis in MacPorts. Install metis with 'port install metis' +using METIS_ARCH_PATH=/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/platforms/darwinIntel64Gcc47/metis-5.1.0 ++ wmake libso decompositionMethods +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file simpleGeomDecomp/simpleGeomDecomp.C +Making dependency list for source file decompositionMethod/decompositionMethod.C +Making dependency list for source file hierarchGeomDecomp/hierarchGeomDecomp.C +Making dependency list for source file geomDecomp/geomDecomp.C +Making dependency list for source file manualDecomp/manualDecomp.C +Making dependency list for source file structuredDecomp/structuredDecomp.C +Making dependency list for source file multiLevelDecomp/multiLevelDecomp.C +Making dependency list for source file noDecomp/noDecomp.C +SOURCE=decompositionMethod/decompositionMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/decompositionMethod.o +SOURCE=geomDecomp/geomDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/geomDecomp.o +SOURCE=simpleGeomDecomp/simpleGeomDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleGeomDecomp.o +SOURCE=hierarchGeomDecomp/hierarchGeomDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hierarchGeomDecomp.o +SOURCE=manualDecomp/manualDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/manualDecomp.o +SOURCE=multiLevelDecomp/multiLevelDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiLevelDecomp.o +SOURCE=structuredDecomp/structuredDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/structuredDecomp.o +SOURCE=noDecomp/noDecomp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noDecomp.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdecompositionMethods.dylib' is up to date. ++ wmake libso decompose +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fvFieldDecomposer.C +SOURCE=fvFieldDecomposer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvFieldDecomposer.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdecompose.dylib' is up to date. ++ reconstruct/Allwmake ++ wmake libso reconstruct +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file processorMeshes.C +Making dependency list for source file pointFieldReconstructor.C +Making dependency list for source file fvFieldReconstructor.C +Making dependency list for source file reconstructLagrangianPositions.C +SOURCE=processorMeshes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorMeshes.o +SOURCE=reconstructLagrangianPositions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reconstructLagrangianPositions.o +SOURCE=pointFieldReconstructor.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointFieldReconstructor.o +SOURCE=fvFieldReconstructor.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvFieldReconstructor.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libreconstruct.dylib' is up to date. ++ wmake libso distributed +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file distributedTriSurfaceMesh/distributedTriSurfaceMesh.C +SOURCE=distributedTriSurfaceMesh/distributedTriSurfaceMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/distributedTriSurfaceMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdistributed.dylib' is up to date. +++ renumber/Allwmake ++ wmake libso renumberMethods +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file renumberMethod/renumberMethod.C +Making dependency list for source file manualRenumber/manualRenumber.C +Making dependency list for source file CuthillMcKeeRenumber/CuthillMcKeeRenumber.C +Making dependency list for source file randomRenumber/randomRenumber.C +Making dependency list for source file springRenumber/springRenumber.C +Making dependency list for source file structuredRenumber/structuredRenumber.C +SOURCE=manualRenumber/manualRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/manualRenumber.o +SOURCE=renumberMethod/renumberMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/renumberMethod.o +SOURCE=CuthillMcKeeRenumber/CuthillMcKeeRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CuthillMcKeeRenumber.o +SOURCE=randomRenumber/randomRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/randomRenumber.o +SOURCE=springRenumber/springRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/springRenumber.o +SOURCE=structuredRenumber/structuredRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/structuredRenumber.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/librenumberMethods.dylib' is up to date. ++ '[' -n /opt/local ']' ++ '[' -n 1 ']' ++ export BOOST_THREAD_EXTENSION=-mt ++ BOOST_THREAD_EXTENSION=-mt ++ wmake libso SloanRenumber +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file SloanRenumber.C +SOURCE=SloanRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/renumber/renumberMethods/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SloanRenumber.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libSloanRenumber.dylib' is up to date. ++ '[' -n '' ']' ++ echo + ++ echo 'Skipping zoltanRenumber' +Skipping zoltanRenumber ++ echo + +++ wmake libso conversion +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file ensight/file/ensightFile.C +Making dependency list for source file ensight/part/ensightPart.C +Making dependency list for source file ensight/file/ensightGeoFile.C +Making dependency list for source file ensight/part/ensightPartIO.C +Making dependency list for source file ensight/part/ensightPartCells.C +Making dependency list for source file ensight/part/ensightPartFaces.C +Making dependency list for source file ensight/part/ensightParts.C +Making dependency list for source file meshTables/boundaryRegion.C +Making dependency list for source file meshTables/cellTable.C +Making dependency list for source file meshReader/meshReader.C +Making dependency list for source file meshReader/meshReaderAux.C +Making dependency list for source file meshReader/calcPointCells.C +Making dependency list for source file meshReader/createPolyCells.C +Making dependency list for source file meshReader/createPolyBoundary.C +Making dependency list for source file meshReader/starcd/STARCDMeshReader.C +Making dependency list for source file meshWriter/meshWriter.C +Making dependency list for source file meshWriter/starcd/STARCDMeshWriter.C +Making dependency list for source file polyDualMesh/polyDualMesh.C +SOURCE=ensight/file/ensightFile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightFile.o +SOURCE=ensight/file/ensightGeoFile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightGeoFile.o +SOURCE=ensight/part/ensightPart.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightPart.o +SOURCE=ensight/part/ensightPartIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightPartIO.o +SOURCE=ensight/part/ensightPartCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightPartCells.o +SOURCE=ensight/part/ensightPartFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightPartFaces.o +SOURCE=ensight/part/ensightParts.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightParts.o +SOURCE=meshTables/boundaryRegion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryRegion.o +SOURCE=meshTables/cellTable.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellTable.o +SOURCE=meshReader/meshReader.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshReader.o +SOURCE=meshReader/meshReaderAux.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshReaderAux.o +SOURCE=meshReader/calcPointCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcPointCells.o +SOURCE=meshReader/createPolyCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyCells.o +SOURCE=meshReader/createPolyBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyBoundary.o +SOURCE=meshReader/starcd/STARCDMeshReader.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDMeshReader.o +SOURCE=meshWriter/meshWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshWriter.o +SOURCE=meshWriter/starcd/STARCDMeshWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/STARCDMeshWriter.o +SOURCE=polyDualMesh/polyDualMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyDualMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libconversion.dylib' is up to date. +++ wmake libso sampling +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file probes/patchProbes.C +Making dependency list for source file probes/probes.C +Making dependency list for source file probes/probesGrouping.C +Making dependency list for source file probes/probesFunctionObject/probesFunctionObject.C +Making dependency list for source file sampledSet/circle/circleSet.C +Making dependency list for source file sampledSet/cloud/cloudSet.C +Making dependency list for source file sampledSet/patchCloud/patchCloudSet.C +Making dependency list for source file sampledSet/polyLine/polyLineSet.C +Making dependency list for source file sampledSet/face/faceOnlySet.C +Making dependency list for source file sampledSet/midPoint/midPointSet.C +Making dependency list for source file sampledSet/midPointAndFace/midPointAndFaceSet.C +Making dependency list for source file sampledSet/patchSeed/patchSeedSet.C +Making dependency list for source file sampledSet/sampledSet/sampledSet.C +Making dependency list for source file sampledSet/sampledSets/sampledSets.C +Making dependency list for source file sampledSet/sampledSets/sampledSetsGrouping.C +Making dependency list for source file sampledSet/sampledSetsFunctionObject/sampledSetsFunctionObject.C +Making dependency list for source file sampledSet/triSurfaceMeshPointSet/triSurfaceMeshPointSet.C +Making dependency list for source file sampledSet/uniform/uniformSet.C +Making dependency list for source file sampledSet/array/arraySet.C +Making dependency list for source file cuttingPlane/cuttingPlane.C +Making dependency list for source file sampledSurface/sampledPatch/sampledPatch.C +Making dependency list for source file sampledSurface/sampledPatchInternalField/sampledPatchInternalField.C +Making dependency list for source file sampledSurface/sampledPlane/sampledPlane.C +Making dependency list for source file sampledSurface/isoSurface/isoSurface.C +Making dependency list for source file sampledSurface/isoSurface/sampledIsoSurface.C +Making dependency list for source file sampledSurface/isoSurface/isoSurfaceCell.C +Making dependency list for source file sampledSurface/isoSurface/sampledIsoSurfaceCell.C +Making dependency list for source file sampledSurface/distanceSurface/distanceSurface.C +Making dependency list for source file sampledSurface/sampledCuttingPlane/sampledCuttingPlane.C +Making dependency list for source file sampledSurface/sampledSurface/sampledSurface.C +Making dependency list for source file sampledSurface/sampledSurfaces/sampledSurfaces.C +Making dependency list for source file sampledSurface/sampledSurfaces/sampledSurfacesGrouping.C +Making dependency list for source file sampledSurface/sampledSurfacesFunctionObject/sampledSurfacesFunctionObject.C +Making dependency list for source file sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C +Making dependency list for source file sampledSurface/thresholdCellFaces/thresholdCellFaces.C +Making dependency list for source file sampledSurface/thresholdCellFaces/sampledThresholdCellFaces.C +Making dependency list for source file sampledSurface/writers/surfaceWriter.C +Making dependency list for source file sampledSurface/writers/dx/dxSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/ensight/ensightSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/ensight/ensightPTraits.C +Making dependency list for source file sampledSurface/writers/foamFile/foamFileSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/nastran/nastranSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/proxy/proxySurfaceWriter.C +Making dependency list for source file sampledSurface/writers/raw/rawSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/starcd/starcdSurfaceWriter.C +Making dependency list for source file sampledSurface/writers/vtk/vtkSurfaceWriter.C +Making dependency list for source file graphField/writePatchGraph.C +Making dependency list for source file graphField/writeCellGraph.C +Making dependency list for source file graphField/makeGraph.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/meshToMesh.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/meshToMeshParallelOps.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/calcMethod/meshToMeshMethod/meshToMeshMethod.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/calcMethod/meshToMeshMethod/meshToMeshMethodNew.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/calcMethod/cellVolumeWeight/cellVolumeWeightMethod.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/calcMethod/direct/directMethod.C +Making dependency list for source file meshToMeshInterpolation/meshToMesh/calcMethod/mapNearest/mapNearestMethod.C +SOURCE=probes/patchProbes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchProbes.o +SOURCE=probes/probes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/probes.o +SOURCE=probes/probesGrouping.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/probesGrouping.o +SOURCE=probes/probesFunctionObject/probesFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/probesFunctionObject.o +SOURCE=sampledSet/circle/circleSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/circleSet.o +SOURCE=sampledSet/cloud/cloudSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudSet.o +SOURCE=sampledSet/patchCloud/patchCloudSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchCloudSet.o +SOURCE=sampledSet/polyLine/polyLineSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyLineSet.o +SOURCE=sampledSet/face/faceOnlySet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceOnlySet.o +SOURCE=sampledSet/midPoint/midPointSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/midPointSet.o +SOURCE=sampledSet/midPointAndFace/midPointAndFaceSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/midPointAndFaceSet.o +SOURCE=sampledSet/patchSeed/patchSeedSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchSeedSet.o +SOURCE=sampledSet/sampledSet/sampledSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSet.o +SOURCE=sampledSet/sampledSets/sampledSets.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSets.o +SOURCE=sampledSet/sampledSets/sampledSetsGrouping.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSetsGrouping.o +SOURCE=sampledSet/sampledSetsFunctionObject/sampledSetsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSetsFunctionObject.o +SOURCE=sampledSet/triSurfaceMeshPointSet/triSurfaceMeshPointSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceMeshPointSet.o +SOURCE=sampledSet/uniform/uniformSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformSet.o +SOURCE=sampledSet/array/arraySet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/arraySet.o +SOURCE=cuttingPlane/cuttingPlane.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cuttingPlane.o +SOURCE=sampledSurface/sampledPatch/sampledPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledPatch.o +SOURCE=sampledSurface/sampledPatchInternalField/sampledPatchInternalField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledPatchInternalField.o +SOURCE=sampledSurface/sampledPlane/sampledPlane.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledPlane.o +SOURCE=sampledSurface/isoSurface/isoSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/isoSurface.o +SOURCE=sampledSurface/isoSurface/sampledIsoSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledIsoSurface.o +SOURCE=sampledSurface/isoSurface/isoSurfaceCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/isoSurfaceCell.o +SOURCE=sampledSurface/isoSurface/sampledIsoSurfaceCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledIsoSurfaceCell.o +SOURCE=sampledSurface/distanceSurface/distanceSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/distanceSurface.o +SOURCE=sampledSurface/sampledCuttingPlane/sampledCuttingPlane.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledCuttingPlane.o +SOURCE=sampledSurface/sampledSurface/sampledSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSurface.o +SOURCE=sampledSurface/sampledSurfaces/sampledSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSurfaces.o +SOURCE=sampledSurface/sampledSurfaces/sampledSurfacesGrouping.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSurfacesGrouping.o +SOURCE=sampledSurface/sampledSurfacesFunctionObject/sampledSurfacesFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledSurfacesFunctionObject.o +SOURCE=sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledTriSurfaceMesh.o +SOURCE=sampledSurface/thresholdCellFaces/thresholdCellFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thresholdCellFaces.o +SOURCE=sampledSurface/thresholdCellFaces/sampledThresholdCellFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sampledThresholdCellFaces.o +SOURCE=sampledSurface/writers/surfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceWriter.o +SOURCE=sampledSurface/writers/dx/dxSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dxSurfaceWriter.o +SOURCE=sampledSurface/writers/ensight/ensightSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightSurfaceWriter.o +SOURCE=sampledSurface/writers/ensight/ensightPTraits.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightPTraits.o +SOURCE=sampledSurface/writers/foamFile/foamFileSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamFileSurfaceWriter.o +SOURCE=sampledSurface/writers/nastran/nastranSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nastranSurfaceWriter.o +SOURCE=sampledSurface/writers/proxy/proxySurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/proxySurfaceWriter.o +SOURCE=sampledSurface/writers/raw/rawSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rawSurfaceWriter.o +SOURCE=sampledSurface/writers/starcd/starcdSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/starcdSurfaceWriter.o +SOURCE=sampledSurface/writers/vtk/vtkSurfaceWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkSurfaceWriter.o +SOURCE=graphField/writePatchGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writePatchGraph.o +SOURCE=graphField/writeCellGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeCellGraph.o +SOURCE=graphField/makeGraph.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeGraph.o +SOURCE=meshToMeshInterpolation/meshToMesh/meshToMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshToMesh.o +SOURCE=meshToMeshInterpolation/meshToMesh/meshToMeshParallelOps.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshToMeshParallelOps.o +SOURCE=meshToMeshInterpolation/meshToMesh/calcMethod/meshToMeshMethod/meshToMeshMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshToMeshMethod.o +SOURCE=meshToMeshInterpolation/meshToMesh/calcMethod/meshToMeshMethod/meshToMeshMethodNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshToMeshMethodNew.o +SOURCE=meshToMeshInterpolation/meshToMesh/calcMethod/cellVolumeWeight/cellVolumeWeightMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellVolumeWeightMethod.o +SOURCE=meshToMeshInterpolation/meshToMesh/calcMethod/direct/directMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/directMethod.o +SOURCE=meshToMeshInterpolation/meshToMesh/calcMethod/mapNearest/mapNearestMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapNearestMethod.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsampling.dylib' is up to date. +++ wmake libso mesh/extrudeModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file extrudeModel/extrudeModel.C +Making dependency list for source file linearDirection/linearDirection.C +Making dependency list for source file extrudeModel/extrudeModelNew.C +Making dependency list for source file linearNormal/linearNormal.C +Making dependency list for source file linearRadial/linearRadial.C +Making dependency list for source file radial/radial.C +Making dependency list for source file sigmaRadial/sigmaRadial.C +Making dependency list for source file wedge/wedge.C +SOURCE=extrudeModel/extrudeModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudeModelNew.o +SOURCE=extrudeModel/extrudeModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudeModel.o +SOURCE=linearDirection/linearDirection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearDirection.o +SOURCE=linearNormal/linearNormal.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearNormal.o +SOURCE=linearRadial/linearRadial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearRadial.o +SOURCE=radial/radial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radial.o +SOURCE=sigmaRadial/sigmaRadial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sigmaRadial.o +SOURCE=wedge/wedge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wedge.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libextrudeModel.dylib' is up to date. +++ wmake libso dynamicMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file attachDetach/attachInterface.C +Making dependency list for source file attachDetach/attachDetachPointMatchMap.C +Making dependency list for source file attachDetach/attachDetach.C +Making dependency list for source file attachDetach/detachInterface.C +Making dependency list for source file layerAdditionRemoval/layerAdditionRemoval.C +Making dependency list for source file layerAdditionRemoval/setLayerPairing.C +Making dependency list for source file layerAdditionRemoval/addCellLayer.C +Making dependency list for source file layerAdditionRemoval/removeCellLayer.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatch.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatchPointMap.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatchFaces.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatchPointPoints.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatchCutFaces.C +Making dependency list for source file slidingInterface/enrichedPatch/enrichedPatchMasterPoints.C +Making dependency list for source file polyTopoChange/polyMeshModifier/polyMeshModifier.C +Making dependency list for source file polyTopoChange/polyMeshModifier/polyMeshModifierNew.C +Making dependency list for source file polyTopoChange/polyTopoChange/topoAction/topoActions.C +Making dependency list for source file polyTopoChange/polyTopoChange/polyTopoChange.C +Making dependency list for source file polyTopoChange/polyTopoChanger/polyTopoChanger.C +Making dependency list for source file polyTopoChange/polyTopoChange/addPatchCellLayer.C +Making dependency list for source file polyTopoChange/polyTopoChange/pointEdgeCollapse/pointEdgeCollapse.C +Making dependency list for source file polyTopoChange/polyTopoChange/edgeCollapser.C +Making dependency list for source file polyTopoChange/polyTopoChange/faceCollapser.C +Making dependency list for source file polyTopoChange/polyTopoChange/hexRef8.C +Making dependency list for source file polyTopoChange/polyTopoChange/removeCells.C +Making dependency list for source file polyTopoChange/polyTopoChange/removeFaces.C +Making dependency list for source file polyTopoChange/polyTopoChange/refinementData.C +Making dependency list for source file polyTopoChange/polyTopoChange/refinementDistanceData.C +Making dependency list for source file polyTopoChange/polyTopoChange/refinementHistory.C +Making dependency list for source file polyTopoChange/polyTopoChange/removePoints.C +Making dependency list for source file polyTopoChange/polyTopoChange/combineFaces.C +Making dependency list for source file polyTopoChange/polyTopoChange/duplicatePoints.C +Making dependency list for source file polyTopoChange/polyTopoChange/tetDecomposer.C +Making dependency list for source file slidingInterface/slidingInterface.C +Making dependency list for source file slidingInterface/slidingInterfaceProjectPoints.C +Making dependency list for source file slidingInterface/coupleSlidingInterface.C +Making dependency list for source file slidingInterface/slidingInterfaceAttachedAddressing.C +Making dependency list for source file slidingInterface/slidingInterfaceClearCouple.C +Making dependency list for source file slidingInterface/decoupleSlidingInterface.C +Making dependency list for source file perfectInterface/perfectInterface.C +Making dependency list for source file boundaryMesh/boundaryMesh.C +Making dependency list for source file boundaryPatch/boundaryPatch.C +Making dependency list for source file setUpdater/setUpdater.C +Making dependency list for source file meshCut/meshModifiers/boundaryCutter/boundaryCutter.C +Making dependency list for source file meshCut/meshModifiers/meshCutter/meshCutter.C +Making dependency list for source file meshCut/meshModifiers/meshCutAndRemove/meshCutAndRemove.C +Making dependency list for source file meshCut/meshModifiers/undoableMeshCutter/undoableMeshCutter.C +Making dependency list for source file meshCut/meshModifiers/multiDirRefinement/multiDirRefinement.C +Making dependency list for source file meshCut/meshModifiers/refinementIterator/refinementIterator.C +Making dependency list for source file meshCut/cellLooper/cellLooper.C +Making dependency list for source file meshCut/cellLooper/topoCellLooper.C +Making dependency list for source file meshCut/cellLooper/geomCellLooper.C +Making dependency list for source file meshCut/cellLooper/hexCellLooper.C +Making dependency list for source file meshCut/directions/directions.C +Making dependency list for source file meshCut/directions/directionInfo/directionInfo.C +Making dependency list for source file meshCut/edgeVertex/edgeVertex.C +Making dependency list for source file meshCut/cellCuts/cellCuts.C +Making dependency list for source file meshCut/splitCell/splitCell.C +Making dependency list for source file meshCut/refineCell/refineCell.C +Making dependency list for source file meshCut/wallLayerCells/wallLayerCells.C +Making dependency list for source file meshCut/wallLayerCells/wallNormalInfo/wallNormalInfo.C +Making dependency list for source file polyTopoChange/attachPolyTopoChanger/attachPolyTopoChanger.C +Making dependency list for source file polyTopoChange/repatchPolyTopoChanger/repatchPolyTopoChanger.C +Making dependency list for source file fvMeshAdder/fvMeshAdder.C +Making dependency list for source file fvMeshDistribute/fvMeshDistribute.C +Making dependency list for source file polyMeshAdder/faceCoupleInfo.C +Making dependency list for source file polyMeshAdder/polyMeshAdder.C +Making dependency list for source file fvMeshTools/fvMeshTools.C +Making dependency list for source file motionSmoother/motionSmoother.C +Making dependency list for source file motionSmoother/motionSmootherAlgo.C +Making dependency list for source file motionSmoother/motionSmootherAlgoCheck.C +Making dependency list for source file motionSmoother/motionSmootherData.C +Making dependency list for source file motionSmoother/polyMeshGeometry/polyMeshGeometry.C +Making dependency list for source file motionSmoother/badQualityToCell/badQualityToCell.C +Making dependency list for source file motionSmoother/badQualityToFace/badQualityToFace.C +Making dependency list for source file motionSolver/motionSolver/motionSolver.C +Making dependency list for source file motionSolver/displacement/displacementMotionSolver.C +Making dependency list for source file motionSolver/componentDisplacement/componentDisplacementMotionSolver.C +Making dependency list for source file motionSolver/velocity/velocityMotionSolver.C +Making dependency list for source file motionSolver/componentVelocity/componentVelocityMotionSolver.C +Making dependency list for source file createShellMesh/createShellMesh.C +Making dependency list for source file extrudePatchMesh/extrudePatchMesh.C +Making dependency list for source file polyMeshFilter/polyMeshFilterSettings.C +Making dependency list for source file polyMeshFilter/polyMeshFilter.C +SOURCE=attachDetach/attachInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/attachInterface.o +SOURCE=attachDetach/attachDetach.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/attachDetach.o +SOURCE=attachDetach/detachInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/detachInterface.o +SOURCE=attachDetach/attachDetachPointMatchMap.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/attachDetachPointMatchMap.o +SOURCE=layerAdditionRemoval/layerAdditionRemoval.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/layerAdditionRemoval.o +SOURCE=layerAdditionRemoval/setLayerPairing.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setLayerPairing.o +SOURCE=layerAdditionRemoval/addCellLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/addCellLayer.o +SOURCE=layerAdditionRemoval/removeCellLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeCellLayer.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatch.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatchPointMap.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatchPointMap.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatchFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatchFaces.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatchPointPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatchPointPoints.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatchCutFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatchCutFaces.o +SOURCE=slidingInterface/enrichedPatch/enrichedPatchMasterPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enrichedPatchMasterPoints.o +SOURCE=polyTopoChange/polyMeshModifier/polyMeshModifier.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshModifier.o +SOURCE=polyTopoChange/polyMeshModifier/polyMeshModifierNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshModifierNew.o +SOURCE=polyTopoChange/polyTopoChange/topoAction/topoActions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoActions.o +SOURCE=polyTopoChange/polyTopoChanger/polyTopoChanger.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyTopoChanger.o +SOURCE=polyTopoChange/polyTopoChange/polyTopoChange.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyTopoChange.o +SOURCE=polyTopoChange/polyTopoChange/addPatchCellLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/addPatchCellLayer.o +SOURCE=polyTopoChange/polyTopoChange/pointEdgeCollapse/pointEdgeCollapse.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointEdgeCollapse.o +SOURCE=polyTopoChange/polyTopoChange/edgeCollapser.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeCollapser.o +SOURCE=polyTopoChange/polyTopoChange/faceCollapser.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceCollapser.o +SOURCE=polyTopoChange/polyTopoChange/hexRef8.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hexRef8.o +SOURCE=polyTopoChange/polyTopoChange/removeCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeCells.o +SOURCE=polyTopoChange/polyTopoChange/removeFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeFaces.o +SOURCE=polyTopoChange/polyTopoChange/refinementData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementData.o +SOURCE=polyTopoChange/polyTopoChange/refinementDistanceData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementDistanceData.o +SOURCE=polyTopoChange/polyTopoChange/refinementHistory.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementHistory.o +SOURCE=polyTopoChange/polyTopoChange/removePoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removePoints.o +SOURCE=polyTopoChange/polyTopoChange/combineFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/combineFaces.o +SOURCE=polyTopoChange/polyTopoChange/duplicatePoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/duplicatePoints.o +SOURCE=polyTopoChange/polyTopoChange/tetDecomposer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetDecomposer.o +SOURCE=slidingInterface/slidingInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slidingInterface.o +SOURCE=slidingInterface/slidingInterfaceProjectPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slidingInterfaceProjectPoints.o +SOURCE=slidingInterface/coupleSlidingInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupleSlidingInterface.o +SOURCE=slidingInterface/slidingInterfaceAttachedAddressing.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slidingInterfaceAttachedAddressing.o +SOURCE=slidingInterface/slidingInterfaceClearCouple.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/slidingInterfaceClearCouple.o +SOURCE=slidingInterface/decoupleSlidingInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/decoupleSlidingInterface.o +SOURCE=perfectInterface/perfectInterface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/perfectInterface.o +SOURCE=boundaryMesh/boundaryMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryMesh.o +SOURCE=boundaryPatch/boundaryPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryPatch.o +SOURCE=setUpdater/setUpdater.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setUpdater.o +SOURCE=meshCut/meshModifiers/boundaryCutter/boundaryCutter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryCutter.o +SOURCE=meshCut/meshModifiers/meshCutter/meshCutter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshCutter.o +SOURCE=meshCut/meshModifiers/meshCutAndRemove/meshCutAndRemove.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshCutAndRemove.o +SOURCE=meshCut/meshModifiers/undoableMeshCutter/undoableMeshCutter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/undoableMeshCutter.o +SOURCE=meshCut/meshModifiers/refinementIterator/refinementIterator.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementIterator.o +SOURCE=meshCut/meshModifiers/multiDirRefinement/multiDirRefinement.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiDirRefinement.o +SOURCE=meshCut/cellLooper/cellLooper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellLooper.o +SOURCE=meshCut/cellLooper/topoCellLooper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoCellLooper.o +SOURCE=meshCut/cellLooper/geomCellLooper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/geomCellLooper.o +SOURCE=meshCut/cellLooper/hexCellLooper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hexCellLooper.o +SOURCE=meshCut/directions/directions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/directions.o +SOURCE=meshCut/directions/directionInfo/directionInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/directionInfo.o +SOURCE=meshCut/edgeVertex/edgeVertex.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeVertex.o +SOURCE=meshCut/cellCuts/cellCuts.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellCuts.o +SOURCE=meshCut/splitCell/splitCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splitCell.o +SOURCE=meshCut/refineCell/refineCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refineCell.o +SOURCE=meshCut/wallLayerCells/wallLayerCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallLayerCells.o +SOURCE=meshCut/wallLayerCells/wallNormalInfo/wallNormalInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallNormalInfo.o +SOURCE=polyTopoChange/attachPolyTopoChanger/attachPolyTopoChanger.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/attachPolyTopoChanger.o +SOURCE=polyTopoChange/repatchPolyTopoChanger/repatchPolyTopoChanger.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/repatchPolyTopoChanger.o +SOURCE=fvMeshAdder/fvMeshAdder.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMeshAdder.o +SOURCE=fvMeshDistribute/fvMeshDistribute.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMeshDistribute.o +SOURCE=polyMeshAdder/faceCoupleInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceCoupleInfo.o +SOURCE=polyMeshAdder/polyMeshAdder.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshAdder.o +SOURCE=fvMeshTools/fvMeshTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMeshTools.o +SOURCE=motionSmoother/motionSmoother.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionSmoother.o +SOURCE=motionSmoother/motionSmootherAlgo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionSmootherAlgo.o +SOURCE=motionSmoother/motionSmootherAlgoCheck.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionSmootherAlgoCheck.o +SOURCE=motionSmoother/motionSmootherData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionSmootherData.o +SOURCE=motionSmoother/polyMeshGeometry/polyMeshGeometry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshGeometry.o +SOURCE=motionSmoother/badQualityToCell/badQualityToCell.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/badQualityToCell.o +SOURCE=motionSmoother/badQualityToFace/badQualityToFace.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/badQualityToFace.o +SOURCE=motionSolver/motionSolver/motionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionSolver.o +SOURCE=motionSolver/displacement/displacementMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementMotionSolver.o +SOURCE=motionSolver/componentDisplacement/componentDisplacementMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/componentDisplacementMotionSolver.o +SOURCE=motionSolver/velocity/velocityMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/velocityMotionSolver.o +SOURCE=motionSolver/componentVelocity/componentVelocityMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/componentVelocityMotionSolver.o +SOURCE=createShellMesh/createShellMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createShellMesh.o +SOURCE=extrudePatchMesh/extrudePatchMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudePatchMesh.o +SOURCE=polyMeshFilter/polyMeshFilterSettings.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshFilterSettings.o +SOURCE=polyMeshFilter/polyMeshFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyMeshFilter.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdynamicMesh.dylib' is up to date. +++ wmake libso dynamicFvMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dynamicFvMesh/dynamicFvMesh.C +Making dependency list for source file dynamicFvMesh/dynamicFvMeshNew.C +Making dependency list for source file staticFvMesh/staticFvMesh.C +Making dependency list for source file dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.C +Making dependency list for source file dynamicInkJetFvMesh/dynamicInkJetFvMesh.C +Making dependency list for source file dynamicRefineFvMesh/dynamicRefineFvMesh.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFvMesh.C +Making dependency list for source file solidBodyMotionFvMesh/multiSolidBodyMotionFvMesh.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/solidBodyMotionFunction/solidBodyMotionFunction.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/solidBodyMotionFunction/solidBodyMotionFunctionNew.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/SDA/SDA.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/linearMotion/linearMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/rotatingMotion/rotatingMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/axisRotationMotion/axisRotationMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/multiMotion/multiMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/oscillatingLinearMotion/oscillatingLinearMotion.C +Making dependency list for source file solidBodyMotionFvMesh/solidBodyMotionFunctions/oscillatingRotatingMotion/oscillatingRotatingMotion.C +Making dependency list for source file solidBodyMotionFvMesh/pointPatchFields/derived/solidBodyMotionDisplacement/solidBodyMotionDisplacementPointPatchVectorField.C +SOURCE=dynamicFvMesh/dynamicFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicFvMesh.o +SOURCE=dynamicFvMesh/dynamicFvMeshNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicFvMeshNew.o +SOURCE=staticFvMesh/staticFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/staticFvMesh.o +SOURCE=dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicMotionSolverFvMesh.o +SOURCE=dynamicInkJetFvMesh/dynamicInkJetFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicInkJetFvMesh.o +SOURCE=dynamicRefineFvMesh/dynamicRefineFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicRefineFvMesh.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidBodyMotionFvMesh.o +SOURCE=solidBodyMotionFvMesh/multiSolidBodyMotionFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiSolidBodyMotionFvMesh.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/solidBodyMotionFunction/solidBodyMotionFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidBodyMotionFunction.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/solidBodyMotionFunction/solidBodyMotionFunctionNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidBodyMotionFunctionNew.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/SDA/SDA.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SDA.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/tabulated6DoFMotion/tabulated6DoFMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tabulated6DoFMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/linearMotion/linearMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/rotatingMotion/rotatingMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotatingMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/axisRotationMotion/axisRotationMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/axisRotationMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/multiMotion/multiMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/oscillatingLinearMotion/oscillatingLinearMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oscillatingLinearMotion.o +SOURCE=solidBodyMotionFvMesh/solidBodyMotionFunctions/oscillatingRotatingMotion/oscillatingRotatingMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oscillatingRotatingMotion.o +SOURCE=solidBodyMotionFvMesh/pointPatchFields/derived/solidBodyMotionDisplacement/solidBodyMotionDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidBodyMotionDisplacementPointPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdynamicFvMesh.dylib' is up to date. +++ wmake libso topoChangerFvMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file topoChangerFvMesh/topoChangerFvMesh.C +Making dependency list for source file rawTopoChangerFvMesh/rawTopoChangerFvMesh.C +Making dependency list for source file movingConeTopoFvMesh/movingConeTopoFvMesh.C +SOURCE=movingConeTopoFvMesh/movingConeTopoFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/movingConeTopoFvMesh.o +SOURCE=rawTopoChangerFvMesh/rawTopoChangerFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rawTopoChangerFvMesh.o +SOURCE=topoChangerFvMesh/topoChangerFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoChangerFvMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtopoChangerFvMesh.dylib' is up to date. +++ wmake libso ODE +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file ODESolvers/ODESolver/ODESolver.C +Making dependency list for source file ODESolvers/adaptiveSolver/adaptiveSolver.C +Making dependency list for source file ODESolvers/Euler/Euler.C +Making dependency list for source file ODESolvers/ODESolver/ODESolverNew.C +Making dependency list for source file ODESolvers/EulerSI/EulerSI.C +Making dependency list for source file ODESolvers/RKF45/RKF45.C +Making dependency list for source file ODESolvers/Trapezoid/Trapezoid.C +Making dependency list for source file ODESolvers/RKCK45/RKCK45.C +Making dependency list for source file ODESolvers/RKDP45/RKDP45.C +Making dependency list for source file ODESolvers/Rosenbrock12/Rosenbrock12.C +Making dependency list for source file ODESolvers/Rosenbrock23/Rosenbrock23.C +Making dependency list for source file ODESolvers/Rosenbrock34/Rosenbrock34.C +Making dependency list for source file ODESolvers/rodas23/rodas23.C +Making dependency list for source file ODESolvers/rodas34/rodas34.C +Making dependency list for source file ODESolvers/SIBS/SIBS.C +Making dependency list for source file ODESolvers/SIBS/SIMPR.C +Making dependency list for source file ODESolvers/SIBS/polyExtrapolate.C +Making dependency list for source file ODESolvers/seulex/seulex.C +SOURCE=ODESolvers/ODESolver/ODESolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ODESolver.o +SOURCE=ODESolvers/ODESolver/ODESolverNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ODESolverNew.o +SOURCE=ODESolvers/Euler/Euler.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Euler.o +SOURCE=ODESolvers/adaptiveSolver/adaptiveSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adaptiveSolver.o +SOURCE=ODESolvers/EulerSI/EulerSI.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/EulerSI.o +SOURCE=ODESolvers/Trapezoid/Trapezoid.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Trapezoid.o +SOURCE=ODESolvers/RKF45/RKF45.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RKF45.o +SOURCE=ODESolvers/RKCK45/RKCK45.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RKCK45.o +SOURCE=ODESolvers/RKDP45/RKDP45.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RKDP45.o +SOURCE=ODESolvers/Rosenbrock12/Rosenbrock12.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Rosenbrock12.o +SOURCE=ODESolvers/Rosenbrock23/Rosenbrock23.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Rosenbrock23.o +SOURCE=ODESolvers/Rosenbrock34/Rosenbrock34.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Rosenbrock34.o +SOURCE=ODESolvers/rodas23/rodas23.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rodas23.o +SOURCE=ODESolvers/rodas34/rodas34.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rodas34.o +SOURCE=ODESolvers/SIBS/SIBS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SIBS.o +SOURCE=ODESolvers/SIBS/SIMPR.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SIMPR.o +SOURCE=ODESolvers/SIBS/polyExtrapolate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyExtrapolate.o +SOURCE=ODESolvers/seulex/seulex.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/seulex.o +ODESolvers/seulex/seulex.C: In member function 'virtual void Foam::seulex::solve(Foam::scalar&, Foam::scalarField&, Foam::ODESolver::stepState&) const': +ODESolvers/seulex/seulex.C:294:17: warning: 'errOld' may be used uninitialized in this function [-Wmaybe-uninitialized] +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libODE.dylib' is up to date. +++ wmake libso randomProcesses +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fft/calcEk.C +Making dependency list for source file fft/fftRenumber.C +Making dependency list for source file Kmesh/Kmesh.C +Making dependency list for source file fft/fft.C +Making dependency list for source file fft/kShellIntegration.C +Making dependency list for source file processes/UOprocess/UOprocess.C +Making dependency list for source file turbulence/turbGen.C +Making dependency list for source file noise/noiseFFT.C +SOURCE=Kmesh/Kmesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Kmesh.o +SOURCE=fft/fftRenumber.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fftRenumber.o +SOURCE=fft/fft.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fft.o +SOURCE=fft/calcEk.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcEk.o +SOURCE=fft/kShellIntegration.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kShellIntegration.o +SOURCE=processes/UOprocess/UOprocess.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/UOprocess.o +SOURCE=turbulence/turbGen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbGen.o +SOURCE=noise/noiseFFT.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noiseFFT.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/librandomProcesses.dylib' is up to date. +++ thermophysicalModels/Allwmake ++ wmake libso specie +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file atomicWeights/atomicWeights.C +Making dependency list for source file specie/specie.C +Making dependency list for source file reaction/reactions/makeReactions.C +Making dependency list for source file reaction/reactions/makeLangmuirHinshelwoodReactions.C +SOURCE=atomicWeights/atomicWeights.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/atomicWeights.o +SOURCE=reaction/reactions/makeLangmuirHinshelwoodReactions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeLangmuirHinshelwoodReactions.o +SOURCE=reaction/reactions/makeReactions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeReactions.o +SOURCE=specie/specie.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/specie.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libspecie.dylib' is up to date. ++ wmake libso solidSpecie +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file reaction/reactions/makeSolidReactions.C +SOURCE=reaction/reactions/makeSolidReactions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeSolidReactions.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidSpecie.dylib' is up to date. ++ wmake libso thermophysicalFunctions +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file thermophysicalFunction/thermophysicalFunction.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc0/NSRDSfunc0.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc1/NSRDSfunc1.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc2/NSRDSfunc2.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc3/NSRDSfunc3.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc5/NSRDSfunc5.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc6/NSRDSfunc6.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc7/NSRDSfunc7.C +Making dependency list for source file NSRDSfunctions/NSRDSfunc14/NSRDSfunc14.C +Making dependency list for source file APIfunctions/APIdiffCoefFunc/APIdiffCoefFunc.C +SOURCE=thermophysicalFunction/thermophysicalFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermophysicalFunction.o +SOURCE=NSRDSfunctions/NSRDSfunc0/NSRDSfunc0.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc0.o +SOURCE=NSRDSfunctions/NSRDSfunc1/NSRDSfunc1.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc1.o +SOURCE=NSRDSfunctions/NSRDSfunc2/NSRDSfunc2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc2.o +SOURCE=NSRDSfunctions/NSRDSfunc3/NSRDSfunc3.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc3.o +SOURCE=NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc4.o +SOURCE=NSRDSfunctions/NSRDSfunc5/NSRDSfunc5.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc5.o +SOURCE=NSRDSfunctions/NSRDSfunc6/NSRDSfunc6.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc6.o +SOURCE=NSRDSfunctions/NSRDSfunc7/NSRDSfunc7.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc7.o +SOURCE=NSRDSfunctions/NSRDSfunc14/NSRDSfunc14.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NSRDSfunc14.o +SOURCE=APIfunctions/APIdiffCoefFunc/APIdiffCoefFunc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/APIdiffCoefFunc.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libthermophysicalFunctions.dylib' is up to date. ++ ./properties/Allwmake ++ wmake libso liquidProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file C12H26/C12H26.C +Making dependency list for source file liquidProperties/liquidProperties.C +Making dependency list for source file H2O/H2O.C +Making dependency list for source file C7H16/C7H16.C +Making dependency list for source file C10H22/C10H22.C +Making dependency list for source file C8H18/C8H18.C +Making dependency list for source file IC8H18/IC8H18.C +Making dependency list for source file C4H10O/C4H10O.C +Making dependency list for source file IDEA/IDEA.C +Making dependency list for source file C2H6O/C2H6O.C +Making dependency list for source file aC10H7CH3/aC10H7CH3.C +Making dependency list for source file bC10H7CH3/bC10H7CH3.C +Making dependency list for source file C8H10/C8H10.C +Making dependency list for source file C16H34/C16H34.C +Making dependency list for source file C9H20/C9H20.C +Making dependency list for source file C6H6/C6H6.C +Making dependency list for source file C7H8/C7H8.C +Making dependency list for source file C6H14/C6H14.C +Making dependency list for source file C13H28/C13H28.C +Making dependency list for source file C14H30/C14H30.C +Making dependency list for source file C3H8/C3H8.C +Making dependency list for source file C3H6O/C3H6O.C +Making dependency list for source file C2H6/C2H6.C +Making dependency list for source file CH3OH/CH3OH.C +Making dependency list for source file C2H5OH/C2H5OH.C +Making dependency list for source file Ar/Ar.C +Making dependency list for source file N2/N2.C +Making dependency list for source file MB/MB.C +Making dependency list for source file CH4N2O/CH4N2O.C +Making dependency list for source file nC3H8O/nC3H8O.C +Making dependency list for source file iC3H8O/iC3H8O.C +SOURCE=liquidProperties/liquidProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/liquidProperties.o +SOURCE=H2O/H2O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/H2O.o +SOURCE=C7H16/C7H16.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C7H16.o +SOURCE=C12H26/C12H26.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C12H26.o +SOURCE=C10H22/C10H22.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C10H22.o +SOURCE=C8H18/C8H18.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C8H18.o +SOURCE=IC8H18/IC8H18.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IC8H18.o +SOURCE=C4H10O/C4H10O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C4H10O.o +SOURCE=C2H6O/C2H6O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C2H6O.o +SOURCE=IDEA/IDEA.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IDEA.o +SOURCE=aC10H7CH3/aC10H7CH3.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/aC10H7CH3.o +SOURCE=bC10H7CH3/bC10H7CH3.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/bC10H7CH3.o +SOURCE=C8H10/C8H10.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C8H10.o +SOURCE=C16H34/C16H34.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C16H34.o +SOURCE=C9H20/C9H20.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C9H20.o +SOURCE=C6H6/C6H6.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C6H6.o +SOURCE=C7H8/C7H8.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C7H8.o +SOURCE=C6H14/C6H14.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C6H14.o +SOURCE=C13H28/C13H28.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C13H28.o +SOURCE=C14H30/C14H30.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C14H30.o +SOURCE=C3H8/C3H8.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C3H8.o +SOURCE=C3H6O/C3H6O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C3H6O.o +SOURCE=C2H6/C2H6.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C2H6.o +SOURCE=CH3OH/CH3OH.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CH3OH.o +SOURCE=C2H5OH/C2H5OH.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C2H5OH.o +SOURCE=Ar/Ar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Ar.o +SOURCE=N2/N2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/N2.o +SOURCE=MB/MB.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MB.o +SOURCE=CH4N2O/CH4N2O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CH4N2O.o +SOURCE=nC3H8O/nC3H8O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nC3H8O.o +SOURCE=iC3H8O/iC3H8O.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/iC3H8O.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libliquidProperties.dylib' is up to date. ++ wmake libso liquidMixtureProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file liquidMixtureProperties/liquidMixtureProperties.C +SOURCE=liquidMixtureProperties/liquidMixtureProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/combustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/liquidMixtureProperties.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libliquidMixtureProperties.dylib' is up to date. ++ wmake libso solidProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file solidProperties/solidProperties.C +Making dependency list for source file C/C.C +Making dependency list for source file ash/ash.C +Making dependency list for source file solidProperties/solidPropertiesNew.C +Making dependency list for source file CaCO3/CaCO3.C +SOURCE=solidProperties/solidProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidProperties.o +SOURCE=solidProperties/solidPropertiesNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidPropertiesNew.o +SOURCE=ash/ash.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ash.o +SOURCE=C/C.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/C.o +SOURCE=CaCO3/CaCO3.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CaCO3.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidProperties.dylib' is up to date. ++ wmake libso solidMixtureProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file solidMixtureProperties/solidMixtureProperties.C +SOURCE=solidMixtureProperties/solidMixtureProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidMixtureProperties.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidMixtureProperties.dylib' is up to date. ++ wmake libso basic +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fluidThermo/fluidThermo.C +Making dependency list for source file basicThermo/basicThermo.C +Making dependency list for source file psiThermo/psiThermos.C +Making dependency list for source file psiThermo/psiThermo.C +Making dependency list for source file rhoThermo/rhoThermo.C +Making dependency list for source file rhoThermo/rhoThermos.C +Making dependency list for source file derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/mixedEnergy/mixedEnergyFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/energyJump/energyJump/energyJumpFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/energyJump/energyJumpAMI/energyJumpAMIFvPatchScalarField.C +SOURCE=basicThermo/basicThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicThermo.o +SOURCE=fluidThermo/fluidThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fluidThermo.o +SOURCE=psiThermo/psiThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiThermos.o +SOURCE=psiThermo/psiThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiThermo.o +SOURCE=rhoThermo/rhoThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoThermo.o +SOURCE=rhoThermo/rhoThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoThermos.o +SOURCE=derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedEnergyFvPatchScalarField.o +SOURCE=derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gradientEnergyFvPatchScalarField.o +SOURCE=derivedFvPatchFields/mixedEnergy/mixedEnergyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixedEnergyFvPatchScalarField.o +SOURCE=derivedFvPatchFields/energyJump/energyJump/energyJumpFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/energyJumpFvPatchScalarField.o +SOURCE=derivedFvPatchFields/energyJump/energyJumpAMI/energyJumpAMIFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/energyJumpAMIFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfluidThermophysicalModels.dylib' is up to date. ++ wmake libso reactionThermo +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file mixtures/basicMultiComponentMixture/basicMultiComponentMixture.C +Making dependency list for source file chemistryReaders/chemistryReader/makeChemistryReaders.C +Making dependency list for source file chemistryReaders/chemkinReader/chemkinReader.C +Making dependency list for source file chemistryReaders/chemkinReader/chemkinLexer.L +Making dependency list for source file psiReactionThermo/psiReactionThermos.C +Making dependency list for source file psiReactionThermo/psiReactionThermo.C +Making dependency list for source file psiuReactionThermo/psiuReactionThermo.C +Making dependency list for source file psiuReactionThermo/psiuReactionThermos.C +Making dependency list for source file rhoReactionThermo/rhoReactionThermo.C +Making dependency list for source file rhoReactionThermo/rhoReactionThermos.C +Making dependency list for source file derivedFvPatchFields/fixedUnburntEnthalpy/fixedUnburntEnthalpyFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/gradientUnburntEnthalpy/gradientUnburntEnthalpyFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/mixedUnburntEnthalpy/mixedUnburntEnthalpyFvPatchScalarField.C +SOURCE=chemistryReaders/chemkinReader/chemkinReader.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/chemkinReader.o +SOURCE=chemistryReaders/chemistryReader/makeChemistryReaders.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeChemistryReaders.o +SOURCE=chemistryReaders/chemkinReader/chemkinLexer.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/chemkinLexer.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C -o Make/darwinIntel64Gcc47DPOpt/chemkinLexer.o +SOURCE=mixtures/basicMultiComponentMixture/basicMultiComponentMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicMultiComponentMixture.o +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'int Foam::chemkinReader::lex()': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:35965:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:35965:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:35981:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37418:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37673:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37696:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37709:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37709:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37730:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37755:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37758:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37758:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37785:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37785:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37845:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37846:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37854:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37921:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:37999:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38008:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38030:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38033:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38035:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38160:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38180:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38200:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38203:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38203:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38282:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38294:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38294:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/chemkinLexer.C:38299:17: warning: use of old-style cast [-Wold-style-cast] +SOURCE=psiReactionThermo/psiReactionThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiReactionThermo.o +SOURCE=psiReactionThermo/psiReactionThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiReactionThermos.o +SOURCE=psiuReactionThermo/psiuReactionThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiuReactionThermo.o +SOURCE=psiuReactionThermo/psiuReactionThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiuReactionThermos.o +SOURCE=rhoReactionThermo/rhoReactionThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoReactionThermo.o +SOURCE=rhoReactionThermo/rhoReactionThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoReactionThermos.o +SOURCE=derivedFvPatchFields/fixedUnburntEnthalpy/fixedUnburntEnthalpyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedUnburntEnthalpyFvPatchScalarField.o +SOURCE=derivedFvPatchFields/gradientUnburntEnthalpy/gradientUnburntEnthalpyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gradientUnburntEnthalpyFvPatchScalarField.o +SOURCE=derivedFvPatchFields/mixedUnburntEnthalpy/mixedUnburntEnthalpyFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixedUnburntEnthalpyFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libreactionThermophysicalModels.dylib' is up to date. ++ wmake libso laminarFlameSpeed +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file laminarFlameSpeed/laminarFlameSpeed.C +Making dependency list for source file laminarFlameSpeed/laminarFlameSpeedNew.C +Making dependency list for source file constant/constant.C +Making dependency list for source file Gulders/Gulders.C +Making dependency list for source file GuldersEGR/GuldersEGR.C +Making dependency list for source file RaviPetersen/RaviPetersen.C +SOURCE=constant/constant.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constant.o +SOURCE=Gulders/Gulders.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gulders.o +SOURCE=laminarFlameSpeed/laminarFlameSpeedNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminarFlameSpeedNew.o +SOURCE=laminarFlameSpeed/laminarFlameSpeed.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminarFlameSpeed.o +SOURCE=GuldersEGR/GuldersEGR.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GuldersEGR.o +SOURCE=RaviPetersen/RaviPetersen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RaviPetersen.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblaminarFlameSpeedModels.dylib' is up to date. ++ wmake libso chemistryModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file chemistryModel/psiChemistryModel/psiChemistryModels.C +Making dependency list for source file chemistryModel/basicChemistryModel/basicChemistryModel.C +Making dependency list for source file chemistryModel/psiChemistryModel/psiChemistryModel.C +Making dependency list for source file chemistryModel/rhoChemistryModel/rhoChemistryModel.C +Making dependency list for source file chemistryModel/rhoChemistryModel/rhoChemistryModels.C +Making dependency list for source file chemistrySolver/chemistrySolver/makeChemistrySolvers.C +SOURCE=chemistryModel/basicChemistryModel/basicChemistryModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicChemistryModel.o +SOURCE=chemistryModel/psiChemistryModel/psiChemistryModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiChemistryModel.o +SOURCE=chemistryModel/psiChemistryModel/psiChemistryModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiChemistryModels.o +SOURCE=chemistryModel/rhoChemistryModel/rhoChemistryModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoChemistryModel.o +SOURCE=chemistryModel/rhoChemistryModel/rhoChemistryModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoChemistryModels.o +SOURCE=chemistrySolver/chemistrySolver/makeChemistrySolvers.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/functions/Polynomial -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeChemistrySolvers.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libchemistryModel.dylib' is up to date. ++ wmake libso barotropicCompressibilityModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file linear/linear.C +Making dependency list for source file barotropicCompressibilityModel/barotropicCompressibilityModel.C +Making dependency list for source file barotropicCompressibilityModel/barotropicCompressibilityModelNew.C +Making dependency list for source file Wallis/Wallis.C +Making dependency list for source file Chung/Chung.C +SOURCE=barotropicCompressibilityModel/barotropicCompressibilityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/barotropicCompressibilityModel.o +SOURCE=barotropicCompressibilityModel/barotropicCompressibilityModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/barotropicCompressibilityModelNew.o +SOURCE=Wallis/Wallis.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Wallis.o +SOURCE=linear/linear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linear.o +SOURCE=Chung/Chung.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Chung.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libbarotropicCompressibilityModel.dylib' is up to date. ++ wmake libso SLGThermo +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file SLGThermo/SLGThermo.C +SOURCE=SLGThermo/SLGThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SLGThermo.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libSLGThermo.dylib' is up to date. ++ wmake libso solidThermo +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file solidReactionThermo/solidReactionThermos.C +Making dependency list for source file solidThermo/solidThermo.C +Making dependency list for source file solidThermo/solidThermos.C +Making dependency list for source file solidReactionThermo/solidReactionThermo.C +SOURCE=solidThermo/solidThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidThermos.o +SOURCE=solidThermo/solidThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidThermo.o +SOURCE=solidReactionThermo/solidReactionThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidReactionThermo.o +SOURCE=solidReactionThermo/solidReactionThermos.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidReactionThermos.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidThermo.dylib' is up to date. ++ wmake libso solidChemistryModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file basicSolidChemistryModel/basicSolidChemistryModel.C +Making dependency list for source file basicSolidChemistryModel/basicSolidChemistryModelNew.C +Making dependency list for source file basicSolidChemistryModel/basicSolidChemistryModels.C +Making dependency list for source file solidChemistrySolver/makeSolidChemistrySolvers.C +SOURCE=basicSolidChemistryModel/basicSolidChemistryModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicSolidChemistryModel.o +SOURCE=basicSolidChemistryModel/basicSolidChemistryModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicSolidChemistryModels.o +SOURCE=solidChemistrySolver/makeSolidChemistrySolvers.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeSolidChemistrySolvers.o +SOURCE=basicSolidChemistryModel/basicSolidChemistryModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicSolidChemistryModelNew.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidChemistryModel.dylib' is up to date. ++ wmake libso radiationModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file radiationModel/radiationModel/radiationModel.C +Making dependency list for source file radiationModel/radiationModel/radiationModelNew.C +Making dependency list for source file radiationModel/P1/P1.C +Making dependency list for source file radiationModel/noRadiation/noRadiation.C +Making dependency list for source file radiationModel/fvDOM/fvDOM/fvDOM.C +Making dependency list for source file radiationModel/fvDOM/radiativeIntensityRay/radiativeIntensityRay.C +Making dependency list for source file radiationModel/fvDOM/blackBodyEmission/blackBodyEmission.C +Making dependency list for source file radiationModel/fvDOM/absorptionCoeffs/absorptionCoeffs.C +Making dependency list for source file radiationModel/viewFactor/viewFactor.C +Making dependency list for source file radiationModel/opaqueSolid/opaqueSolid.C +Making dependency list for source file submodels/scatterModel/scatterModel/scatterModel.C +Making dependency list for source file submodels/scatterModel/scatterModel/scatterModelNew.C +Making dependency list for source file submodels/scatterModel/noScatter/noScatter.C +Making dependency list for source file submodels/scatterModel/constantScatter/constantScatter.C +Making dependency list for source file submodels/absorptionEmissionModel/absorptionEmissionModel/absorptionEmissionModel.C +Making dependency list for source file submodels/absorptionEmissionModel/absorptionEmissionModel/absorptionEmissionModelNew.C +Making dependency list for source file submodels/absorptionEmissionModel/noAbsorptionEmission/noAbsorptionEmission.C +Making dependency list for source file submodels/absorptionEmissionModel/constantAbsorptionEmission/constantAbsorptionEmission.C +Making dependency list for source file submodels/absorptionEmissionModel/binaryAbsorptionEmission/binaryAbsorptionEmission.C +Making dependency list for source file submodels/absorptionEmissionModel/greyMeanAbsorptionEmission/greyMeanAbsorptionEmission.C +Making dependency list for source file submodels/absorptionEmissionModel/wideBandAbsorptionEmission/wideBandAbsorptionEmission.C +Making dependency list for source file submodels/absorptionEmissionModel/greyMeanSolidAbsorptionEmission/greyMeanSolidAbsorptionEmission.C +Making dependency list for source file submodels/sootModel/sootModel/sootModel.C +Making dependency list for source file submodels/sootModel/sootModel/sootModelNew.C +Making dependency list for source file submodels/sootModel/mixtureFractionSoot/mixtureFractionSoots.C +Making dependency list for source file submodels/sootModel/noSoot/noSoot.C +Making dependency list for source file derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/radiationCoupledBase/radiationCoupledBase.C +Making dependency list for source file derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.C +SOURCE=radiationModel/radiationModel/radiationModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radiationModelNew.o +SOURCE=radiationModel/radiationModel/radiationModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radiationModel.o +SOURCE=radiationModel/noRadiation/noRadiation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noRadiation.o +SOURCE=radiationModel/P1/P1.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/P1.o +SOURCE=radiationModel/fvDOM/fvDOM/fvDOM.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvDOM.o +SOURCE=radiationModel/fvDOM/radiativeIntensityRay/radiativeIntensityRay.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radiativeIntensityRay.o +SOURCE=radiationModel/fvDOM/blackBodyEmission/blackBodyEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blackBodyEmission.o +SOURCE=radiationModel/fvDOM/absorptionCoeffs/absorptionCoeffs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/absorptionCoeffs.o +SOURCE=radiationModel/viewFactor/viewFactor.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/viewFactor.o +SOURCE=radiationModel/opaqueSolid/opaqueSolid.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/opaqueSolid.o +SOURCE=submodels/scatterModel/scatterModel/scatterModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scatterModel.o +SOURCE=submodels/scatterModel/scatterModel/scatterModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scatterModelNew.o +SOURCE=submodels/scatterModel/noScatter/noScatter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noScatter.o +SOURCE=submodels/scatterModel/constantScatter/constantScatter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantScatter.o +SOURCE=submodels/absorptionEmissionModel/absorptionEmissionModel/absorptionEmissionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/absorptionEmissionModel.o +SOURCE=submodels/absorptionEmissionModel/absorptionEmissionModel/absorptionEmissionModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/absorptionEmissionModelNew.o +SOURCE=submodels/absorptionEmissionModel/noAbsorptionEmission/noAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noAbsorptionEmission.o +SOURCE=submodels/absorptionEmissionModel/constantAbsorptionEmission/constantAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantAbsorptionEmission.o +SOURCE=submodels/absorptionEmissionModel/binaryAbsorptionEmission/binaryAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/binaryAbsorptionEmission.o +SOURCE=submodels/absorptionEmissionModel/greyMeanAbsorptionEmission/greyMeanAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/greyMeanAbsorptionEmission.o +SOURCE=submodels/absorptionEmissionModel/wideBandAbsorptionEmission/wideBandAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wideBandAbsorptionEmission.o +SOURCE=submodels/absorptionEmissionModel/greyMeanSolidAbsorptionEmission/greyMeanSolidAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/greyMeanSolidAbsorptionEmission.o +SOURCE=submodels/sootModel/sootModel/sootModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sootModel.o +SOURCE=submodels/sootModel/sootModel/sootModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sootModelNew.o +SOURCE=submodels/sootModel/mixtureFractionSoot/mixtureFractionSoots.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixtureFractionSoots.o +SOURCE=submodels/sootModel/noSoot/noSoot.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noSoot.o +SOURCE=derivedFvPatchFields/MarshakRadiation/MarshakRadiationFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MarshakRadiationFvPatchScalarField.o +SOURCE=derivedFvPatchFields/MarshakRadiationFixedTemperature/MarshakRadiationFixedTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MarshakRadiationFixedTemperatureFvPatchScalarField.o +SOURCE=derivedFvPatchFields/greyDiffusiveRadiation/greyDiffusiveRadiationMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/greyDiffusiveRadiationMixedFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wideBandDiffusiveRadiation/wideBandDiffusiveRadiationMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wideBandDiffusiveRadiationMixedFvPatchScalarField.o +SOURCE=derivedFvPatchFields/radiationCoupledBase/radiationCoupledBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radiationCoupledBase.o +SOURCE=derivedFvPatchFields/greyDiffusiveViewFactor/greyDiffusiveViewFactorFixedValueFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/greyDiffusiveViewFactorFixedValueFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libradiationModels.dylib' is up to date. +++ transportModels/Allwmake ++ wmake libso twoPhaseMixture +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file twoPhaseMixture/twoPhaseMixture.C +SOURCE=twoPhaseMixture/twoPhaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoPhaseMixture.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtwoPhaseMixture.dylib' is up to date. ++ wmake libso interfaceProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file interfaceProperties.C +Making dependency list for source file interfaceCompression/interfaceCompression.C +SOURCE=interfaceCompression/interfaceCompression.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interfaceCompression.o +SOURCE=interfaceProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interfaceProperties.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libinterfaceProperties.dylib' is up to date. ++ wmake libso twoPhaseProperties +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.C +Making dependency list for source file alphaContactAngle/constantAlphaContactAngle/constantAlphaContactAngleFvPatchScalarField.C +Making dependency list for source file alphaContactAngle/dynamicAlphaContactAngle/dynamicAlphaContactAngleFvPatchScalarField.C +Making dependency list for source file alphaContactAngle/timeVaryingAlphaContactAngle/timeVaryingAlphaContactAngleFvPatchScalarField.C +Making dependency list for source file alphaFixedPressure/alphaFixedPressureFvPatchScalarField.C +SOURCE=alphaContactAngle/constantAlphaContactAngle/constantAlphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantAlphaContactAngleFvPatchScalarField.o +SOURCE=alphaContactAngle/timeVaryingAlphaContactAngle/timeVaryingAlphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeVaryingAlphaContactAngleFvPatchScalarField.o +SOURCE=alphaContactAngle/alphaContactAngle/alphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphaContactAngleFvPatchScalarField.o +SOURCE=alphaContactAngle/dynamicAlphaContactAngle/dynamicAlphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynamicAlphaContactAngleFvPatchScalarField.o +SOURCE=alphaFixedPressure/alphaFixedPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphaFixedPressureFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtwoPhaseProperties.dylib' is up to date. ++ wmake libso incompressible +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file viscosityModels/viscosityModel/viscosityModel.C +Making dependency list for source file viscosityModels/viscosityModel/viscosityModelNew.C +Making dependency list for source file viscosityModels/Newtonian/Newtonian.C +Making dependency list for source file viscosityModels/powerLaw/powerLaw.C +Making dependency list for source file viscosityModels/CrossPowerLaw/CrossPowerLaw.C +Making dependency list for source file viscosityModels/BirdCarreau/BirdCarreau.C +Making dependency list for source file viscosityModels/HerschelBulkley/HerschelBulkley.C +Making dependency list for source file transportModel/transportModel.C +Making dependency list for source file singlePhaseTransportModel/singlePhaseTransportModel.C +Making dependency list for source file incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.C +SOURCE=viscosityModels/viscosityModel/viscosityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/viscosityModel.o +SOURCE=viscosityModels/viscosityModel/viscosityModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/viscosityModelNew.o +SOURCE=viscosityModels/Newtonian/Newtonian.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Newtonian.o +SOURCE=viscosityModels/powerLaw/powerLaw.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/powerLaw.o +SOURCE=viscosityModels/CrossPowerLaw/CrossPowerLaw.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CrossPowerLaw.o +SOURCE=viscosityModels/BirdCarreau/BirdCarreau.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/BirdCarreau.o +SOURCE=viscosityModels/HerschelBulkley/HerschelBulkley.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/HerschelBulkley.o +SOURCE=transportModel/transportModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transportModel.o +SOURCE=singlePhaseTransportModel/singlePhaseTransportModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/singlePhaseTransportModel.o +SOURCE=incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/incompressibleTwoPhaseMixture.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libincompressibleTransportModels.dylib' is up to date. +++ turbulenceModels/Allwmake ++ LES/Allwmake ++ wmakeLnInclude ../incompressible/LES +wmakeLnInclude: linking include files to ../incompressible/LES/lnInclude ++ wmake libso LESfilters +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file LESfilter/LESfilter.C +Making dependency list for source file simpleFilter/simpleFilter.C +Making dependency list for source file laplaceFilter/laplaceFilter.C +Making dependency list for source file anisotropicFilter/anisotropicFilter.C +SOURCE=LESfilter/LESfilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESfilter.o +SOURCE=laplaceFilter/laplaceFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laplaceFilter.o +SOURCE=simpleFilter/simpleFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleFilter.o +SOURCE=anisotropicFilter/anisotropicFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/anisotropicFilter.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libLESfilters.dylib' is up to date. ++ wmake libso LESdeltas +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file LESdelta/LESdelta.C +Making dependency list for source file cubeRootVolDelta/cubeRootVolDelta.C +Making dependency list for source file PrandtlDelta/PrandtlDelta.C +Making dependency list for source file smoothDelta/smoothDelta.C +Making dependency list for source file maxDeltaxyz/maxDeltaxyz.C +SOURCE=LESdelta/LESdelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/LESmodels/isoLESmodels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESdelta.o +SOURCE=cubeRootVolDelta/cubeRootVolDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/LESmodels/isoLESmodels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cubeRootVolDelta.o +SOURCE=PrandtlDelta/PrandtlDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/LESmodels/isoLESmodels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PrandtlDelta.o +SOURCE=smoothDelta/smoothDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/LESmodels/isoLESmodels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/smoothDelta.o +SOURCE=maxDeltaxyz/maxDeltaxyz.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/LESmodels/isoLESmodels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/maxDeltaxyz.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libLESdeltas.dylib' is up to date. ++ incompressible/Allwmake ++ wmake libso turbulenceModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file turbulenceModel.C +Making dependency list for source file laminar/laminar.C +Making dependency list for source file derivedFvPatchFields/atmBoundaryLayerInletVelocity/atmBoundaryLayerInletVelocityFvPatchVectorField.C +Making dependency list for source file derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.C +SOURCE=turbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulenceModel.o +SOURCE=derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentHeatFluxTemperatureFvPatchScalarField.o +SOURCE=laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=derivedFvPatchFields/atmBoundaryLayerInletVelocity/atmBoundaryLayerInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/atmBoundaryLayerInletVelocityFvPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libincompressibleTurbulenceModel.dylib' is up to date. ++ wmake libso RAS +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file RASModel/RASModel.C +Making dependency list for source file RNGkEpsilon/RNGkEpsilon.C +Making dependency list for source file kEpsilon/kEpsilon.C +Making dependency list for source file laminar/laminar.C +Making dependency list for source file realizableKE/realizableKE.C +Making dependency list for source file kOmegaSST/kOmegaSST.C +Making dependency list for source file kOmega/kOmega.C +Making dependency list for source file SpalartAllmaras/SpalartAllmaras.C +Making dependency list for source file LRR/LRR.C +Making dependency list for source file LaunderGibsonRSTM/LaunderGibsonRSTM.C +Making dependency list for source file LaunderSharmaKE/LaunderSharmaKE.C +Making dependency list for source file qZeta/qZeta.C +Making dependency list for source file LienCubicKE/LienCubicKE.C +Making dependency list for source file LienCubicKELowRe/LienCubicKELowRe.C +Making dependency list for source file NonlinearKEShih/NonlinearKEShih.C +Making dependency list for source file LienLeschzinerLowRe/LienLeschzinerLowRe.C +Making dependency list for source file LamBremhorstKE/LamBremhorstKE.C +Making dependency list for source file kkLOmega/kkLOmega.C +Making dependency list for source file v2f/v2f.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/atmBoundaryLayerInletEpsilon/atmBoundaryLayerInletEpsilonFvPatchScalarField.C +Making dependency list for source file backwardsCompatibility/wallFunctions/backwardsCompatibilityWallFunctions.C +SOURCE=RASModel/RASModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RASModel.o +SOURCE=RNGkEpsilon/RNGkEpsilon.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RNGkEpsilon.o +SOURCE=kEpsilon/kEpsilon.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kEpsilon.o +SOURCE=laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=realizableKE/realizableKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/realizableKE.o +SOURCE=kOmega/kOmega.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kOmega.o +SOURCE=kOmegaSST/kOmegaSST.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kOmegaSST.o +SOURCE=SpalartAllmaras/SpalartAllmaras.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmaras.o +SOURCE=LRR/LRR.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LRR.o +SOURCE=LaunderGibsonRSTM/LaunderGibsonRSTM.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LaunderGibsonRSTM.o +SOURCE=LaunderSharmaKE/LaunderSharmaKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LaunderSharmaKE.o +SOURCE=qZeta/qZeta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/qZeta.o +SOURCE=LienCubicKE/LienCubicKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LienCubicKE.o +SOURCE=LienCubicKELowRe/LienCubicKELowRe.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LienCubicKELowRe.o +SOURCE=NonlinearKEShih/NonlinearKEShih.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/NonlinearKEShih.o +SOURCE=LienLeschzinerLowRe/LienLeschzinerLowRe.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LienLeschzinerLowRe.o +SOURCE=LamBremhorstKE/LamBremhorstKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LamBremhorstKE.o +SOURCE=kkLOmega/kkLOmega.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kkLOmega.o +SOURCE=v2f/v2f.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/v2f.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkRoughWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkAtmRoughWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUSpaldingWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUTabulatedWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutURoughWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/omegaWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kqRWallFunctionFvPatchFields.o +SOURCE=derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphatJayatillekeWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/v2WallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthDissipationRateInletFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthFrequencyInletFvPatchScalarField.o +SOURCE=derivedFvPatchFields/atmBoundaryLayerInletEpsilon/atmBoundaryLayerInletEpsilonFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/atmBoundaryLayerInletEpsilonFvPatchScalarField.o +SOURCE=backwardsCompatibility/wallFunctions/backwardsCompatibilityWallFunctions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/backwardsCompatibilityWallFunctions.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libincompressibleRASModels.dylib' is up to date. ++ wmake libso LES +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file incompressibleLESdelta/incompressibleLESdelta.C +Making dependency list for source file vanDriestDelta/vanDriestDelta.C +Making dependency list for source file LESModel/LESModel.C +Making dependency list for source file DESModel/DESModel.C +Making dependency list for source file GenEddyVisc/GenEddyVisc.C +Making dependency list for source file GenSGSStress/GenSGSStress.C +Making dependency list for source file laminar/laminar.C +Making dependency list for source file SpalartAllmaras/SpalartAllmaras.C +Making dependency list for source file SpalartAllmarasDDES/SpalartAllmarasDDES.C +Making dependency list for source file SpalartAllmarasIDDES/SpalartAllmarasIDDES.C +Making dependency list for source file SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.C +Making dependency list for source file oneEqEddy/oneEqEddy.C +Making dependency list for source file homogeneousDynOneEqEddy/homogeneousDynOneEqEddy.C +Making dependency list for source file dynOneEqEddy/dynOneEqEddy.C +Making dependency list for source file Smagorinsky/Smagorinsky.C +Making dependency list for source file homogeneousDynSmagorinsky/homogeneousDynSmagorinsky.C +Making dependency list for source file LRRDiffStress/LRRDiffStress.C +Making dependency list for source file DeardorffDiffStress/DeardorffDiffStress.C +Making dependency list for source file spectEddyVisc/spectEddyVisc.C +Making dependency list for source file dynLagrangian/dynLagrangian.C +Making dependency list for source file kOmegaSSTSAS/kOmegaSSTSAS.C +Making dependency list for source file mixedSmagorinsky/mixedSmagorinsky.C +Making dependency list for source file scaleSimilarity/scaleSimilarity.C +SOURCE=incompressibleLESdelta/incompressibleLESdelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/incompressibleLESdelta.o +SOURCE=DESModel/DESModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DESModel.o +SOURCE=LESModel/LESModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESModel.o +SOURCE=vanDriestDelta/vanDriestDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vanDriestDelta.o +SOURCE=GenEddyVisc/GenEddyVisc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GenEddyVisc.o +SOURCE=GenSGSStress/GenSGSStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GenSGSStress.o +SOURCE=laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=SpalartAllmaras/SpalartAllmaras.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmaras.o +SOURCE=SpalartAllmarasDDES/SpalartAllmarasDDES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmarasDDES.o +SOURCE=SpalartAllmarasIDDES/SpalartAllmarasIDDES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmarasIDDES.o +SOURCE=SpalartAllmarasIDDES/IDDESDelta/IDDESDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IDDESDelta.o +SOURCE=oneEqEddy/oneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oneEqEddy.o +SOURCE=homogeneousDynOneEqEddy/homogeneousDynOneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/homogeneousDynOneEqEddy.o +SOURCE=dynOneEqEddy/dynOneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynOneEqEddy.o +SOURCE=Smagorinsky/Smagorinsky.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Smagorinsky.o +SOURCE=homogeneousDynSmagorinsky/homogeneousDynSmagorinsky.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/homogeneousDynSmagorinsky.o +SOURCE=LRRDiffStress/LRRDiffStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LRRDiffStress.o +SOURCE=DeardorffDiffStress/DeardorffDiffStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DeardorffDiffStress.o +SOURCE=spectEddyVisc/spectEddyVisc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/spectEddyVisc.o +SOURCE=dynLagrangian/dynLagrangian.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dynLagrangian.o +SOURCE=scaleSimilarity/scaleSimilarity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scaleSimilarity.o +SOURCE=mixedSmagorinsky/mixedSmagorinsky.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixedSmagorinsky.o +SOURCE=kOmegaSSTSAS/kOmegaSSTSAS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kOmegaSSTSAS.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libincompressibleLESModels.dylib' is up to date. ++ compressible/Allwmake ++ wmake libso turbulenceModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C +Making dependency list for source file turbulenceModel.C +Making dependency list for source file derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.C +Making dependency list for source file laminar/laminar.C +Making dependency list for source file derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarFields.C +Making dependency list for source file derivedFvPatchFields/totalFlowRateAdvectiveDiffusive/totalFlowRateAdvectiveDiffusiveFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.C +SOURCE=derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/temperatureCoupledBase.o +SOURCE=laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=turbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulenceModel.o +SOURCE=derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentHeatFluxTemperatureFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.o +SOURCE=derivedFvPatchFields/thermalBaffle1D/thermalBaffle1DFvPatchScalarFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermalBaffle1DFvPatchScalarFields.o +SOURCE=derivedFvPatchFields/totalFlowRateAdvectiveDiffusive/totalFlowRateAdvectiveDiffusiveFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/totalFlowRateAdvectiveDiffusiveFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentTemperatureRadCoupledMixed/turbulentTemperatureRadCoupledMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentTemperatureRadCoupledMixedFvPatchScalarField.o +SOURCE=derivedFvPatchFields/externalWallHeatFluxTemperature/externalWallHeatFluxTemperatureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/externalWallHeatFluxTemperatureFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallHeatTransferFvPatchScalarField.o +SOURCE=derivedFvPatchFields/externalCoupledTemperatureMixed/externalCoupledTemperatureMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/externalCoupledTemperatureMixedFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleTurbulenceModel.dylib' is up to date. ++ wmake libso RAS +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file RASModel/RASModel.C +Making dependency list for source file kEpsilon/kEpsilon.C +Making dependency list for source file laminar/laminar.C +Making dependency list for source file RNGkEpsilon/RNGkEpsilon.C +Making dependency list for source file LaunderSharmaKE/LaunderSharmaKE.C +Making dependency list for source file LRR/LRR.C +Making dependency list for source file LaunderGibsonRSTM/LaunderGibsonRSTM.C +Making dependency list for source file realizableKE/realizableKE.C +Making dependency list for source file SpalartAllmaras/SpalartAllmaras.C +Making dependency list for source file v2f/v2f.C +Making dependency list for source file kOmegaSST/kOmegaSST.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutWallFunction/mutWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutkWallFunction/mutkWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutkRoughWallFunction/mutkRoughWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutUWallFunction/mutUWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutURoughWallFunction/mutURoughWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutUSpaldingWallFunction/mutUSpaldingWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/mutWallFunctions/mutLowReWallFunction/mutLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C +Making dependency list for source file backwardsCompatibility/wallFunctions/backwardsCompatibilityWallFunctions.C +SOURCE=laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=RASModel/RASModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RASModel.o +SOURCE=kEpsilon/kEpsilon.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kEpsilon.o +SOURCE=RNGkEpsilon/RNGkEpsilon.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RNGkEpsilon.o +SOURCE=LaunderSharmaKE/LaunderSharmaKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LaunderSharmaKE.o +SOURCE=LRR/LRR.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LRR.o +SOURCE=LaunderGibsonRSTM/LaunderGibsonRSTM.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LaunderGibsonRSTM.o +SOURCE=realizableKE/realizableKE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/realizableKE.o +SOURCE=SpalartAllmaras/SpalartAllmaras.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmaras.o +SOURCE=kOmegaSST/kOmegaSST.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kOmegaSST.o +SOURCE=v2f/v2f.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/v2f.o +SOURCE=derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatWallFunction/alphatWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphatWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphatJayatillekeWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutWallFunction/mutWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutkWallFunction/mutkWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutkWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutkRoughWallFunction/mutkRoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutkRoughWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutUWallFunction/mutUWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutUWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutURoughWallFunction/mutURoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutURoughWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutUSpaldingWallFunction/mutUSpaldingWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutUSpaldingWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/mutWallFunctions/mutLowReWallFunction/mutLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/fWallFunctions/fWallFunction/fWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/omegaWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kqRWallFunctionFvPatchFields.o +SOURCE=derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kLowReWallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/wallFunctions/v2WallFunctions/v2WallFunction/v2WallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/v2WallFunctionFvPatchScalarField.o +SOURCE=derivedFvPatchFields/convectiveHeatTransfer/convectiveHeatTransferFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/convectiveHeatTransferFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthDissipationRateInletFvPatchScalarField.o +SOURCE=derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthFrequencyInletFvPatchScalarField.o +SOURCE=backwardsCompatibility/wallFunctions/backwardsCompatibilityWallFunctions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/backwardsCompatibilityWallFunctions.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleRASModels.dylib' is up to date. ++ wmake libso LES +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file DESModel/DESModel.C +Making dependency list for source file LESModel/LESModel.C +Making dependency list for source file GenEddyVisc/GenEddyVisc.C +Making dependency list for source file GenSGSStress/GenSGSStress.C +Making dependency list for source file lowReOneEqEddy/lowReOneEqEddy.C +Making dependency list for source file Smagorinsky/Smagorinsky.C +Making dependency list for source file oneEqEddy/oneEqEddy.C +Making dependency list for source file homogeneousDynOneEqEddy/homogeneousDynOneEqEddy.C +Making dependency list for source file DeardorffDiffStress/DeardorffDiffStress.C +Making dependency list for source file SpalartAllmaras/SpalartAllmaras.C +Making dependency list for source file compressibleLESdelta/compressibleLESdelta.C +Making dependency list for source file vanDriestDelta/vanDriestDelta.C +SOURCE=GenEddyVisc/GenEddyVisc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GenEddyVisc.o +SOURCE=LESModel/LESModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESModel.o +SOURCE=GenSGSStress/GenSGSStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GenSGSStress.o +SOURCE=DESModel/DESModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DESModel.o +SOURCE=Smagorinsky/Smagorinsky.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Smagorinsky.o +SOURCE=oneEqEddy/oneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oneEqEddy.o +SOURCE=lowReOneEqEddy/lowReOneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lowReOneEqEddy.o +SOURCE=homogeneousDynOneEqEddy/homogeneousDynOneEqEddy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/homogeneousDynOneEqEddy.o +SOURCE=DeardorffDiffStress/DeardorffDiffStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DeardorffDiffStress.o +SOURCE=SpalartAllmaras/SpalartAllmaras.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpalartAllmaras.o +SOURCE=compressibleLESdelta/compressibleLESdelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleLESdelta.o +SOURCE=vanDriestDelta/vanDriestDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vanDriestDelta.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleLESModels.dylib' is up to date. ++ wmake libso derivedFvPatchFields +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fixedShearStress/fixedShearStressFvPatchVectorField.C +Making dependency list for source file porousBafflePressure/porousBafflePressureFvPatchFields.C +SOURCE=fixedShearStress/fixedShearStressFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedShearStressFvPatchVectorField.o +SOURCE=porousBafflePressure/porousBafflePressureFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porousBafflePressureFvPatchFields.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libturbulenceDerivedFvPatchFields.dylib' is up to date. +++ TurbulenceModels/Allwmake ++ wmake libso turbulenceModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file LES/LESdeltas/LESdelta/LESdelta.C +Making dependency list for source file turbulenceModel.C +Making dependency list for source file LES/LESdeltas/cubeRootVolDelta/cubeRootVolDelta.C +Making dependency list for source file LES/LESdeltas/PrandtlDelta/PrandtlDelta.C +Making dependency list for source file LES/LESdeltas/smoothDelta/smoothDelta.C +Making dependency list for source file LES/LESdeltas/maxDeltaxyz/maxDeltaxyz.C +Making dependency list for source file LES/LESfilters/LESfilter/LESfilter.C +Making dependency list for source file LES/LESfilters/simpleFilter/simpleFilter.C +Making dependency list for source file LES/LESfilters/laplaceFilter/laplaceFilter.C +Making dependency list for source file LES/LESfilters/anisotropicFilter/anisotropicFilter.C +Making dependency list for source file derivedFvPatchFields/fixedShearStress/fixedShearStressFvPatchVectorField.C +Making dependency list for source file derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C +Making dependency list for source file RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/atmBoundaryLayerInletEpsilon/atmBoundaryLayerInletEpsilonFvPatchScalarField.C +Making dependency list for source file RAS/derivedFvPatchFields/atmBoundaryLayerInletVelocity/atmBoundaryLayerInletVelocityFvPatchVectorField.C +SOURCE=LES/LESdeltas/cubeRootVolDelta/cubeRootVolDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cubeRootVolDelta.o +SOURCE=turbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulenceModel.o +SOURCE=LES/LESdeltas/LESdelta/LESdelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESdelta.o +SOURCE=LES/LESdeltas/PrandtlDelta/PrandtlDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PrandtlDelta.o +SOURCE=LES/LESdeltas/smoothDelta/smoothDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/smoothDelta.o +SOURCE=LES/LESdeltas/maxDeltaxyz/maxDeltaxyz.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/maxDeltaxyz.o +SOURCE=LES/LESfilters/LESfilter/LESfilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LESfilter.o +SOURCE=LES/LESfilters/simpleFilter/simpleFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleFilter.o +SOURCE=LES/LESfilters/laplaceFilter/laplaceFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laplaceFilter.o +SOURCE=LES/LESfilters/anisotropicFilter/anisotropicFilter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/anisotropicFilter.o +SOURCE=derivedFvPatchFields/fixedShearStress/fixedShearStressFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedShearStressFvPatchVectorField.o +SOURCE=derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porousBafflePressureFvPatchField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutWallFunction/nutWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkWallFunction/nutkWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkRoughWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkAtmRoughWallFunction/nutkAtmRoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutkAtmRoughWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUWallFunction/nutUWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUSpaldingWallFunction/nutUSpaldingWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUSpaldingWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutUTabulatedWallFunction/nutUTabulatedWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutUTabulatedWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutLowReWallFunction/nutLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutLowReWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutURoughWallFunction/nutURoughWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nutURoughWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/epsilonWallFunctions/epsilonLowReWallFunction/epsilonLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/epsilonLowReWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/omegaWallFunctions/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/omegaWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kqRWallFunctionFvPatchFields.o +SOURCE=RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kLowReWallFunction/kLowReWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kLowReWallFunctionFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/turbulentMixingLengthDissipationRateInlet/turbulentMixingLengthDissipationRateInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthDissipationRateInletFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentMixingLengthFrequencyInletFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/atmBoundaryLayerInletEpsilon/atmBoundaryLayerInletEpsilonFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/atmBoundaryLayerInletEpsilonFvPatchScalarField.o +SOURCE=RAS/derivedFvPatchFields/atmBoundaryLayerInletVelocity/atmBoundaryLayerInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/atmBoundaryLayerInletVelocityFvPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libturbulenceModels.dylib' is up to date. ++ wmake libso incompressible +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file incompressibleTurbulenceModels.C +Making dependency list for source file incompressibleTurbulenceModel.C +SOURCE=incompressibleTurbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/incompressibleTurbulenceModel.o +SOURCE=incompressibleTurbulenceModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/incompressibleTurbulenceModels.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libincompressibleTurbulenceModels.dylib' is up to date. ++ wmake libso compressible +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file compressibleTurbulenceModels.C +Making dependency list for source file compressibleTurbulenceModel.C +SOURCE=compressibleTurbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleTurbulenceModel.o +SOURCE=compressibleTurbulenceModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleTurbulenceModels.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleTurbulenceModels.dylib' is up to date. ++ wmakeLnInclude phaseIncompressible +wmakeLnInclude: linking include files to phaseIncompressible/lnInclude ++ wmakeLnInclude phaseCompressible +wmakeLnInclude: linking include files to phaseCompressible/lnInclude +++ wmake libso combustionModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file combustionModel/combustionModel.C +Making dependency list for source file psiCombustionModel/psiCombustionModel/psiCombustionModelNew.C +Making dependency list for source file psiCombustionModel/psiCombustionModel/psiCombustionModel.C +Making dependency list for source file psiCombustionModel/psiThermoCombustion/psiThermoCombustion.C +Making dependency list for source file rhoCombustionModel/rhoCombustionModel/rhoCombustionModel.C +Making dependency list for source file psiCombustionModel/psiChemistryCombustion/psiChemistryCombustion.C +Making dependency list for source file rhoCombustionModel/rhoCombustionModel/rhoCombustionModelNew.C +Making dependency list for source file rhoCombustionModel/rhoThermoCombustion/rhoThermoCombustion.C +Making dependency list for source file rhoCombustionModel/rhoChemistryCombustion/rhoChemistryCombustion.C +Making dependency list for source file diffusion/diffusions.C +Making dependency list for source file infinitelyFastChemistry/infinitelyFastChemistrys.C +Making dependency list for source file PaSR/PaSRs.C +Making dependency list for source file laminar/laminars.C +Making dependency list for source file FSD/reactionRateFlameAreaModels/consumptionSpeed/consumptionSpeed.C +Making dependency list for source file FSD/reactionRateFlameAreaModels/reactionRateFlameArea/reactionRateFlameArea.C +Making dependency list for source file FSD/reactionRateFlameAreaModels/reactionRateFlameArea/reactionRateFlameAreaNew.C +Making dependency list for source file FSD/reactionRateFlameAreaModels/relaxation/relaxation.C +Making dependency list for source file FSD/FSDs.C +Making dependency list for source file noCombustion/noCombustions.C +SOURCE=psiCombustionModel/psiCombustionModel/psiCombustionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiCombustionModel.o +SOURCE=combustionModel/combustionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/combustionModel.o +SOURCE=psiCombustionModel/psiThermoCombustion/psiThermoCombustion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiThermoCombustion.o +SOURCE=psiCombustionModel/psiCombustionModel/psiCombustionModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiCombustionModelNew.o +SOURCE=psiCombustionModel/psiChemistryCombustion/psiChemistryCombustion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/psiChemistryCombustion.o +SOURCE=rhoCombustionModel/rhoCombustionModel/rhoCombustionModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoCombustionModelNew.o +SOURCE=rhoCombustionModel/rhoCombustionModel/rhoCombustionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoCombustionModel.o +SOURCE=rhoCombustionModel/rhoThermoCombustion/rhoThermoCombustion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoThermoCombustion.o +SOURCE=rhoCombustionModel/rhoChemistryCombustion/rhoChemistryCombustion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoChemistryCombustion.o +SOURCE=diffusion/diffusions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diffusions.o +SOURCE=infinitelyFastChemistry/infinitelyFastChemistrys.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/infinitelyFastChemistrys.o +SOURCE=PaSR/PaSRs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PaSRs.o +SOURCE=laminar/laminars.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminars.o +SOURCE=FSD/reactionRateFlameAreaModels/consumptionSpeed/consumptionSpeed.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/consumptionSpeed.o +SOURCE=FSD/reactionRateFlameAreaModels/reactionRateFlameArea/reactionRateFlameArea.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactionRateFlameArea.o +SOURCE=FSD/reactionRateFlameAreaModels/reactionRateFlameArea/reactionRateFlameAreaNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactionRateFlameAreaNew.o +SOURCE=FSD/reactionRateFlameAreaModels/relaxation/relaxation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/relaxation.o +SOURCE=FSD/FSDs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/FSDs.o +SOURCE=noCombustion/noCombustions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/ -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESfilters/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noCombustions.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcombustionModels.dylib' is up to date. +++ regionModels/Allwmake ++ wmake libso regionModel +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file regionModel/regionModel.C +Making dependency list for source file singleLayerRegion/singleLayerRegion.C +Making dependency list for source file regionModel1D/regionModel1D.C +Making dependency list for source file derivedFvPatches/mappedVariableThicknessWall/mappedVariableThicknessWallFvPatch.C +Making dependency list for source file regionProperties/regionProperties.C +Making dependency list for source file regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObject.C +Making dependency list for source file regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObjectNew.C +Making dependency list for source file regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObjectList.C +SOURCE=regionModel/regionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionModel.o +SOURCE=singleLayerRegion/singleLayerRegion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/singleLayerRegion.o +SOURCE=regionModel1D/regionModel1D.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionModel1D.o +SOURCE=derivedFvPatches/mappedVariableThicknessWall/mappedVariableThicknessWallFvPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedVariableThicknessWallFvPatch.o +SOURCE=regionProperties/regionProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionProperties.o +SOURCE=regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionModelFunctionObject.o +SOURCE=regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObjectNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionModelFunctionObjectNew.o +SOURCE=regionModelFunctionObject/regionModelFunctionObject/regionModelFunctionObjectList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionModelFunctionObjectList.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libregionModels.dylib' is up to date. ++ wmake libso pyrolysisModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file pyrolysisModel/pyrolysisModel.C +Making dependency list for source file pyrolysisModel/pyrolysisModelNew.C +Making dependency list for source file reactingOneDim/reactingOneDim.C +Making dependency list for source file noPyrolysis/noPyrolysis.C +Making dependency list for source file pyrolysisModel/pyrolysisModelCollection.C +SOURCE=pyrolysisModel/pyrolysisModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pyrolysisModelNew.o +SOURCE=reactingOneDim/reactingOneDim.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingOneDim.o +SOURCE=pyrolysisModel/pyrolysisModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pyrolysisModel.o +SOURCE=noPyrolysis/noPyrolysis.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noPyrolysis.o +SOURCE=pyrolysisModel/pyrolysisModelCollection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pyrolysisModelCollection.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libpyrolysisModels.dylib' is up to date. ++ wmake libso surfaceFilmModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file surfaceFilmModel/surfaceFilmModel.C +Making dependency list for source file kinematicSingleLayer/kinematicSingleLayer.C +Making dependency list for source file surfaceFilmModel/surfaceFilmModelNew.C +Making dependency list for source file noFilm/noFilm.C +Making dependency list for source file thermoSingleLayer/thermoSingleLayer.C +Making dependency list for source file submodels/filmSubModelBase.C +Making dependency list for source file submodels/kinematic/force/force/force.C +Making dependency list for source file submodels/kinematic/force/force/forceNew.C +Making dependency list for source file submodels/kinematic/force/forceList/forceList.C +Making dependency list for source file submodels/kinematic/force/contactAngleForce/contactAngleForce.C +Making dependency list for source file submodels/kinematic/injectionModel/injectionModel/injectionModel.C +Making dependency list for source file submodels/kinematic/force/thermocapillaryForce/thermocapillaryForce.C +Making dependency list for source file submodels/kinematic/injectionModel/injectionModel/injectionModelNew.C +Making dependency list for source file submodels/kinematic/injectionModel/injectionModelList/injectionModelList.C +Making dependency list for source file submodels/kinematic/injectionModel/drippingInjection/drippingInjection.C +Making dependency list for source file submodels/kinematic/injectionModel/removeInjection/removeInjection.C +Making dependency list for source file submodels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C +Making dependency list for source file submodels/kinematic/filmThermoModel/filmThermoModel/filmThermoModel.C +Making dependency list for source file submodels/kinematic/filmThermoModel/filmThermoModel/filmThermoModelNew.C +Making dependency list for source file submodels/kinematic/filmThermoModel/constantFilmThermo/constantFilmThermo.C +Making dependency list for source file submodels/kinematic/filmThermoModel/liquidFilmThermo/liquidFilmThermo.C +Making dependency list for source file submodels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModel.C +Making dependency list for source file submodels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModelNew.C +Making dependency list for source file submodels/kinematic/filmTurbulenceModel/laminar/laminar.C +Making dependency list for source file submodels/thermo/phaseChangeModel/phaseChangeModel/phaseChangeModel.C +Making dependency list for source file submodels/thermo/phaseChangeModel/phaseChangeModel/phaseChangeModelNew.C +Making dependency list for source file submodels/thermo/phaseChangeModel/noPhaseChange/noPhaseChange.C +Making dependency list for source file submodels/thermo/phaseChangeModel/standardPhaseChange/standardPhaseChange.C +Making dependency list for source file submodels/thermo/phaseChangeModel/solidification/solidification.C +Making dependency list for source file submodels/thermo/heatTransferModel/heatTransferModel/heatTransferModel.C +Making dependency list for source file submodels/thermo/heatTransferModel/heatTransferModel/heatTransferModelNew.C +Making dependency list for source file submodels/thermo/heatTransferModel/constantHeatTransfer/constantHeatTransfer.C +Making dependency list for source file submodels/thermo/heatTransferModel/mappedConvectiveHeatTransfer/mappedConvectiveHeatTransfer.C +Making dependency list for source file submodels/thermo/filmRadiationModel/filmRadiationModel/filmRadiationModel.C +Making dependency list for source file submodels/thermo/filmRadiationModel/filmRadiationModel/filmRadiationModelNew.C +Making dependency list for source file submodels/thermo/filmRadiationModel/noRadiation/noRadiation.C +Making dependency list for source file submodels/thermo/filmRadiationModel/constantRadiation/constantRadiation.C +Making dependency list for source file submodels/thermo/filmRadiationModel/primaryRadiation/primaryRadiation.C +Making dependency list for source file submodels/thermo/filmRadiationModel/standardRadiation/standardRadiation.C +Making dependency list for source file submodels/thermo/filmViscosityModel/filmViscosityModel/filmViscosityModel.C +Making dependency list for source file submodels/thermo/filmViscosityModel/constantViscosity/constantViscosity.C +Making dependency list for source file submodels/thermo/filmViscosityModel/filmViscosityModel/filmViscosityModelNew.C +Making dependency list for source file submodels/thermo/filmViscosityModel/liquidViscosity/liquidViscosity.C +Making dependency list for source file submodels/thermo/filmViscosityModel/thixotropicViscosity/thixotropicViscosity.C +Making dependency list for source file derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.C +Making dependency list for source file derivedFvPatchFields/inclinedFilmNusseltHeight/inclinedFilmNusseltHeightFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/inclinedFilmNusseltInletVelocity/inclinedFilmNusseltInletVelocityFvPatchVectorField.C +SOURCE=surfaceFilmModel/surfaceFilmModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFilmModelNew.o +SOURCE=surfaceFilmModel/surfaceFilmModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFilmModel.o +SOURCE=noFilm/noFilm.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noFilm.o +SOURCE=kinematicSingleLayer/kinematicSingleLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kinematicSingleLayer.o +SOURCE=thermoSingleLayer/thermoSingleLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoSingleLayer.o +SOURCE=submodels/filmSubModelBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmSubModelBase.o +SOURCE=submodels/kinematic/force/force/force.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/force.o +SOURCE=submodels/kinematic/force/force/forceNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forceNew.o +SOURCE=submodels/kinematic/force/forceList/forceList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forceList.o +SOURCE=submodels/kinematic/force/contactAngleForce/contactAngleForce.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/contactAngleForce.o +SOURCE=submodels/kinematic/force/thermocapillaryForce/thermocapillaryForce.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermocapillaryForce.o +SOURCE=submodels/kinematic/injectionModel/injectionModel/injectionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/injectionModel.o +SOURCE=submodels/kinematic/injectionModel/injectionModel/injectionModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/injectionModelNew.o +SOURCE=submodels/kinematic/injectionModel/injectionModelList/injectionModelList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/injectionModelList.o +SOURCE=submodels/kinematic/injectionModel/drippingInjection/drippingInjection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/drippingInjection.o +SOURCE=submodels/kinematic/injectionModel/removeInjection/removeInjection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeInjection.o +SOURCE=submodels/kinematic/injectionModel/curvatureSeparation/curvatureSeparation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/curvatureSeparation.o +SOURCE=submodels/kinematic/filmThermoModel/filmThermoModel/filmThermoModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmThermoModel.o +SOURCE=submodels/kinematic/filmThermoModel/filmThermoModel/filmThermoModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmThermoModelNew.o +SOURCE=submodels/kinematic/filmThermoModel/constantFilmThermo/constantFilmThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantFilmThermo.o +SOURCE=submodels/kinematic/filmThermoModel/liquidFilmThermo/liquidFilmThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/liquidFilmThermo.o +SOURCE=submodels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmTurbulenceModel.o +SOURCE=submodels/kinematic/filmTurbulenceModel/filmTurbulenceModel/filmTurbulenceModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmTurbulenceModelNew.o +SOURCE=submodels/kinematic/filmTurbulenceModel/laminar/laminar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laminar.o +SOURCE=submodels/thermo/phaseChangeModel/phaseChangeModel/phaseChangeModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseChangeModel.o +SOURCE=submodels/thermo/phaseChangeModel/phaseChangeModel/phaseChangeModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseChangeModelNew.o +SOURCE=submodels/thermo/phaseChangeModel/noPhaseChange/noPhaseChange.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noPhaseChange.o +SOURCE=submodels/thermo/phaseChangeModel/standardPhaseChange/standardPhaseChange.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/standardPhaseChange.o +SOURCE=submodels/thermo/phaseChangeModel/solidification/solidification.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidification.o +SOURCE=submodels/thermo/heatTransferModel/heatTransferModel/heatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/heatTransferModel.o +SOURCE=submodels/thermo/heatTransferModel/heatTransferModel/heatTransferModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/heatTransferModelNew.o +SOURCE=submodels/thermo/heatTransferModel/constantHeatTransfer/constantHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantHeatTransfer.o +SOURCE=submodels/thermo/heatTransferModel/mappedConvectiveHeatTransfer/mappedConvectiveHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mappedConvectiveHeatTransfer.o +SOURCE=submodels/thermo/filmRadiationModel/filmRadiationModel/filmRadiationModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmRadiationModel.o +SOURCE=submodels/thermo/filmRadiationModel/filmRadiationModel/filmRadiationModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmRadiationModelNew.o +SOURCE=submodels/thermo/filmRadiationModel/noRadiation/noRadiation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noRadiation.o +SOURCE=submodels/thermo/filmRadiationModel/constantRadiation/constantRadiation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantRadiation.o +SOURCE=submodels/thermo/filmRadiationModel/primaryRadiation/primaryRadiation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/primaryRadiation.o +SOURCE=submodels/thermo/filmRadiationModel/standardRadiation/standardRadiation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/standardRadiation.o +SOURCE=submodels/thermo/filmViscosityModel/filmViscosityModel/filmViscosityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmViscosityModel.o +SOURCE=submodels/thermo/filmViscosityModel/filmViscosityModel/filmViscosityModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmViscosityModelNew.o +SOURCE=submodels/thermo/filmViscosityModel/constantViscosity/constantViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantViscosity.o +SOURCE=submodels/thermo/filmViscosityModel/liquidViscosity/liquidViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/liquidViscosity.o +SOURCE=submodels/thermo/filmViscosityModel/thixotropicViscosity/thixotropicViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thixotropicViscosity.o +SOURCE=derivedFvPatchFields/filmHeightInletVelocity/filmHeightInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmHeightInletVelocityFvPatchVectorField.o +SOURCE=derivedFvPatchFields/inclinedFilmNusseltHeight/inclinedFilmNusseltHeightFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inclinedFilmNusseltHeightFvPatchScalarField.o +SOURCE=derivedFvPatchFields/inclinedFilmNusseltInletVelocity/inclinedFilmNusseltInletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inclinedFilmNusseltInletVelocityFvPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsurfaceFilmModels.dylib' is up to date. ++ wmake libso surfaceFilmModels/derivedFvPatchFields/wallFunctions +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file mutkFilmWallFunction/mutkFilmWallFunctionFvPatchScalarField.C +Making dependency list for source file alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.C +SOURCE=mutkFilmWallFunction/mutkFilmWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mutkFilmWallFunctionFvPatchScalarField.o +SOURCE=alphatFilmWallFunction/alphatFilmWallFunctionFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphatFilmWallFunctionFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsurfaceFilmDerivedFvPatchFields.dylib' is up to date. ++ wmake libso thermalBaffleModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file thermalBaffleModel/thermalBaffleModel.C +Making dependency list for source file thermalBaffle/thermalBaffle.C +Making dependency list for source file thermalBaffleModel/thermalBaffleModelNew.C +Making dependency list for source file noThermo/noThermo.C +Making dependency list for source file derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C +SOURCE=thermalBaffleModel/thermalBaffleModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermalBaffleModelNew.o +SOURCE=thermalBaffleModel/thermalBaffleModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermalBaffleModel.o +SOURCE=noThermo/noThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noThermo.o +SOURCE=thermalBaffle/thermalBaffle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermalBaffle.o +SOURCE=derivedFvPatchFields/thermalBaffle/thermalBaffleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermalBaffleFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libthermalBaffleModels.dylib' is up to date. ++ wmake libso regionCoupling +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.C +Making dependency list for source file derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.C +SOURCE=derivedFvPatchFields/filmPyrolysisVelocityCoupled/filmPyrolysisVelocityCoupledFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solid/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/pyrolysisModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmPyrolysisVelocityCoupledFvPatchVectorField.o +SOURCE=derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solid/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/pyrolysisModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.o +SOURCE=derivedFvPatchFields/filmPyrolysisTemperatureCoupled/filmPyrolysisTemperatureCoupledFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/AMIInterpolation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solid/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidSpecie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/pyrolysisModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/filmPyrolysisTemperatureCoupledFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libregionCoupling.dylib' is up to date. +++ lagrangian/Allwmake ++ wmake libso distributionModels +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdistributionModels.dylib' is up to date. ++ wmake libso basic +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblagrangian.dylib' is up to date. ++ wmake libso solidParticle +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file solidParticleIO.C +Making dependency list for source file solidParticle.C +Making dependency list for source file solidParticleCloud.C +SOURCE=solidParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidParticle.o +SOURCE=solidParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidParticleCloud.o +SOURCE=solidParticleIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidParticleIO.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsolidParticle.dylib' is up to date. ++ wmake libso intermediate +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file clouds/baseClasses/kinematicCloud/kinematicCloud.C +Making dependency list for source file clouds/baseClasses/thermoCloud/thermoCloud.C +Making dependency list for source file clouds/baseClasses/reactingCloud/reactingCloud.C +Making dependency list for source file clouds/baseClasses/reactingMultiphaseCloud/reactingMultiphaseCloud.C +Making dependency list for source file parcels/derived/basicKinematicParcel/defineBasicKinematicParcel.C +Making dependency list for source file parcels/derived/basicKinematicParcel/makeBasicKinematicParcelSubmodels.C +Making dependency list for source file parcels/derived/basicKinematicCollidingParcel/defineBasicKinematicCollidingParcel.C +Making dependency list for source file parcels/derived/basicKinematicCollidingParcel/makeBasicKinematicCollidingParcelSubmodels.C +Making dependency list for source file parcels/derived/basicThermoParcel/defineBasicThermoParcel.C +Making dependency list for source file parcels/derived/basicThermoParcel/makeBasicThermoParcelSubmodels.C +Making dependency list for source file parcels/derived/basicReactingParcel/defineBasicReactingParcel.C +Making dependency list for source file parcels/derived/basicReactingParcel/makeBasicReactingParcelSubmodels.C +Making dependency list for source file parcels/derived/basicReactingMultiphaseParcel/defineBasicReactingMultiphaseParcel.C +Making dependency list for source file parcels/derived/basicReactingMultiphaseParcel/makeBasicReactingMultiphaseParcelSubmodels.C +Making dependency list for source file parcels/derived/basicKinematicMPPICParcel/defineBasicKinematicMPPICParcel.C +Making dependency list for source file parcels/derived/basicKinematicMPPICParcel/makeBasicKinematicMPPICParcelSubmodels.C +Making dependency list for source file submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C +Making dependency list for source file submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C +Making dependency list for source file submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionData.C +Making dependency list for source file submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C +Making dependency list for source file submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionData.C +Making dependency list for source file submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionDataIO.C +Making dependency list for source file submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionDataIOList.C +Making dependency list for source file submodels/Kinematic/InjectionModel/PatchInjection/patchInjectionBase.C +Making dependency list for source file submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionData.C +Making dependency list for source file submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionDataIO.C +Making dependency list for source file submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionDataIOList.C +Making dependency list for source file submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionData.C +Making dependency list for source file submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionDataIO.C +Making dependency list for source file submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionDataIOList.C +Making dependency list for source file submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionData.C +Making dependency list for source file submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionDataIO.C +Making dependency list for source file submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionDataIOList.C +Making dependency list for source file submodels/MPPIC/ParticleStressModels/ParticleStressModel/ParticleStressModel.C +Making dependency list for source file submodels/MPPIC/ParticleStressModels/HarrisCrighton/HarrisCrighton.C +Making dependency list for source file submodels/MPPIC/ParticleStressModels/Lun/Lun.C +Making dependency list for source file submodels/MPPIC/ParticleStressModels/exponential/exponential.C +Making dependency list for source file submodels/MPPIC/CorrectionLimitingMethods/CorrectionLimitingMethod/CorrectionLimitingMethod.C +Making dependency list for source file submodels/MPPIC/CorrectionLimitingMethods/noCorrectionLimiting/noCorrectionLimiting.C +Making dependency list for source file submodels/MPPIC/CorrectionLimitingMethods/absolute/absolute.C +Making dependency list for source file submodels/MPPIC/CorrectionLimitingMethods/relative/relative.C +Making dependency list for source file submodels/MPPIC/TimeScaleModels/TimeScaleModel/TimeScaleModel.C +Making dependency list for source file submodels/MPPIC/TimeScaleModels/equilibrium/equilibrium.C +Making dependency list for source file submodels/MPPIC/TimeScaleModels/nonEquilibrium/nonEquilibrium.C +Making dependency list for source file submodels/MPPIC/TimeScaleModels/isotropic/isotropic.C +Making dependency list for source file IntegrationScheme/makeIntegrationSchemes.C +Making dependency list for source file phaseProperties/phaseProperties/phaseProperties.C +Making dependency list for source file phaseProperties/phaseProperties/phasePropertiesIO.C +Making dependency list for source file phaseProperties/phasePropertiesList/phasePropertiesList.C +Making dependency list for source file clouds/Templates/KinematicCloud/cloudSolution/cloudSolution.C +Making dependency list for source file submodels/MPPIC/AveragingMethods/makeAveragingMethods.C +SOURCE=clouds/baseClasses/kinematicCloud/kinematicCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kinematicCloud.o +SOURCE=clouds/baseClasses/thermoCloud/thermoCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoCloud.o +SOURCE=clouds/baseClasses/reactingCloud/reactingCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingCloud.o +SOURCE=clouds/baseClasses/reactingMultiphaseCloud/reactingMultiphaseCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingMultiphaseCloud.o +SOURCE=parcels/derived/basicKinematicParcel/defineBasicKinematicParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicKinematicParcel.o +SOURCE=parcels/derived/basicKinematicParcel/makeBasicKinematicParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicKinematicParcelSubmodels.o +SOURCE=parcels/derived/basicKinematicCollidingParcel/defineBasicKinematicCollidingParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicKinematicCollidingParcel.o +SOURCE=parcels/derived/basicKinematicCollidingParcel/makeBasicKinematicCollidingParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicKinematicCollidingParcelSubmodels.o +SOURCE=parcels/derived/basicThermoParcel/defineBasicThermoParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicThermoParcel.o +SOURCE=parcels/derived/basicThermoParcel/makeBasicThermoParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicThermoParcelSubmodels.o +SOURCE=parcels/derived/basicReactingParcel/defineBasicReactingParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicReactingParcel.o +SOURCE=parcels/derived/basicReactingParcel/makeBasicReactingParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicReactingParcelSubmodels.o +SOURCE=parcels/derived/basicReactingMultiphaseParcel/defineBasicReactingMultiphaseParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicReactingMultiphaseParcel.o +SOURCE=parcels/derived/basicReactingMultiphaseParcel/makeBasicReactingMultiphaseParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicReactingMultiphaseParcelSubmodels.o +SOURCE=parcels/derived/basicKinematicMPPICParcel/defineBasicKinematicMPPICParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicKinematicMPPICParcel.o +SOURCE=parcels/derived/basicKinematicMPPICParcel/makeBasicKinematicMPPICParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicKinematicMPPICParcelSubmodels.o +SOURCE=submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudAbsorptionEmission.o +SOURCE=submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudScatter.o +SOURCE=submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchInteractionData.o +SOURCE=submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchInteractionDataList.o +SOURCE=submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kinematicParcelInjectionData.o +SOURCE=submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionDataIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kinematicParcelInjectionDataIO.o +SOURCE=submodels/Kinematic/InjectionModel/KinematicLookupTableInjection/kinematicParcelInjectionDataIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kinematicParcelInjectionDataIOList.o +SOURCE=submodels/Kinematic/InjectionModel/PatchInjection/patchInjectionBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchInjectionBase.o +SOURCE=submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoParcelInjectionData.o +SOURCE=submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionDataIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoParcelInjectionDataIO.o +SOURCE=submodels/Thermodynamic/InjectionModel/ThermoLookupTableInjection/thermoParcelInjectionDataIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoParcelInjectionDataIOList.o +SOURCE=submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingParcelInjectionData.o +SOURCE=submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionDataIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingParcelInjectionDataIO.o +SOURCE=submodels/Reacting/InjectionModel/ReactingLookupTableInjection/reactingParcelInjectionDataIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingParcelInjectionDataIOList.o +SOURCE=submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingMultiphaseParcelInjectionData.o +SOURCE=submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionDataIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingMultiphaseParcelInjectionDataIO.o +SOURCE=submodels/ReactingMultiphase/InjectionModel/ReactingMultiphaseLookupTableInjection/reactingMultiphaseParcelInjectionDataIOList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingMultiphaseParcelInjectionDataIOList.o +SOURCE=submodels/MPPIC/ParticleStressModels/ParticleStressModel/ParticleStressModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ParticleStressModel.o +SOURCE=submodels/MPPIC/ParticleStressModels/HarrisCrighton/HarrisCrighton.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/HarrisCrighton.o +SOURCE=submodels/MPPIC/ParticleStressModels/Lun/Lun.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Lun.o +SOURCE=submodels/MPPIC/ParticleStressModels/exponential/exponential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/exponential.o +SOURCE=submodels/MPPIC/CorrectionLimitingMethods/CorrectionLimitingMethod/CorrectionLimitingMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CorrectionLimitingMethod.o +SOURCE=submodels/MPPIC/CorrectionLimitingMethods/noCorrectionLimiting/noCorrectionLimiting.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noCorrectionLimiting.o +SOURCE=submodels/MPPIC/CorrectionLimitingMethods/absolute/absolute.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/absolute.o +SOURCE=submodels/MPPIC/CorrectionLimitingMethods/relative/relative.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/relative.o +SOURCE=submodels/MPPIC/TimeScaleModels/TimeScaleModel/TimeScaleModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TimeScaleModel.o +SOURCE=submodels/MPPIC/TimeScaleModels/equilibrium/equilibrium.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/equilibrium.o +SOURCE=submodels/MPPIC/TimeScaleModels/nonEquilibrium/nonEquilibrium.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonEquilibrium.o +SOURCE=submodels/MPPIC/TimeScaleModels/isotropic/isotropic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/isotropic.o +SOURCE=IntegrationScheme/makeIntegrationSchemes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeIntegrationSchemes.o +SOURCE=phaseProperties/phaseProperties/phaseProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseProperties.o +SOURCE=phaseProperties/phaseProperties/phasePropertiesIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phasePropertiesIO.o +SOURCE=phaseProperties/phasePropertiesList/phasePropertiesList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phasePropertiesList.o +SOURCE=clouds/Templates/KinematicCloud/cloudSolution/cloudSolution.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudSolution.o +SOURCE=submodels/MPPIC/AveragingMethods/makeAveragingMethods.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeAveragingMethods.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblagrangianIntermediate.dylib' is up to date. ++ wmake libso turbulence +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file parcels/derived/basicKinematicCollidingParcel/makeBasicKinematicCollidingParcelSubmodels.C +Making dependency list for source file parcels/derived/basicThermoParcel/makeBasicThermoParcelSubmodels.C +Making dependency list for source file parcels/derived/basicKinematicParcel/makeBasicKinematicParcelSubmodels.C +Making dependency list for source file parcels/derived/basicReactingParcel/makeBasicReactingParcelSubmodels.C +Making dependency list for source file parcels/derived/basicReactingMultiphaseParcel/makeBasicReactingMultiphaseParcelSubmodels.C +SOURCE=parcels/derived/basicKinematicParcel/makeBasicKinematicParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicKinematicParcelSubmodels.o +SOURCE=parcels/derived/basicKinematicCollidingParcel/makeBasicKinematicCollidingParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicKinematicCollidingParcelSubmodels.o +SOURCE=parcels/derived/basicReactingParcel/makeBasicReactingParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicReactingParcelSubmodels.o +SOURCE=parcels/derived/basicThermoParcel/makeBasicThermoParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicThermoParcelSubmodels.o +SOURCE=parcels/derived/basicReactingMultiphaseParcel/makeBasicReactingMultiphaseParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicReactingMultiphaseParcelSubmodels.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblagrangianTurbulence.dylib' is up to date. ++ wmake libso spray +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file clouds/baseClasses/sprayCloud/sprayCloud.C +Making dependency list for source file parcels/derived/basicSprayParcel/defineBasicSprayParcel.C +Making dependency list for source file parcels/derived/basicSprayParcel/makeBasicSprayParcelSubmodels.C +SOURCE=parcels/derived/basicSprayParcel/makeBasicSprayParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/turbulence/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeBasicSprayParcelSubmodels.o +SOURCE=parcels/derived/basicSprayParcel/defineBasicSprayParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/turbulence/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineBasicSprayParcel.o +SOURCE=clouds/baseClasses/sprayCloud/sprayCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/turbulence/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sprayCloud.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/liblagrangianSpray.dylib' is up to date. ++ wmake libso dsmc +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file parcels/derived/dsmcParcel/dsmcParcel.C +Making dependency list for source file clouds/baseClasses/DsmcBaseCloud/DsmcBaseCloud.C +Making dependency list for source file parcels/derived/dsmcParcel/defineDsmcParcel.C +Making dependency list for source file parcels/derived/dsmcParcel/makeDsmcParcelBinaryCollisionModels.C +Making dependency list for source file parcels/derived/dsmcParcel/makeDsmcParcelWallInteractionModels.C +Making dependency list for source file parcels/derived/dsmcParcel/makeDsmcParcelInflowBoundaryModels.C +SOURCE=parcels/derived/dsmcParcel/dsmcParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcParcel.o +SOURCE=parcels/derived/dsmcParcel/defineDsmcParcel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/defineDsmcParcel.o +SOURCE=parcels/derived/dsmcParcel/makeDsmcParcelBinaryCollisionModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeDsmcParcelBinaryCollisionModels.o +SOURCE=clouds/baseClasses/DsmcBaseCloud/DsmcBaseCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DsmcBaseCloud.o +SOURCE=parcels/derived/dsmcParcel/makeDsmcParcelWallInteractionModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeDsmcParcelWallInteractionModels.o +SOURCE=parcels/derived/dsmcParcel/makeDsmcParcelInflowBoundaryModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeDsmcParcelInflowBoundaryModels.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libdsmc.dylib' is up to date. ++ wmake libso coalCombustion +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file coalCloudList/coalCloudList.C +Making dependency list for source file coalParcel/makeCoalParcelSubmodels.C +SOURCE=coalParcel/makeCoalParcelSubmodels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/makeCoalParcelSubmodels.o +SOURCE=coalCloudList/coalCloudList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coalCloudList.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcoalCombustion.dylib' is up to date. ++ molecularDynamics/Allwmake ++ wmake libso potential +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file potential/potential.C +Making dependency list for source file pairPotential/pairPotentialList/pairPotentialList.C +Making dependency list for source file pairPotential/basic/pairPotential.C +Making dependency list for source file pairPotential/basic/pairPotentialIO.C +Making dependency list for source file pairPotential/basic/pairPotentialNew.C +Making dependency list for source file pairPotential/derived/lennardJones/lennardJones.C +Making dependency list for source file pairPotential/derived/maitlandSmith/maitlandSmith.C +Making dependency list for source file pairPotential/derived/azizChen/azizChen.C +Making dependency list for source file pairPotential/derived/exponentialRepulsion/exponentialRepulsion.C +Making dependency list for source file pairPotential/derived/coulomb/coulomb.C +Making dependency list for source file pairPotential/derived/dampedCoulomb/dampedCoulomb.C +Making dependency list for source file pairPotential/derived/noInteraction/noInteraction.C +Making dependency list for source file energyScalingFunction/basic/energyScalingFunction.C +Making dependency list for source file energyScalingFunction/basic/energyScalingFunctionNew.C +Making dependency list for source file energyScalingFunction/derived/shifted/shifted.C +Making dependency list for source file energyScalingFunction/derived/shiftedForce/shiftedForce.C +Making dependency list for source file energyScalingFunction/derived/noScaling/noScaling.C +Making dependency list for source file energyScalingFunction/derived/sigmoid/sigmoid.C +Making dependency list for source file energyScalingFunction/derived/doubleSigmoid/doubleSigmoid.C +Making dependency list for source file tetherPotential/tetherPotentialList/tetherPotentialList.C +Making dependency list for source file tetherPotential/basic/tetherPotential.C +Making dependency list for source file tetherPotential/basic/tetherPotentialNew.C +Making dependency list for source file tetherPotential/derived/harmonicSpring/harmonicSpring.C +Making dependency list for source file tetherPotential/derived/restrainedHarmonicSpring/restrainedHarmonicSpring.C +Making dependency list for source file tetherPotential/derived/pitchForkRing/pitchForkRing.C +Making dependency list for source file electrostaticPotential/electrostaticPotential.C +SOURCE=potential/potential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/potential.o +SOURCE=pairPotential/pairPotentialList/pairPotentialList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pairPotentialList.o +SOURCE=pairPotential/basic/pairPotential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pairPotential.o +SOURCE=pairPotential/basic/pairPotentialIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pairPotentialIO.o +SOURCE=pairPotential/basic/pairPotentialNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pairPotentialNew.o +SOURCE=pairPotential/derived/lennardJones/lennardJones.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lennardJones.o +SOURCE=pairPotential/derived/maitlandSmith/maitlandSmith.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/maitlandSmith.o +SOURCE=pairPotential/derived/azizChen/azizChen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/azizChen.o +SOURCE=pairPotential/derived/exponentialRepulsion/exponentialRepulsion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/exponentialRepulsion.o +SOURCE=pairPotential/derived/coulomb/coulomb.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coulomb.o +SOURCE=pairPotential/derived/dampedCoulomb/dampedCoulomb.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dampedCoulomb.o +SOURCE=pairPotential/derived/noInteraction/noInteraction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noInteraction.o +SOURCE=energyScalingFunction/basic/energyScalingFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/energyScalingFunction.o +SOURCE=energyScalingFunction/basic/energyScalingFunctionNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/energyScalingFunctionNew.o +SOURCE=energyScalingFunction/derived/shifted/shifted.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shifted.o +SOURCE=energyScalingFunction/derived/shiftedForce/shiftedForce.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shiftedForce.o +SOURCE=energyScalingFunction/derived/noScaling/noScaling.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noScaling.o +SOURCE=energyScalingFunction/derived/sigmoid/sigmoid.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sigmoid.o +SOURCE=energyScalingFunction/derived/doubleSigmoid/doubleSigmoid.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/doubleSigmoid.o +SOURCE=tetherPotential/tetherPotentialList/tetherPotentialList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetherPotentialList.o +SOURCE=tetherPotential/basic/tetherPotential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetherPotential.o +SOURCE=tetherPotential/basic/tetherPotentialNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetherPotentialNew.o +SOURCE=tetherPotential/derived/harmonicSpring/harmonicSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/harmonicSpring.o +SOURCE=tetherPotential/derived/restrainedHarmonicSpring/restrainedHarmonicSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/restrainedHarmonicSpring.o +SOURCE=tetherPotential/derived/pitchForkRing/pitchForkRing.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pitchForkRing.o +SOURCE=electrostaticPotential/electrostaticPotential.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/electrostaticPotential.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libpotential.dylib' is up to date. ++ wmake libso molecularMeasurements +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file distribution/distribution.C +SOURCE=distribution/distribution.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/distribution.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmolecularMeasurements.dylib' is up to date. ++ wmake libso molecule +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file reducedUnits/reducedUnits.C +Making dependency list for source file reducedUnits/reducedUnitsIO.C +Making dependency list for source file molecule/molecule.C +Making dependency list for source file molecule/moleculeIO.C +Making dependency list for source file moleculeCloud/moleculeCloud.C +SOURCE=reducedUnits/reducedUnits.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reducedUnits.o +SOURCE=molecule/moleculeIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/moleculeIO.o +SOURCE=reducedUnits/reducedUnitsIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reducedUnitsIO.o +SOURCE=molecule/molecule.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/molecule.o +SOURCE=moleculeCloud/moleculeCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/moleculeCloud.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmolecule.dylib' is up to date. +++ mesh/Allwmake ++ wmake libso autoMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file autoHexMesh/autoHexMeshDriver/autoSnapDriver.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/autoLayerDriverShrink.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/autoLayerDriver.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/autoRefineDriver.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/layerParameters/layerParameters.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/refinementParameters/refinementParameters.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/snapParameters/snapParameters.C +Making dependency list for source file autoHexMesh/autoHexMeshDriver/pointData/pointData.C +Making dependency list for source file autoHexMesh/meshRefinement/meshRefinementBaffles.C +Making dependency list for source file autoHexMesh/meshRefinement/meshRefinement.C +Making dependency list for source file autoHexMesh/meshRefinement/meshRefinementMerge.C +Making dependency list for source file autoHexMesh/meshRefinement/meshRefinementProblemCells.C +Making dependency list for source file autoHexMesh/meshRefinement/meshRefinementRefine.C +Making dependency list for source file autoHexMesh/meshRefinement/patchFaceOrientation.C +Making dependency list for source file autoHexMesh/refinementFeatures/refinementFeatures.C +Making dependency list for source file autoHexMesh/refinementSurfaces/surfaceZonesInfo.C +Making dependency list for source file autoHexMesh/refinementSurfaces/refinementSurfaces.C +Making dependency list for source file autoHexMesh/shellSurfaces/shellSurfaces.C +Making dependency list for source file autoHexMesh/trackedParticle/trackedParticle.C +Making dependency list for source file autoHexMesh/trackedParticle/trackedParticleCloud.C +Making dependency list for source file autoHexMesh/externalDisplacementMeshMover/displacementMeshMoverMotionSolver.C +Making dependency list for source file autoHexMesh/externalDisplacementMeshMover/externalDisplacementMeshMover.C +Making dependency list for source file autoHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C +Making dependency list for source file autoHexMesh/externalDisplacementMeshMover/zeroFixedValue/zeroFixedValuePointPatchFields.C +SOURCE=autoHexMesh/autoHexMeshDriver/autoLayerDriverShrink.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoLayerDriverShrink.o +SOURCE=autoHexMesh/autoHexMeshDriver/autoLayerDriver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoLayerDriver.o +SOURCE=autoHexMesh/autoHexMeshDriver/autoSnapDriverFeature.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoSnapDriverFeature.o +SOURCE=autoHexMesh/autoHexMeshDriver/autoSnapDriver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoSnapDriver.o +SOURCE=autoHexMesh/autoHexMeshDriver/autoRefineDriver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoRefineDriver.o +SOURCE=autoHexMesh/autoHexMeshDriver/layerParameters/layerParameters.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/layerParameters.o +SOURCE=autoHexMesh/autoHexMeshDriver/refinementParameters/refinementParameters.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementParameters.o +SOURCE=autoHexMesh/autoHexMeshDriver/snapParameters/snapParameters.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/snapParameters.o +SOURCE=autoHexMesh/autoHexMeshDriver/pointData/pointData.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointData.o +SOURCE=autoHexMesh/meshRefinement/meshRefinementBaffles.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshRefinementBaffles.o +SOURCE=autoHexMesh/meshRefinement/meshRefinement.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshRefinement.o +SOURCE=autoHexMesh/meshRefinement/meshRefinementMerge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshRefinementMerge.o +SOURCE=autoHexMesh/meshRefinement/meshRefinementProblemCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshRefinementProblemCells.o +SOURCE=autoHexMesh/meshRefinement/meshRefinementRefine.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshRefinementRefine.o +SOURCE=autoHexMesh/meshRefinement/patchFaceOrientation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchFaceOrientation.o +SOURCE=autoHexMesh/refinementFeatures/refinementFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementFeatures.o +SOURCE=autoHexMesh/refinementSurfaces/surfaceZonesInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceZonesInfo.o +SOURCE=autoHexMesh/refinementSurfaces/refinementSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementSurfaces.o +SOURCE=autoHexMesh/shellSurfaces/shellSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shellSurfaces.o +SOURCE=autoHexMesh/trackedParticle/trackedParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/trackedParticle.o +SOURCE=autoHexMesh/trackedParticle/trackedParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/trackedParticleCloud.o +SOURCE=autoHexMesh/externalDisplacementMeshMover/displacementMeshMoverMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementMeshMoverMotionSolver.o +SOURCE=autoHexMesh/externalDisplacementMeshMover/externalDisplacementMeshMover.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/externalDisplacementMeshMover.o +SOURCE=autoHexMesh/externalDisplacementMeshMover/medialAxisMeshMover.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/medialAxisMeshMover.o +SOURCE=autoHexMesh/externalDisplacementMeshMover/zeroFixedValue/zeroFixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zeroFixedValuePointPatchFields.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libautoMesh.dylib' is up to date. ++ wmake libso blockMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file curvedEdges/BSpline.C +Making dependency list for source file curvedEdges/CatmullRomSpline.C +Making dependency list for source file curvedEdges/polyLine.C +Making dependency list for source file curvedEdges/arcEdge.C +Making dependency list for source file curvedEdges/curvedEdge.C +Making dependency list for source file curvedEdges/lineEdge.C +Making dependency list for source file curvedEdges/polyLineEdge.C +Making dependency list for source file curvedEdges/lineDivide.C +Making dependency list for source file curvedEdges/splineEdge.C +Making dependency list for source file blockDescriptor/blockDescriptor.C +Making dependency list for source file blockDescriptor/blockDescriptorEdges.C +Making dependency list for source file block/block.C +Making dependency list for source file block/blockCreate.C +Making dependency list for source file blockMesh/blockMesh.C +Making dependency list for source file blockMesh/blockMeshCreate.C +Making dependency list for source file blockMesh/blockMeshTopology.C +Making dependency list for source file blockMesh/blockMeshCheck.C +Making dependency list for source file blockMesh/blockMeshMerge.C +SOURCE=curvedEdges/BSpline.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/BSpline.o +SOURCE=curvedEdges/arcEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/arcEdge.o +SOURCE=curvedEdges/CatmullRomSpline.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CatmullRomSpline.o +SOURCE=curvedEdges/polyLine.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyLine.o +SOURCE=curvedEdges/curvedEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/curvedEdge.o +SOURCE=curvedEdges/lineEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lineEdge.o +SOURCE=curvedEdges/polyLineEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyLineEdge.o +SOURCE=curvedEdges/lineDivide.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lineDivide.o +SOURCE=curvedEdges/splineEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splineEdge.o +SOURCE=blockDescriptor/blockDescriptor.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockDescriptor.o +SOURCE=blockDescriptor/blockDescriptorEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockDescriptorEdges.o +SOURCE=block/block.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/block.o +SOURCE=block/blockCreate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockCreate.o +SOURCE=blockMesh/blockMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMesh.o +SOURCE=blockMesh/blockMeshCreate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMeshCreate.o +SOURCE=blockMesh/blockMeshTopology.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMeshTopology.o +SOURCE=blockMesh/blockMeshCheck.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMeshCheck.o +SOURCE=blockMesh/blockMeshMerge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMeshMerge.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libblockMesh.dylib' is up to date. ++ wmake libso extrudeModel +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libextrudeModel.dylib' is up to date. +++ fvAgglomerationMethods/Allwmake ++ export ParMGridGen=/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/ParMGridGen-1.0 ++ ParMGridGen=/Users/fcontino/OpenFOAM/ThirdParty-2.3.x/ParMGridGen-1.0 ++ '[' -e /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libMGridGen.so ']' ++ wmake libso pairPatchAgglomeration +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file pairPatchAgglomeration.C +SOURCE=pairPatchAgglomeration.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pairPatchAgglomeration.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libpairPatchAgglomeration.dylib' is up to date. +++ wmake libso fvMotionSolver +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fvMotionSolvers/fvMotionSolverCore/fvMotionSolverCore.C +Making dependency list for source file fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C +Making dependency list for source file fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C +Making dependency list for source file fvMotionSolvers/displacement/interpolation/displacementInterpolationMotionSolver.C +Making dependency list for source file fvMotionSolvers/displacement/layeredSolver/displacementLayeredMotionMotionSolver.C +Making dependency list for source file fvMotionSolvers/displacement/layeredSolver/pointEdgeStructuredWalk.C +Making dependency list for source file fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C +Making dependency list for source file fvMotionSolvers/velocity/laplacian/velocityLaplacianFvMotionSolver.C +Making dependency list for source file fvMotionSolvers/componentVelocity/componentLaplacian/velocityComponentLaplacianFvMotionSolver.C +Making dependency list for source file motionDiffusivity/motionDiffusivity/motionDiffusivity.C +Making dependency list for source file motionDiffusivity/uniform/uniformDiffusivity.C +Making dependency list for source file motionDiffusivity/inverseDistance/inverseDistanceDiffusivity.C +Making dependency list for source file motionDiffusivity/inverseFaceDistance/inverseFaceDistanceDiffusivity.C +Making dependency list for source file motionDiffusivity/inversePointDistance/inversePointDistanceDiffusivity.C +Making dependency list for source file motionDiffusivity/inverseVolume/inverseVolumeDiffusivity.C +Making dependency list for source file motionDiffusivity/directional/directionalDiffusivity.C +Making dependency list for source file motionDiffusivity/motionDirectional/motionDirectionalDiffusivity.C +Making dependency list for source file motionDiffusivity/file/fileDiffusivity.C +Making dependency list for source file motionDiffusivity/manipulators/quadratic/quadraticDiffusivity.C +Making dependency list for source file motionDiffusivity/manipulators/exponential/exponentialDiffusivity.C +Making dependency list for source file fvPatchFields/derived/cellMotion/cellMotionFvPatchFields.C +Making dependency list for source file fvPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementFvPatchFields.C +Making dependency list for source file pointPatchFields/derived/oscillatingVelocity/oscillatingVelocityPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/angularOscillatingVelocity/angularOscillatingVelocityPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/oscillatingDisplacement/oscillatingDisplacementPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/angularOscillatingDisplacement/angularOscillatingDisplacementPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/waveDisplacement/waveDisplacementPointPatchVectorField.C +Making dependency list for source file pointPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValuePointPatchFields.C +Making dependency list for source file pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.C +SOURCE=fvMotionSolvers/fvMotionSolverCore/fvMotionSolverCore.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMotionSolverCore.o +SOURCE=fvMotionSolvers/displacement/SBRStress/displacementSBRStressFvMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementSBRStressFvMotionSolver.o +SOURCE=fvMotionSolvers/displacement/laplacian/displacementLaplacianFvMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementLaplacianFvMotionSolver.o +SOURCE=fvMotionSolvers/displacement/interpolation/displacementInterpolationMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementInterpolationMotionSolver.o +SOURCE=fvMotionSolvers/displacement/layeredSolver/displacementLayeredMotionMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementLayeredMotionMotionSolver.o +SOURCE=fvMotionSolvers/displacement/layeredSolver/pointEdgeStructuredWalk.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointEdgeStructuredWalk.o +SOURCE=fvMotionSolvers/componentDisplacement/componentLaplacian/displacementComponentLaplacianFvMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/displacementComponentLaplacianFvMotionSolver.o +SOURCE=fvMotionSolvers/velocity/laplacian/velocityLaplacianFvMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/velocityLaplacianFvMotionSolver.o +SOURCE=fvMotionSolvers/componentVelocity/componentLaplacian/velocityComponentLaplacianFvMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/velocityComponentLaplacianFvMotionSolver.o +SOURCE=motionDiffusivity/motionDiffusivity/motionDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionDiffusivity.o +SOURCE=motionDiffusivity/uniform/uniformDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformDiffusivity.o +SOURCE=motionDiffusivity/inverseDistance/inverseDistanceDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inverseDistanceDiffusivity.o +SOURCE=motionDiffusivity/inverseFaceDistance/inverseFaceDistanceDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inverseFaceDistanceDiffusivity.o +SOURCE=motionDiffusivity/inversePointDistance/inversePointDistanceDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inversePointDistanceDiffusivity.o +SOURCE=motionDiffusivity/inverseVolume/inverseVolumeDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/inverseVolumeDiffusivity.o +SOURCE=motionDiffusivity/directional/directionalDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/directionalDiffusivity.o +SOURCE=motionDiffusivity/motionDirectional/motionDirectionalDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/motionDirectionalDiffusivity.o +SOURCE=motionDiffusivity/file/fileDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fileDiffusivity.o +SOURCE=motionDiffusivity/manipulators/quadratic/quadraticDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/quadraticDiffusivity.o +SOURCE=motionDiffusivity/manipulators/exponential/exponentialDiffusivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/exponentialDiffusivity.o +SOURCE=fvPatchFields/derived/cellMotion/cellMotionFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellMotionFvPatchFields.o +SOURCE=fvPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSlipDisplacementFvPatchFields.o +SOURCE=pointPatchFields/derived/oscillatingVelocity/oscillatingVelocityPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oscillatingVelocityPointPatchVectorField.o +SOURCE=pointPatchFields/derived/angularOscillatingVelocity/angularOscillatingVelocityPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/angularOscillatingVelocityPointPatchVectorField.o +SOURCE=pointPatchFields/derived/oscillatingDisplacement/oscillatingDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/oscillatingDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/angularOscillatingDisplacement/angularOscillatingDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/angularOscillatingDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSlipDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/surfaceDisplacement/surfaceDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/waveDisplacement/waveDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/waveDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValuePointPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeVaryingMappedFixedValuePointPatchFields.o +SOURCE=pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformInterpolatedDisplacementPointPatchVectorField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfvMotionSolvers.dylib' is up to date. +++ wmake libso engine +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file engineTime/engineTime.C +Making dependency list for source file ignition/ignitionSite.C +Making dependency list for source file ignition/ignition.C +Making dependency list for source file ignition/ignitionIO.C +Making dependency list for source file ignition/ignitionSiteIO.C +Making dependency list for source file engineValve/engineValve.C +Making dependency list for source file enginePiston/enginePiston.C +Making dependency list for source file engineMesh/engineMesh/engineMesh.C +Making dependency list for source file engineMesh/engineMesh/engineMeshNew.C +Making dependency list for source file engineMesh/staticEngineMesh/staticEngineMesh.C +Making dependency list for source file engineMesh/layeredEngineMesh/layeredEngineMesh.C +Making dependency list for source file engineMesh/fvMotionSolverEngineMesh/fvMotionSolverEngineMesh.C +SOURCE=engineTime/engineTime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineTime.o +SOURCE=ignition/ignition.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ignition.o +SOURCE=ignition/ignitionSite.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ignitionSite.o +SOURCE=ignition/ignitionIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ignitionIO.o +SOURCE=ignition/ignitionSiteIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ignitionSiteIO.o +SOURCE=engineValve/engineValve.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineValve.o +SOURCE=enginePiston/enginePiston.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enginePiston.o +SOURCE=engineMesh/engineMesh/engineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineMesh.o +SOURCE=engineMesh/engineMesh/engineMeshNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineMeshNew.o +SOURCE=engineMesh/staticEngineMesh/staticEngineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/staticEngineMesh.o +SOURCE=engineMesh/layeredEngineMesh/layeredEngineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/layeredEngineMesh.o +SOURCE=engineMesh/fvMotionSolverEngineMesh/fvMotionSolverEngineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvMotionSolver/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvMotionSolverEngineMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libengine.dylib' is up to date. +++ wmake libso fvOptions +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fvOptions/fvOptionList.C +Making dependency list for source file fvOptions/fvOptionIO.C +Making dependency list for source file fvOptions/fvOption.C +Making dependency list for source file fvOptions/fvIOoptionList.C +Making dependency list for source file sources/general/codedSource/codedSource.C +Making dependency list for source file sources/general/semiImplicitSource/semiImplicitSource.C +Making dependency list for source file sources/derived/actuationDiskSource/actuationDiskSource.C +Making dependency list for source file sources/derived/explicitPorositySource/explicitPorositySource.C +Making dependency list for source file sources/derived/MRFSource/MRFSource.C +Making dependency list for source file sources/derived/pressureGradientExplicitSource/pressureGradientExplicitSource.C +Making dependency list for source file sources/derived/pressureGradientExplicitSource/pressureGradientExplicitSourceIO.C +Making dependency list for source file sources/derived/radialActuationDiskSource/radialActuationDiskSource.C +Making dependency list for source file sources/derived/rotorDiskSource/rotorDiskSource.C +Making dependency list for source file sources/derived/rotorDiskSource/bladeModel/bladeModel.C +Making dependency list for source file sources/derived/rotorDiskSource/profileModel/profileModel.C +Making dependency list for source file sources/derived/rotorDiskSource/profileModel/profileModelList.C +Making dependency list for source file sources/derived/rotorDiskSource/profileModel/lookup/lookupProfile.C +Making dependency list for source file sources/derived/rotorDiskSource/profileModel/series/seriesProfile.C +Making dependency list for source file sources/derived/rotorDiskSource/trimModel/trimModel/trimModel.C +Making dependency list for source file sources/derived/rotorDiskSource/trimModel/trimModel/trimModelNew.C +Making dependency list for source file sources/derived/rotorDiskSource/trimModel/fixed/fixedTrim.C +Making dependency list for source file sources/derived/rotorDiskSource/trimModel/targetCoeff/targetCoeffTrim.C +Making dependency list for source file sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.C +Making dependency list for source file sources/interRegion/interRegionHeatTransferModel/constantHeatTransfer/constantHeatTransfer.C +Making dependency list for source file sources/interRegion/interRegionHeatTransferModel/interRegionHeatTransferModel/interRegionHeatTransferModel.C +Making dependency list for source file sources/interRegion/interRegionHeatTransferModel/tabulatedHeatTransfer/tabulatedHeatTransfer.C +Making dependency list for source file sources/interRegion/interRegionHeatTransferModel/variableHeatTransfer/variableHeatTransfer.C +Making dependency list for source file sources/interRegion/interRegionExplicitPorositySource/interRegionExplicitPorositySource.C +Making dependency list for source file constraints/general/explicitSetValue/explicitSetValue.C +Making dependency list for source file constraints/derived/fixedTemperatureConstraint/fixedTemperatureConstraint.C +Making dependency list for source file constraints/derived/temperatureLimitsConstraint/temperatureLimitsConstraint.C +SOURCE=fvOptions/fvOption.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvOption.o +SOURCE=fvOptions/fvOptionIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvOptionIO.o +SOURCE=fvOptions/fvOptionList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvOptionList.o +SOURCE=fvOptions/fvIOoptionList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fvIOoptionList.o +SOURCE=sources/general/codedSource/codedSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/codedSource.o +SOURCE=sources/general/semiImplicitSource/semiImplicitSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/semiImplicitSource.o +SOURCE=sources/derived/actuationDiskSource/actuationDiskSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/actuationDiskSource.o +SOURCE=sources/derived/explicitPorositySource/explicitPorositySource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/explicitPorositySource.o +SOURCE=sources/derived/MRFSource/MRFSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MRFSource.o +SOURCE=sources/derived/pressureGradientExplicitSource/pressureGradientExplicitSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureGradientExplicitSource.o +SOURCE=sources/derived/pressureGradientExplicitSource/pressureGradientExplicitSourceIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureGradientExplicitSourceIO.o +SOURCE=sources/derived/radialActuationDiskSource/radialActuationDiskSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radialActuationDiskSource.o +SOURCE=sources/derived/rotorDiskSource/rotorDiskSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotorDiskSource.o +SOURCE=sources/derived/rotorDiskSource/bladeModel/bladeModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/bladeModel.o +SOURCE=sources/derived/rotorDiskSource/profileModel/profileModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/profileModel.o +SOURCE=sources/derived/rotorDiskSource/profileModel/profileModelList.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/profileModelList.o +SOURCE=sources/derived/rotorDiskSource/profileModel/lookup/lookupProfile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lookupProfile.o +SOURCE=sources/derived/rotorDiskSource/profileModel/series/seriesProfile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/seriesProfile.o +SOURCE=sources/derived/rotorDiskSource/trimModel/trimModel/trimModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/trimModel.o +SOURCE=sources/derived/rotorDiskSource/trimModel/trimModel/trimModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/trimModelNew.o +SOURCE=sources/derived/rotorDiskSource/trimModel/fixed/fixedTrim.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedTrim.o +SOURCE=sources/derived/rotorDiskSource/trimModel/targetCoeff/targetCoeffTrim.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/targetCoeffTrim.o +SOURCE=sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/effectivenessHeatExchangerSource.o +SOURCE=sources/interRegion/interRegionHeatTransferModel/constantHeatTransfer/constantHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantHeatTransfer.o +SOURCE=sources/interRegion/interRegionHeatTransferModel/interRegionHeatTransferModel/interRegionHeatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interRegionHeatTransferModel.o +SOURCE=sources/interRegion/interRegionHeatTransferModel/tabulatedHeatTransfer/tabulatedHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tabulatedHeatTransfer.o +SOURCE=sources/interRegion/interRegionHeatTransferModel/variableHeatTransfer/variableHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/variableHeatTransfer.o +SOURCE=sources/interRegion/interRegionExplicitPorositySource/interRegionExplicitPorositySource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interRegionExplicitPorositySource.o +SOURCE=constraints/general/explicitSetValue/explicitSetValue.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/explicitSetValue.o +SOURCE=constraints/derived/fixedTemperatureConstraint/fixedTemperatureConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedTemperatureConstraint.o +SOURCE=constraints/derived/temperatureLimitsConstraint/temperatureLimitsConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/temperatureLimitsConstraint.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfvOptions.dylib' is up to date. +++ wmake libso regionCoupled +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file derivedFvPatchFields/energyRegionCoupled/energyRegionCoupledFvPatchScalarField.C +SOURCE=derivedFvPatchFields/energyRegionCoupled/energyRegionCoupledFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/energyRegionCoupledFvPatchScalarField.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libregionCoupled.dylib' is up to date. +++ postProcessing/Allwmake ++ wmake libo postCalc +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file postCalc.C +SOURCE=postCalc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/postCalc.o +ld -r -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o Make/darwinIntel64Gcc47DPOpt/postCalc.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o' is up to date. ++ wmake libso foamCalcFunctions +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file calcType/calcTypeNew.C +Making dependency list for source file field/components/components.C +Making dependency list for source file calcType/calcType.C +Making dependency list for source file field/mag/mag.C +Making dependency list for source file field/magSqr/magSqr.C +Making dependency list for source file field/magGrad/magGrad.C +Making dependency list for source file field/div/div.C +Making dependency list for source file field/randomise/randomise.C +Making dependency list for source file field/interpolate/interpolate.C +Making dependency list for source file basic/addSubtract/addSubtract.C +SOURCE=calcType/calcType.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcType.o +SOURCE=calcType/calcTypeNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcTypeNew.o +SOURCE=field/components/components.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/components.o +SOURCE=field/mag/mag.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mag.o +SOURCE=field/magSqr/magSqr.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/magSqr.o +SOURCE=field/magGrad/magGrad.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/magGrad.o +SOURCE=field/div/div.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/div.o +SOURCE=field/randomise/randomise.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/randomise.o +SOURCE=field/interpolate/interpolate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interpolate.o +SOURCE=basic/addSubtract/addSubtract.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/addSubtract.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfoamCalcFunctions.dylib' is up to date. ++ functionObjects/Allwmake ++ wmake libso cloud +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file cloudInfo/cloudInfoFunctionObject.C +Making dependency list for source file cloudInfo/cloudInfo.C +SOURCE=cloudInfo/cloudInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudInfo.o +SOURCE=cloudInfo/cloudInfoFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cloudInfoFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcloudFunctionObjects.dylib' is up to date. ++ wmake libso field +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file fieldAverage/fieldAverage/fieldAverage.C +Making dependency list for source file fieldAverage/fieldAverageItem/fieldAverageItem.C +Making dependency list for source file fieldAverage/fieldAverageFunctionObject/fieldAverageFunctionObject.C +Making dependency list for source file fieldAverage/fieldAverageItem/fieldAverageItemIO.C +Making dependency list for source file fieldCoordinateSystemTransform/fieldCoordinateSystemTransform.C +Making dependency list for source file fieldCoordinateSystemTransform/fieldCoordinateSystemTransformFunctionObject.C +Making dependency list for source file fieldMinMax/fieldMinMax.C +Making dependency list for source file fieldMinMax/fieldMinMaxFunctionObject.C +Making dependency list for source file fieldValues/fieldValue/fieldValue.C +Making dependency list for source file fieldValues/fieldValue/fieldValueNew.C +Making dependency list for source file fieldValues/fieldValueDelta/fieldValueDelta.C +Making dependency list for source file fieldValues/fieldValueDelta/fieldValueDeltaFunctionObject.C +Making dependency list for source file fieldValues/faceSource/faceSource.C +Making dependency list for source file fieldValues/faceSource/faceSourceFunctionObject.C +Making dependency list for source file fieldValues/cellSource/cellSource.C +Making dependency list for source file fieldValues/cellSource/cellSourceFunctionObject.C +Making dependency list for source file nearWallFields/nearWallFields.C +Making dependency list for source file nearWallFields/nearWallFieldsFunctionObject.C +Making dependency list for source file nearWallFields/findCellParticle.C +Making dependency list for source file nearWallFields/findCellParticleCloud.C +Making dependency list for source file processorField/processorField.C +Making dependency list for source file processorField/processorFieldFunctionObject.C +Making dependency list for source file readFields/readFields.C +Making dependency list for source file readFields/readFieldsFunctionObject.C +Making dependency list for source file streamLine/streamLine.C +Making dependency list for source file streamLine/streamLineParticle.C +Making dependency list for source file streamLine/streamLineParticleCloud.C +Making dependency list for source file streamLine/streamLineFunctionObject.C +Making dependency list for source file wallBoundedStreamLine/wallBoundedStreamLine.C +Making dependency list for source file wallBoundedStreamLine/wallBoundedStreamLineFunctionObject.C +Making dependency list for source file wallBoundedStreamLine/wallBoundedStreamLineParticle.C +Making dependency list for source file wallBoundedStreamLine/wallBoundedStreamLineParticleCloud.C +Making dependency list for source file wallBoundedStreamLine/wallBoundedParticle.C +Making dependency list for source file surfaceInterpolateFields/surfaceInterpolateFields.C +Making dependency list for source file surfaceInterpolateFields/surfaceInterpolateFieldsFunctionObject.C +Making dependency list for source file regionSizeDistribution/regionSizeDistribution.C +Making dependency list for source file regionSizeDistribution/regionSizeDistributionFunctionObject.C +SOURCE=fieldAverage/fieldAverage/fieldAverage.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldAverage.o +SOURCE=fieldAverage/fieldAverageItem/fieldAverageItem.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldAverageItem.o +SOURCE=fieldAverage/fieldAverageFunctionObject/fieldAverageFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldAverageFunctionObject.o +SOURCE=fieldAverage/fieldAverageItem/fieldAverageItemIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldAverageItemIO.o +SOURCE=fieldCoordinateSystemTransform/fieldCoordinateSystemTransform.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldCoordinateSystemTransform.o +SOURCE=fieldCoordinateSystemTransform/fieldCoordinateSystemTransformFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldCoordinateSystemTransformFunctionObject.o +SOURCE=fieldMinMax/fieldMinMax.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldMinMax.o +SOURCE=fieldMinMax/fieldMinMaxFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldMinMaxFunctionObject.o +SOURCE=fieldValues/fieldValue/fieldValue.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldValue.o +SOURCE=fieldValues/fieldValue/fieldValueNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldValueNew.o +SOURCE=fieldValues/fieldValueDelta/fieldValueDelta.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldValueDelta.o +SOURCE=fieldValues/fieldValueDelta/fieldValueDeltaFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldValueDeltaFunctionObject.o +SOURCE=fieldValues/faceSource/faceSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceSource.o +SOURCE=fieldValues/faceSource/faceSourceFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceSourceFunctionObject.o +SOURCE=fieldValues/cellSource/cellSource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSource.o +SOURCE=fieldValues/cellSource/cellSourceFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSourceFunctionObject.o +SOURCE=nearWallFields/nearWallFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearWallFields.o +SOURCE=nearWallFields/nearWallFieldsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nearWallFieldsFunctionObject.o +SOURCE=nearWallFields/findCellParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/findCellParticle.o +SOURCE=nearWallFields/findCellParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/findCellParticleCloud.o +SOURCE=processorField/processorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorField.o +SOURCE=processorField/processorFieldFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/processorFieldFunctionObject.o +SOURCE=readFields/readFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readFields.o +SOURCE=readFields/readFieldsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readFieldsFunctionObject.o +SOURCE=streamLine/streamLine.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/streamLine.o +SOURCE=streamLine/streamLineParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/streamLineParticle.o +SOURCE=streamLine/streamLineParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/streamLineParticleCloud.o +SOURCE=streamLine/streamLineFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/streamLineFunctionObject.o +SOURCE=wallBoundedStreamLine/wallBoundedStreamLine.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallBoundedStreamLine.o +SOURCE=wallBoundedStreamLine/wallBoundedStreamLineFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallBoundedStreamLineFunctionObject.o +SOURCE=wallBoundedStreamLine/wallBoundedStreamLineParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallBoundedStreamLineParticle.o +SOURCE=wallBoundedStreamLine/wallBoundedStreamLineParticleCloud.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallBoundedStreamLineParticleCloud.o +SOURCE=wallBoundedStreamLine/wallBoundedParticle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallBoundedParticle.o +SOURCE=surfaceInterpolateFields/surfaceInterpolateFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceInterpolateFields.o +SOURCE=surfaceInterpolateFields/surfaceInterpolateFieldsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceInterpolateFieldsFunctionObject.o +SOURCE=regionSizeDistribution/regionSizeDistribution.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionSizeDistribution.o +SOURCE=regionSizeDistribution/regionSizeDistributionFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionSizeDistributionFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libfieldFunctionObjects.dylib' is up to date. ++ wmake libso forces +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file forces/forcesFunctionObject.C +Making dependency list for source file forces/forces.C +Making dependency list for source file forceCoeffs/forceCoeffs.C +Making dependency list for source file forceCoeffs/forceCoeffsFunctionObject.C +SOURCE=forces/forces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forces.o +SOURCE=forceCoeffs/forceCoeffsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forceCoeffsFunctionObject.o +SOURCE=forceCoeffs/forceCoeffs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forceCoeffs.o +SOURCE=forces/forcesFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/forcesFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libforces.dylib' is up to date. ++ wmake libso fvTools +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file calcFvcGrad/calcFvcGradFunctionObject.C +Making dependency list for source file calcFvcDiv/calcFvcDivFunctionObject.C +Making dependency list for source file calcFvcDiv/calcFvcDiv.C +Making dependency list for source file calcFvcGrad/calcFvcGrad.C +Making dependency list for source file calcMag/calcMag.C +Making dependency list for source file calcMag/calcMagFunctionObject.C +SOURCE=calcFvcDiv/calcFvcDiv.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcFvcDiv.o +SOURCE=calcFvcGrad/calcFvcGradFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcFvcGradFunctionObject.o +SOURCE=calcFvcGrad/calcFvcGrad.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcFvcGrad.o +SOURCE=calcFvcDiv/calcFvcDivFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcFvcDivFunctionObject.o +SOURCE=calcMag/calcMag.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcMag.o +SOURCE=calcMag/calcMagFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcMagFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libFVFunctionObjects.dylib' is up to date. ++ wmake libso IO +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file partialWrite/partialWrite.C +Making dependency list for source file partialWrite/partialWriteFunctionObject.C +Making dependency list for source file removeRegisteredObject/removeRegisteredObjectFunctionObject.C +Making dependency list for source file removeRegisteredObject/removeRegisteredObject.C +Making dependency list for source file writeDictionary/writeDictionary.C +Making dependency list for source file writeDictionary/writeDictionaryFunctionObject.C +Making dependency list for source file writeRegisteredObject/writeRegisteredObjectFunctionObject.C +Making dependency list for source file writeRegisteredObject/writeRegisteredObject.C +SOURCE=partialWrite/partialWriteFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/partialWriteFunctionObject.o +SOURCE=partialWrite/partialWrite.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/partialWrite.o +SOURCE=removeRegisteredObject/removeRegisteredObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeRegisteredObject.o +SOURCE=removeRegisteredObject/removeRegisteredObjectFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeRegisteredObjectFunctionObject.o +SOURCE=writeDictionary/writeDictionary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeDictionary.o +SOURCE=writeDictionary/writeDictionaryFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeDictionaryFunctionObject.o +SOURCE=writeRegisteredObject/writeRegisteredObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeRegisteredObject.o +SOURCE=writeRegisteredObject/writeRegisteredObjectFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeRegisteredObjectFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libIOFunctionObjects.dylib' is up to date. ++ wmake libso jobControl +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file abortCalculation/abortCalculation.C +Making dependency list for source file abortCalculation/abortCalculationFunctionObject.C +SOURCE=abortCalculation/abortCalculation.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/abortCalculation.o +SOURCE=abortCalculation/abortCalculationFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/abortCalculationFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libjobControl.dylib' is up to date. ++ wmake libso systemCall +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file systemCallFunctionObject.C +Making dependency list for source file systemCall.C +SOURCE=systemCall.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/systemCall.o +SOURCE=systemCallFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/systemCallFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsystemCall.dylib' is up to date. ++ wmake libso utilities +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file codedFunctionObject/codedFunctionObject.C +Making dependency list for source file CourantNo/CourantNoFunctionObject.C +Making dependency list for source file Lambda2/Lambda2.C +Making dependency list for source file CourantNo/CourantNo.C +Making dependency list for source file Lambda2/Lambda2FunctionObject.C +Making dependency list for source file Peclet/Peclet.C +Making dependency list for source file Peclet/PecletFunctionObject.C +Making dependency list for source file Q/Q.C +Making dependency list for source file Q/QFunctionObject.C +Making dependency list for source file blendingFactor/blendingFactor.C +Making dependency list for source file blendingFactor/blendingFactorFunctionObject.C +Making dependency list for source file DESModelRegions/DESModelRegions.C +Making dependency list for source file DESModelRegions/DESModelRegionsFunctionObject.C +Making dependency list for source file dsmcFields/dsmcFields.C +Making dependency list for source file dsmcFields/dsmcFieldsFunctionObject.C +Making dependency list for source file pressureTools/pressureTools.C +Making dependency list for source file pressureTools/pressureToolsFunctionObject.C +Making dependency list for source file scalarTransport/scalarTransport.C +Making dependency list for source file scalarTransport/scalarTransportFunctionObject.C +Making dependency list for source file timeActivatedFileUpdate/timeActivatedFileUpdate.C +Making dependency list for source file timeActivatedFileUpdate/timeActivatedFileUpdateFunctionObject.C +Making dependency list for source file turbulenceFields/turbulenceFields.C +Making dependency list for source file turbulenceFields/turbulenceFieldsFunctionObject.C +Making dependency list for source file wallShearStress/wallShearStress.C +Making dependency list for source file wallShearStress/wallShearStressFunctionObject.C +Making dependency list for source file yPlusLES/yPlusLES.C +Making dependency list for source file yPlusLES/yPlusLESFunctionObject.C +Making dependency list for source file yPlusRAS/yPlusRAS.C +Making dependency list for source file yPlusRAS/yPlusRASFunctionObject.C +Making dependency list for source file setTimeStep/setTimeStepFunctionObject.C +SOURCE=codedFunctionObject/codedFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/codedFunctionObject.o +SOURCE=CourantNo/CourantNo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CourantNo.o +SOURCE=CourantNo/CourantNoFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CourantNoFunctionObject.o +SOURCE=Lambda2/Lambda2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Lambda2.o +SOURCE=Lambda2/Lambda2FunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Lambda2FunctionObject.o +SOURCE=Peclet/Peclet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Peclet.o +SOURCE=Peclet/PecletFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PecletFunctionObject.o +SOURCE=Q/Q.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Q.o +SOURCE=Q/QFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/QFunctionObject.o +SOURCE=blendingFactor/blendingFactor.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blendingFactor.o +SOURCE=blendingFactor/blendingFactorFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blendingFactorFunctionObject.o +SOURCE=DESModelRegions/DESModelRegions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DESModelRegions.o +SOURCE=DESModelRegions/DESModelRegionsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DESModelRegionsFunctionObject.o +SOURCE=dsmcFields/dsmcFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcFields.o +SOURCE=dsmcFields/dsmcFieldsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcFieldsFunctionObject.o +SOURCE=pressureTools/pressureTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureTools.o +SOURCE=pressureTools/pressureToolsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pressureToolsFunctionObject.o +SOURCE=scalarTransport/scalarTransport.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarTransport.o +SOURCE=scalarTransport/scalarTransportFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarTransportFunctionObject.o +SOURCE=timeActivatedFileUpdate/timeActivatedFileUpdate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeActivatedFileUpdate.o +SOURCE=timeActivatedFileUpdate/timeActivatedFileUpdateFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/timeActivatedFileUpdateFunctionObject.o +SOURCE=turbulenceFields/turbulenceFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulenceFields.o +SOURCE=turbulenceFields/turbulenceFieldsFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulenceFieldsFunctionObject.o +SOURCE=wallShearStress/wallShearStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallShearStress.o +SOURCE=wallShearStress/wallShearStressFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallShearStressFunctionObject.o +SOURCE=yPlusLES/yPlusLES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusLES.o +SOURCE=yPlusLES/yPlusLESFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusLESFunctionObject.o +SOURCE=yPlusRAS/yPlusRAS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusRAS.o +SOURCE=yPlusRAS/yPlusRASFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusRASFunctionObject.o +SOURCE=setTimeStep/setTimeStepFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setTimeStepFunctionObject.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libutilityFunctionObjects.dylib' is up to date. +++ wmake libso sixDoFRigidBodyMotion +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file sixDoFRigidBodyMotion/sixDoFRigidBodyMotion.C +Making dependency list for source file sixDoFRigidBodyMotion/sixDoFRigidBodyMotionIO.C +Making dependency list for source file sixDoFRigidBodyMotion/sixDoFRigidBodyMotionStateIO.C +Making dependency list for source file sixDoFRigidBodyMotion/sixDoFRigidBodyMotionState.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/sixDoFRigidBodyMotionRestraint/sixDoFRigidBodyMotionRestraint.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/sixDoFRigidBodyMotionRestraint/sixDoFRigidBodyMotionRestraintNew.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/linearSpring/linearSpring.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/linearAxialAngularSpring/linearAxialAngularSpring.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/sphericalAngularSpring/sphericalAngularSpring.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/tabulatedAxialAngularSpring/tabulatedAxialAngularSpring.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/sphericalAngularDamper/sphericalAngularDamper.C +Making dependency list for source file sixDoFRigidBodyMotion/restraints/linearDamper/linearDamper.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/sixDoFRigidBodyMotionConstraint/sixDoFRigidBodyMotionConstraint.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/sixDoFRigidBodyMotionConstraint/sixDoFRigidBodyMotionConstraintNew.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/axis/sixDoFRigidBodyMotionAxisConstraint.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/line/sixDoFRigidBodyMotionLineConstraint.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/orientation/sixDoFRigidBodyMotionOrientationConstraint.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/plane/sixDoFRigidBodyMotionPlaneConstraint.C +Making dependency list for source file pointPatchFields/derived/sixDoFRigidBodyDisplacement/sixDoFRigidBodyDisplacementPointPatchVectorField.C +Making dependency list for source file sixDoFRigidBodyMotion/constraints/point/sixDoFRigidBodyMotionPointConstraint.C +Making dependency list for source file pointPatchFields/derived/uncoupledSixDoFRigidBodyDisplacement/uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField.C +Making dependency list for source file sixDoFRigidBodyMotionSolver/sixDoFRigidBodyMotionSolver.C +Making dependency list for source file sixDoFRigidBodyMotionSolver/externalPointEdgePoint.C +Making dependency list for source file sixDoFRigidBodyMotionSolver/pointPatchDist.C +SOURCE=sixDoFRigidBodyMotion/sixDoFRigidBodyMotion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotion.o +SOURCE=sixDoFRigidBodyMotion/sixDoFRigidBodyMotionIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionIO.o +SOURCE=sixDoFRigidBodyMotion/sixDoFRigidBodyMotionState.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionState.o +SOURCE=sixDoFRigidBodyMotion/sixDoFRigidBodyMotionStateIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionStateIO.o +SOURCE=sixDoFRigidBodyMotion/restraints/sixDoFRigidBodyMotionRestraint/sixDoFRigidBodyMotionRestraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionRestraint.o +SOURCE=sixDoFRigidBodyMotion/restraints/sixDoFRigidBodyMotionRestraint/sixDoFRigidBodyMotionRestraintNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionRestraintNew.o +SOURCE=sixDoFRigidBodyMotion/restraints/linearAxialAngularSpring/linearAxialAngularSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearAxialAngularSpring.o +SOURCE=sixDoFRigidBodyMotion/restraints/linearSpring/linearSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearSpring.o +SOURCE=sixDoFRigidBodyMotion/restraints/sphericalAngularSpring/sphericalAngularSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphericalAngularSpring.o +SOURCE=sixDoFRigidBodyMotion/restraints/tabulatedAxialAngularSpring/tabulatedAxialAngularSpring.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tabulatedAxialAngularSpring.o +SOURCE=sixDoFRigidBodyMotion/restraints/linearDamper/linearDamper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearDamper.o +SOURCE=sixDoFRigidBodyMotion/restraints/sphericalAngularDamper/sphericalAngularDamper.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sphericalAngularDamper.o +SOURCE=sixDoFRigidBodyMotion/constraints/sixDoFRigidBodyMotionConstraint/sixDoFRigidBodyMotionConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionConstraint.o +SOURCE=sixDoFRigidBodyMotion/constraints/sixDoFRigidBodyMotionConstraint/sixDoFRigidBodyMotionConstraintNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionConstraintNew.o +SOURCE=sixDoFRigidBodyMotion/constraints/axis/sixDoFRigidBodyMotionAxisConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionAxisConstraint.o +SOURCE=sixDoFRigidBodyMotion/constraints/line/sixDoFRigidBodyMotionLineConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionLineConstraint.o +SOURCE=sixDoFRigidBodyMotion/constraints/orientation/sixDoFRigidBodyMotionOrientationConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionOrientationConstraint.o +SOURCE=sixDoFRigidBodyMotion/constraints/plane/sixDoFRigidBodyMotionPlaneConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionPlaneConstraint.o +SOURCE=sixDoFRigidBodyMotion/constraints/point/sixDoFRigidBodyMotionPointConstraint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionPointConstraint.o +SOURCE=pointPatchFields/derived/sixDoFRigidBodyDisplacement/sixDoFRigidBodyDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyDisplacementPointPatchVectorField.o +SOURCE=pointPatchFields/derived/uncoupledSixDoFRigidBodyDisplacement/uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField.o +SOURCE=sixDoFRigidBodyMotionSolver/sixDoFRigidBodyMotionSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sixDoFRigidBodyMotionSolver.o +SOURCE=sixDoFRigidBodyMotionSolver/externalPointEdgePoint.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/externalPointEdgePoint.o +SOURCE=sixDoFRigidBodyMotionSolver/pointPatchDist.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/forces/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointPatchDist.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libsixDoFRigidBodyMotion.dylib' is up to date. ++ wmake all utilities +Making dependency list for source file expandDictionary.C +Making dependency list for source file decomposePar.C +Making dependency list for source file writeFluentScalarField.C +Making dependency list for source file PDRMesh.C +SOURCE=expandDictionary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/expandDictionary.o +Making dependency list for source file writeFluentVectorField.C +Making dependency list for source file domainDecomposition.C +Making dependency list for source file foamDataToFluent.C +SOURCE=PDRMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PDRMesh.o +Making dependency list for source file domainDecompositionMesh.C +Making dependency list for source file domainDecompositionDistribute.C +SOURCE=writeFluentScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeFluentScalarField.o +Making dependency list for source file dimFieldDecomposer.C +Making dependency list for source file pointFieldDecomposer.C +Making dependency list for source file lagrangianFieldDecomposer.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/expandDictionary.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/expandDictionary +SOURCE=decomposePar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/decomposePar.o +Making dependency list for source file foamDebugSwitches.C +SOURCE=foamDebugSwitches.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamDebugSwitches.o +SOURCE=writeFluentVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeFluentVectorField.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamDebugSwitches.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lautoMesh -lbarotropicCompressibilityModel -lsolidThermo -lfluidThermophysicalModels -lblockMesh -lchemistryModel -lcoalCombustion -lcompressibleLESModels -lcompressibleRASModels -lcompressibleTurbulenceModel -lconversion -ldecompositionMethods -ldistributed -ldistributionModels -ldsmc -ldynamicFvMesh -ldynamicMesh -ledgeMesh -lengine -lfieldFunctionObjects -lfileFormats -lfiniteVolume -lfoamCalcFunctions -lforces -lfvMotionSolvers -lgenericPatchFields -lincompressibleLESModels -lincompressibleRASModels -lincompressibleTransportModels -lincompressibleTurbulenceModel -linterfaceProperties -lIOFunctionObjects -ljobControl -llagrangian -llagrangianIntermediate -llaminarFlameSpeedModels -lLESdeltas -lLESfilters -lliquidMixtureProperties -lliquidProperties -lmeshTools -lmolecularMeasurements -lmolecule -lODE -lOpenFOAM -lpotential -lradiationModels -lrandomProcesses -lreactionThermophysicalModels -lreconstruct -lsampling -lSLGThermo -lsolidMixtureProperties -lsolidParticle -lsolidProperties -lspecie -lsurfaceFilmModels -lsurfMesh -lsystemCall -lthermophysicalFunctions -ltopoChangerFvMesh -ltriSurface -ltwoPhaseProperties -lutilityFunctionObjects -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamDebugSwitches +Making dependency list for source file foamFormatConvert.C +SOURCE=foamFormatConvert.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamFormatConvert.o +SOURCE=foamDataToFluent.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamDataToFluent.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamFormatConvert.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -lgenericPatchFields -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamFormatConvert +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file helpType/helpType.C +Making dependency list for source file helpType/helpTypeNew.C +Making dependency list for source file helpBoundary/helpBoundary.C +Making dependency list for source file helpFunctionObject/helpFunctionObject.C +Making dependency list for source file doxygenXmlParser/doxygenXmlParser.C +SOURCE=helpType/helpType.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/helpType.o +SOURCE=helpType/helpTypeNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/helpTypeNew.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/writeFluentScalarField.o Make/darwinIntel64Gcc47DPOpt/writeFluentVectorField.o Make/darwinIntel64Gcc47DPOpt/foamDataToFluent.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamDataToFluent +Making dependency list for source file itoa.C +Making dependency list for source file ensightMesh.C +Making dependency list for source file ensightParticlePositions.C +Making dependency list for source file foamToEnsight.C +SOURCE=helpBoundary/helpBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/helpBoundary.o +SOURCE=itoa.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/itoa.o +SOURCE=ensightMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightMesh.o +SOURCE=ensightParticlePositions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ensightParticlePositions.o +SOURCE=foamToEnsight.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToEnsight.o +SOURCE=helpFunctionObject/helpFunctionObject.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/helpFunctionObject.o +SOURCE=doxygenXmlParser/doxygenXmlParser.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/doxygenXmlParser.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/PDRMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lfiniteVolume -lcompressibleRASModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/PDRMesh +Making dependency list for source file autoRefineMesh.C +SOURCE=autoRefineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoRefineMesh.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libhelpTypes.dylib' is up to date. +Making dependency list for source file foamHelp.C +SOURCE=foamHelp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IhelpTypes/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamHelp.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/autoRefineMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -ltriSurface -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/autoRefineMesh +Making dependency list for source file collapseEdges.C +SOURCE=collapseEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/collapseEdges.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IhelpTypes/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamHelp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lhelpTypes -lfiniteVolume -lincompressibleTurbulenceModel -lcompressibleTurbulenceModel -lincompressibleRASModels -lcompressibleRASModels -lincompressibleLESModels -lcompressibleLESModels -lradiationModels -lfluidThermophysicalModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamHelp +Making dependency list for source file foamInfoExec.C +SOURCE=foamInfoExec.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamInfoExec.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/collapseEdges.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/collapseEdges +Making dependency list for source file combinePatchFaces.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamInfoExec.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamInfoExec +SOURCE=combinePatchFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/combinePatchFaces.o +Making dependency list for source file patchSummary.C +SOURCE=patchSummary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchSummary.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/combinePatchFaces.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/combinePatchFaces +Making dependency list for source file cellSplitter.C +Making dependency list for source file modifyMesh.C +SOURCE=cellSplitter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSplitter.o +SOURCE=modifyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/modifyMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/cellSplitter.o Make/darwinIntel64Gcc47DPOpt/modifyMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/modifyMesh +Making dependency list for source file refineHexMesh.C +SOURCE=refineHexMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refineHexMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/patchSummary.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/patchSummary +Making dependency list for source file applyBoundaryLayer.C +SOURCE=applyBoundaryLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/applyBoundaryLayer.o +SOURCE=domainDecomposition.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/domainDecomposition.o +SOURCE=domainDecompositionMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/domainDecompositionMesh.o +SOURCE=domainDecompositionDistribute.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/domainDecompositionDistribute.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/itoa.o Make/darwinIntel64Gcc47DPOpt/ensightMesh.o Make/darwinIntel64Gcc47DPOpt/ensightParticlePositions.o Make/darwinIntel64Gcc47DPOpt/foamToEnsight.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lsampling -lgenericPatchFields -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToEnsight +Making dependency list for source file foamToEnsightParts.C +SOURCE=foamToEnsightParts.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToEnsightParts.o +SOURCE=dimFieldDecomposer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dimFieldDecomposer.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/applyBoundaryLayer.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTransportModels -lgenericPatchFields -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/applyBoundaryLayer +Making dependency list for source file applyWallFunctionBoundaryConditions.C +SOURCE=applyWallFunctionBoundaryConditions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/applyWallFunctionBoundaryConditions.o +SOURCE=pointFieldDecomposer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointFieldDecomposer.o +SOURCE=lagrangianFieldDecomposer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lagrangianFieldDecomposer.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/refineHexMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/refineHexMesh +Making dependency list for source file refineWallLayer.C +SOURCE=refineWallLayer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refineWallLayer.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompose/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/decomposePar.o Make/darwinIntel64Gcc47DPOpt/domainDecomposition.o Make/darwinIntel64Gcc47DPOpt/domainDecompositionMesh.o Make/darwinIntel64Gcc47DPOpt/domainDecompositionDistribute.o Make/darwinIntel64Gcc47DPOpt/dimFieldDecomposer.o Make/darwinIntel64Gcc47DPOpt/pointFieldDecomposer.o Make/darwinIntel64Gcc47DPOpt/lagrangianFieldDecomposer.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldecompose -lgenericPatchFields -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lmetisDecomp -lscotchDecomp -llagrangian -lmeshTools -lregionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/decomposePar +Making dependency list for source file reconstructPar.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/applyWallFunctionBoundaryConditions.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleRASModels -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/applyWallFunctionBoundaryConditions +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/refineWallLayer.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/refineWallLayer +SOURCE=reconstructPar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/reconstruct/reconstruct/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reconstructPar.o +Making dependency list for source file boxTurb.C +Making dependency list for source file refinementLevel.C +SOURCE=boxTurb.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boxTurb.o +SOURCE=refinementLevel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refinementLevel.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamToEnsightParts.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -llagrangian -lmeshTools -lgenericPatchFields -lconversion -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToEnsightParts +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/refinementLevel.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/refinementLevel +Making dependency list for source file foamToGMV.C +Making dependency list for source file itoa.C +Making dependency list for source file removeFaces.C +SOURCE=foamToGMV.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToGMV.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/boxTurb.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lrandomProcesses -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/boxTurb +SOURCE=removeFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/removeFaces.o +Making dependency list for source file changeDictionary.C +SOURCE=changeDictionary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/changeDictionary.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/changeDictionary.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/changeDictionary +Making dependency list for source file createExternalCoupledPatchGeometry.C +SOURCE=createExternalCoupledPatchGeometry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createExternalCoupledPatchGeometry.o +SOURCE=itoa.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/itoa.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamToGMV.o Make/darwinIntel64Gcc47DPOpt/itoa.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lgenericPatchFields -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToGMV +Did not find tecio in /Users/fcontino/OpenFOAM/ThirdParty-2.3.x. Not building foamToTecplot360. +Making dependency list for source file foamToTetDualMesh.C +SOURCE=foamToTetDualMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToTetDualMesh.o +In file included from foamToTetDualMesh.C:155:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/checkTimeOptions.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/checkTimeOptions.H:6:13: warning: variable 'endTime' set but not used [-Wunused-but-set-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/createExternalCoupledPatchGeometry.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lcompressibleTurbulenceModel -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/createExternalCoupledPatchGeometry +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/removeFaces.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/removeFaces +Making dependency list for source file dsmcInitialise.C +Making dependency list for source file edgeStats.C +SOURCE=dsmcInitialise.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcInitialise.o +Making dependency list for source file selectCells.C +SOURCE=edgeStats.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/edgeStats.o +SOURCE=selectCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/selectCells.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/edgeStats.o Make/darwinIntel64Gcc47DPOpt/selectCells.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -ltriSurface -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/selectCells +Making dependency list for source file splitCells.C +SOURCE=splitCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splitCells.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamToTetDualMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToTetDualMesh +Making dependency list for source file surfaceMeshWriter.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/dsmcInitialise.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -llagrangian -ldsmc -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/dsmcInitialise +Making dependency list for source file foamToVTK.C +Making dependency list for source file internalWriter.C +Making dependency list for source file lagrangianWriter.C +Making dependency list for source file engineSwirl.C +Making dependency list for source file patchWriter.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/splitCells.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/splitCells +Making dependency list for source file writeFuns.C +Making dependency list for source file writeFaceSet.C +SOURCE=engineSwirl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineSwirl.o +Making dependency list for source file writePointSet.C +Making dependency list for source file ansysToFoam.L +Making dependency list for source file writeSurfFields.C +SOURCE=ansysToFoam.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/ansysToFoam.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C -o Make/darwinIntel64Gcc47DPOpt/ansysToFoam.o +Making dependency list for source file vtkMesh.C +Making dependency list for source file vtkTopo.C +SOURCE=surfaceMeshWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshWriter.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/reconstruct/reconstruct/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/reconstructPar.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -llagrangian -lmeshTools -lreconstruct -lregionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/reconstructPar +Making dependency list for source file reconstructParMesh.C +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'virtual int yyFlexLexer::yylex()': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3313:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3313:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3329:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3505:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3760:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3783:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3796:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3796:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3817:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3842:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3845:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3845:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3873:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3873:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3933:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3934:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:3942:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4009:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4089:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4098:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4120:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4123:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4125:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4250:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4270:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4290:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4293:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4293:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4372:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4384:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4384:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/ansysToFoam.C:4389:17: warning: use of old-style cast [-Wold-style-cast] +SOURCE=reconstructParMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reconstructParMesh.o +SOURCE=foamToVTK.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToVTK.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/ansysToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/ansysToFoam +Making dependency list for source file hexBlock.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/engineSwirl.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/engineSwirl +Making dependency list for source file cfx4ToFoam.C +SOURCE=hexBlock.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hexBlock.o +Making dependency list for source file faceAgglomerate.C +SOURCE=faceAgglomerate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvAgglomerationMethods/pairPatchAgglomeration/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceAgglomerate.o +SOURCE=cfx4ToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cfx4ToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/reconstructParMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/reconstructParMesh +Making dependency list for source file loadOrCreateMesh.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/hexBlock.o Make/darwinIntel64Gcc47DPOpt/cfx4ToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/cfx4ToFoam +Making dependency list for source file redistributePar.C +Making dependency list for source file datToFoam.C +SOURCE=loadOrCreateMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/loadOrCreateMesh.o +SOURCE=datToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/datToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/datToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/datToFoam +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvAgglomerationMethods/pairPatchAgglomeration/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/faceAgglomerate.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -lfiniteVolume -lpairPatchAgglomeration -ltriSurface -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/faceAgglomerate +Making dependency list for source file fluent3DMeshToFoam.L +Making dependency list for source file foamUpgradeCyclics.C +SOURCE=fluent3DMeshToFoam.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C -o Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.o +SOURCE=foamUpgradeCyclics.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamUpgradeCyclics.o +SOURCE=redistributePar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/redistributePar.o +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'virtual int yyFlexLexer::yylex()': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:10732:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:10732:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:10748:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11443:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11698:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11721:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11734:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11734:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11755:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11780:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11783:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11783:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11810:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11810:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11870:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11871:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11879:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:11946:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12024:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12033:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12055:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12058:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12060:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12185:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12205:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12225:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12228:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12228:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12307:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12319:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12319:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.C:12324:17: warning: use of old-style cast [-Wold-style-cast] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamUpgradeCyclics.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamUpgradeCyclics +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/fluent3DMeshToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/fluent3DMeshToFoam +Making dependency list for source file extrudedTriangleCellShape.C +Making dependency list for source file foamUpgradeFvSolution.C +Making dependency list for source file extrudedQuadCellShape.C +Making dependency list for source file create3DCellShape.C +SOURCE=foamUpgradeFvSolution.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamUpgradeFvSolution.o +Making dependency list for source file fluentMeshToFoam.L +SOURCE=extrudedTriangleCellShape.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudedTriangleCellShape.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamUpgradeFvSolution.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamUpgradeFvSolution +SOURCE=extrudedQuadCellShape.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudedQuadCellShape.o +Making dependency list for source file mapLagrangian.C +Making dependency list for source file mapFields.C +SOURCE=mapLagrangian.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapLagrangian.o +SOURCE=create3DCellShape.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/create3DCellShape.o +SOURCE=fluentMeshToFoam.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C -o Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.o +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'virtual int yyFlexLexer::yylex()': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:12091:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:12091:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:12107:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:12946:62: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13201:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13224:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13237:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13237:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13258:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13283:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13286:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13286:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13313:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13313:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13373:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13374:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13382:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13449:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13527:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13536:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13558:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13561:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13563:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13688:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13708:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13728:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13731:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13731:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13810:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13822:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13822:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.C:13827:17: warning: use of old-style cast [-Wold-style-cast] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/extrudedTriangleCellShape.o Make/darwinIntel64Gcc47DPOpt/extrudedQuadCellShape.o Make/darwinIntel64Gcc47DPOpt/create3DCellShape.o Make/darwinIntel64Gcc47DPOpt/fluentMeshToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/fluentMeshToFoam +Making dependency list for source file fluentFvMesh.C +Making dependency list for source file foamMeshToFluent.C +SOURCE=fluentFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fluentFvMesh.o +SOURCE=mapFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mapFields.o +SOURCE=foamMeshToFluent.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamMeshToFluent.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/fluentFvMesh.o Make/darwinIntel64Gcc47DPOpt/foamMeshToFluent.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamMeshToFluent +Making dependency list for source file foamToStarMesh.C +SOURCE=foamToStarMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToStarMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamToStarMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lconversion -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToStarMesh +Making dependency list for source file foamToSurface.C +SOURCE=foamToSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamToSurface.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/loadOrCreateMesh.o Make/darwinIntel64Gcc47DPOpt/redistributePar.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lptscotchDecomp -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/redistributePar +Making dependency list for source file foamCalcApp.C +SOURCE=foamCalcApp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/foamCalcFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamCalcApp.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamToSurface.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToSurface +Making dependency list for source file gambitToFoam.L +SOURCE=gambitToFoam.L ; flex -+ -oMake/darwinIntel64Gcc47DPOpt/gambitToFoam.C -f $SOURCE ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C -o Make/darwinIntel64Gcc47DPOpt/gambitToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/foamCalcFunctions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamCalcApp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lfoamCalcFunctions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamCalc +Making dependency list for source file smapToFoam.C +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'virtual int yyFlexLexer::yylex()': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14041:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14041:57: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14057:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14617:62: warning: use of old-style cast [-Wold-style-cast] +gambitToFoam.L:189:11: warning: variable 'nFlagsForStream' set but not used [-Wunused-but-set-variable] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'int yyFlexLexer::yy_get_next_buffer()': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14872:53: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14895:39: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14908:28: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14908:58: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14929:3: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14954:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14957:95: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14957:115: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'yy_state_type yyFlexLexer::yy_get_previous_state()': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14985:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:14985:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'void yyFlexLexer::yyunput(int, char*)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15045:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15046:32: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15054:20: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'int yyFlexLexer::yyinput()': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15121:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'virtual yy_buffer_state* yyFlexLexer::yy_create_buffer(std::istream*, int)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15201:66: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15210:54: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'virtual void yyFlexLexer::yy_delete_buffer(YY_BUFFER_STATE)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15232:48: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15235:22: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15237:18: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'void yyFlexLexer::yyensure_buffer_stack()': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15362:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15382:9: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In member function 'void yyFlexLexer::yy_push_state(int)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15402:49: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15405:65: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15405:77: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In function 'void* yyalloc(yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15484:31: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In function 'void* yyrealloc(void*, yy_size_t)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15496:36: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15496:46: warning: use of old-style cast [-Wold-style-cast] +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C: In function 'void yyfree(void*)': +Make/darwinIntel64Gcc47DPOpt/gambitToFoam.C:15501:17: warning: use of old-style cast [-Wold-style-cast] +SOURCE=smapToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/smapToFoam.o +SOURCE=internalWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/internalWriter.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/gambitToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/gambitToFoam +Making dependency list for source file gmshToFoam.C +SOURCE=gmshToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/gmshToFoam.o +SOURCE=lagrangianWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/lagrangianWriter.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mapLagrangian.o Make/darwinIntel64Gcc47DPOpt/mapFields.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsampling -lmeshTools -llagrangian -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mapFields +Making dependency list for source file mdInitialise.C +SOURCE=mdInitialise.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mdInitialise.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/gmshToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/gmshToFoam +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/smapToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lgenericPatchFields -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/smapToFoam ++ wmake all blockMesh +Making dependency list for source file ideasUnvToFoam.C +Making dependency list for source file blockMeshApp.C +SOURCE=ideasUnvToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ideasUnvToFoam.o +SOURCE=blockMeshApp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/blockMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blockMeshApp.o +SOURCE=patchWriter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchWriter.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mdInitialise.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lfiniteVolume -llagrangian -lmolecule -lpotential -lmolecularMeasurements -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mdInitialise +SOURCE=writeFuns.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeFuns.o +Making dependency list for source file setFields.C +SOURCE=setFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setFields.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/blockMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/blockMeshApp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lblockMesh -lmeshTools -lfiniteVolume -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/blockMesh ++ wmake all extrude ++ wmake extrudeMesh +Making dependency list for source file extrudedMesh/extrudedMesh.C +Making dependency list for source file extrudeMesh.C +SOURCE=extrudedMesh/extrudedMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IextrudedMesh -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudedMesh.o +SOURCE=extrudeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IextrudedMesh -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudeMesh.o +SOURCE=writeFaceSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeFaceSet.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/ideasUnvToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/ideasUnvToFoam +SOURCE=writePointSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writePointSet.o +Making dependency list for source file kivaToFoam.C +SOURCE=kivaToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kivaToFoam.o +SOURCE=writeSurfFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeSurfFields.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/kivaToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/kivaToFoam +Making dependency list for source file mshToFoam.C +SOURCE=mshToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mshToFoam.o +SOURCE=vtkMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mshToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mshToFoam +Making dependency list for source file netgenNeutralToFoam.C +SOURCE=netgenNeutralToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/netgenNeutralToFoam.o +SOURCE=vtkTopo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkTopo.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IextrudedMesh -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/extrudedMesh.o Make/darwinIntel64Gcc47DPOpt/extrudeMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lsurfMesh -lmeshTools -ldynamicMesh -lextrudeModel -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/extrudeMesh ++ wmake extrudeToRegionMesh +Making dependency list for source file extrudeToRegionMesh.C +SOURCE=extrudeToRegionMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrudeToRegionMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshWriter.o Make/darwinIntel64Gcc47DPOpt/foamToVTK.o Make/darwinIntel64Gcc47DPOpt/internalWriter.o Make/darwinIntel64Gcc47DPOpt/lagrangianWriter.o Make/darwinIntel64Gcc47DPOpt/patchWriter.o Make/darwinIntel64Gcc47DPOpt/writeFuns.o Make/darwinIntel64Gcc47DPOpt/writeFaceSet.o Make/darwinIntel64Gcc47DPOpt/writePointSet.o Make/darwinIntel64Gcc47DPOpt/writeSurfFields.o Make/darwinIntel64Gcc47DPOpt/vtkMesh.o Make/darwinIntel64Gcc47DPOpt/vtkTopo.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -llagrangian -lgenericPatchFields -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamToVTK +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/setFields.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/setFields +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/netgenNeutralToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/netgenNeutralToFoam +WARN: PV3 readers not building: ParaView_VERSION= +WARN: PV4 readers not building: ParaView_VERSION= +Making dependency list for source file viewFactorsGen.C +Making dependency list for source file hexBlock.C +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file plot3dToFoam.C +SOURCE=hexBlock.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hexBlock.o +Making dependency list for source file libuserd.C +SOURCE=viewFactorsGen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/distributed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/viewFactorsGen.o +SOURCE=libuserd.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/browser/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/libuserd.o +SOURCE=plot3dToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/plot3dToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/hexBlock.o Make/darwinIntel64Gcc47DPOpt/plot3dToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/plot3dToFoam +Making dependency list for source file sammMesh.C +Making dependency list for source file fillSammCellShapeTable.C +Making dependency list for source file fillSammAddressingTable.C +Making dependency list for source file readPoints.C +Making dependency list for source file readCells.C +Making dependency list for source file readBoundary.C +Making dependency list for source file fixCollapsedEdges.C +Making dependency list for source file readCouples.C +Making dependency list for source file calcPointCells.C +Making dependency list for source file createPolyCells.C +Making dependency list for source file createBoundaryFaces.C +Making dependency list for source file createPolyBoundary.C +Making dependency list for source file purgeCellShapes.C +Making dependency list for source file writeMesh.C +Making dependency list for source file sammToFoam.C +SOURCE=sammMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sammMesh.o +SOURCE=fillSammCellShapeTable.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fillSammCellShapeTable.o +SOURCE=fillSammAddressingTable.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fillSammAddressingTable.o +SOURCE=readPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readPoints.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/extrudeToRegionMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsurfMesh -lfiniteVolume -lmeshTools -ldynamicMesh -lextrudeModel -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/extrudeToRegionMesh ++ wmake all extrude2DMesh ++ wmake libso extrude2DMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file extrude2DMesh/extrude2DMesh.C +SOURCE=readCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readCells.o +Making dependency list for source file patchToPoly2DMesh/patchToPoly2DMesh.C +SOURCE=extrude2DMesh/extrude2DMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrude2DMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/distributed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/viewFactorsGen.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -lOpenFOAM -lmeshTools -ltriSurface -ldistributed -lradiationModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/viewFactorsGen ++ wmake libso tabulatedWallFunction +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file tabulatedWallFunction/tabulatedWallFunction.C +Making dependency list for source file tabulatedWallFunction/tabulatedWallFunctionNew.C +Making dependency list for source file SpaldingsLaw/SpaldingsLaw.C +Making dependency list for source file general/general.C +SOURCE=tabulatedWallFunction/tabulatedWallFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tabulatedWallFunction.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libuserd-foam.dylib' is up to date. +SOURCE=readBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readBoundary.o +Making dependency list for source file particleTracks.C +SOURCE=particleTracks.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/particleTracks.o +SOURCE=patchToPoly2DMesh/patchToPoly2DMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchToPoly2DMesh.o +SOURCE=fixCollapsedEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixCollapsedEdges.o +SOURCE=tabulatedWallFunction/tabulatedWallFunctionNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tabulatedWallFunctionNew.o +SOURCE=readCouples.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readCouples.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libextrude2DMesh.dylib' is up to date. ++ wmake +Making dependency list for source file extrude2DMeshApp.C +SOURCE=SpaldingsLaw/SpaldingsLaw.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SpaldingsLaw.o +SOURCE=extrude2DMeshApp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -Iextrude2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/extrude2DMeshApp.o +SOURCE=calcPointCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcPointCells.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/particleTracks.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lfileFormats -lgenericPatchFields -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/particleTracks +Making dependency list for source file steadyParticleTracks.C +SOURCE=general/general.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/general.o +SOURCE=steadyParticleTracks.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/steadyParticleTracks.o +SOURCE=createPolyCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyCells.o +SOURCE=createBoundaryFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createBoundaryFaces.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtabulatedWallFunctions.dylib' is up to date. ++ wmake +Making dependency list for source file wallFunctionTableApp.C +SOURCE=createPolyBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyBoundary.o +SOURCE=wallFunctionTableApp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./tabulatedWallFunction/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallFunctionTableApp.o +SOURCE=purgeCellShapes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/purgeCellShapes.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -Iextrude2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/extrude2DMeshApp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsurfMesh -ldynamicMesh -lextrude2DMesh -lextrudeModel -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/extrude2DMesh ++ wmake all snappyHexMesh +Making dependency list for source file snappyHexMesh.C +SOURCE=writeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeMesh.o +SOURCE=snappyHexMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/snappyHexMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./tabulatedWallFunction/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/wallFunctionTableApp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltabulatedWallFunctions -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/wallFunctionTable +Making dependency list for source file attachMesh.C +SOURCE=attachMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/attachMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/steadyParticleTracks.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -llagrangian -lmeshTools -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/steadyParticleTracks +SOURCE=sammToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sammToFoam.o +Making dependency list for source file dsmcFieldsCalc.C +SOURCE=dsmcFieldsCalc.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/utilities/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcFieldsCalc.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/attachMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/attachMesh +Making dependency list for source file autoPatch.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sammMesh.o Make/darwinIntel64Gcc47DPOpt/fillSammCellShapeTable.o Make/darwinIntel64Gcc47DPOpt/fillSammAddressingTable.o Make/darwinIntel64Gcc47DPOpt/readPoints.o Make/darwinIntel64Gcc47DPOpt/readCells.o Make/darwinIntel64Gcc47DPOpt/readBoundary.o Make/darwinIntel64Gcc47DPOpt/fixCollapsedEdges.o Make/darwinIntel64Gcc47DPOpt/readCouples.o Make/darwinIntel64Gcc47DPOpt/calcPointCells.o Make/darwinIntel64Gcc47DPOpt/createPolyCells.o Make/darwinIntel64Gcc47DPOpt/createBoundaryFaces.o Make/darwinIntel64Gcc47DPOpt/createPolyBoundary.o Make/darwinIntel64Gcc47DPOpt/purgeCellShapes.o Make/darwinIntel64Gcc47DPOpt/writeMesh.o Make/darwinIntel64Gcc47DPOpt/sammToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sammToFoam +SOURCE=autoPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoPatch.o +Making dependency list for source file coupledFacePair.C +Making dependency list for source file starMesh.C +Making dependency list for source file readPoints.C +Making dependency list for source file readCells.C +Making dependency list for source file readBoundary.C +Making dependency list for source file fixCollapsedEdges.C +Making dependency list for source file readCouples.C +Making dependency list for source file createCoupleMatches.C +Making dependency list for source file mergeCoupleFacePoints.C +Making dependency list for source file calcPointCells.C +Making dependency list for source file createPolyCells.C +Making dependency list for source file createBoundaryFaces.C +Making dependency list for source file createPolyBoundary.C +Making dependency list for source file purgeCellShapes.C +Making dependency list for source file writeMesh.C +Making dependency list for source file star3ToFoam.C +SOURCE=coupledFacePair.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coupledFacePair.o +SOURCE=starMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/starMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/autoPatch.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/autoPatch +Making dependency list for source file printMeshStats.C +Making dependency list for source file checkTopology.C +Making dependency list for source file checkGeometry.C +Making dependency list for source file checkMeshQuality.C +Making dependency list for source file checkMesh.C +SOURCE=printMeshStats.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/printMeshStats.o +SOURCE=readPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readPoints.o +SOURCE=readCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readCells.o +SOURCE=checkTopology.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/checkTopology.o +SOURCE=readBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readBoundary.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/functionObjects/utilities/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/dsmcFieldsCalc.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lmeshTools -lfiniteVolume -lutilityFunctionObjects -llagrangian -ldsmc -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/dsmcFieldsCalc +Making dependency list for source file engineCompRatio.C +SOURCE=engineCompRatio.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineCompRatio.o +SOURCE=fixCollapsedEdges.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixCollapsedEdges.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/snappyHexMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lptscotchDecomp -lmeshTools -lsurfMesh -lfileFormats -ldynamicMesh -lautoMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/snappyHexMesh ++ '[' -n /opt/local ']' ++ wmake libso foamyHexMesh/conformalVoronoiMesh +SOURCE=checkGeometry.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/checkGeometry.o +wmakeLnInclude: linking include files to ./lnInclude +SOURCE=readCouples.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/readCouples.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/engineCompRatio.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lengine -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/engineCompRatio +Making dependency list for source file DelaunayMeshTools/DelaunayMeshTools.C +Making dependency list for source file conformalVoronoiMesh/indexedVertex/indexedVertexEnum.C +Making dependency list for source file conformalVoronoiMesh/indexedCell/indexedCellEnum.C +Making dependency list for source file execFlowFunctionObjects.C +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMesh.C +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C +SOURCE=execFlowFunctionObjects.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/execFlowFunctionObjects.o +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMeshZones.C +SOURCE=createCoupleMatches.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createCoupleMatches.o +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMeshIO.C +Making dependency list for source file conformalVoronoiMesh/conformalVoronoiMeshFeaturePoints.C +Making dependency list for source file conformalVoronoiMesh/featurePointConformer/pointFeatureEdgesTypes.C +Making dependency list for source file conformalVoronoiMesh/featurePointConformer/featurePointConformer.C +Making dependency list for source file conformalVoronoiMesh/featurePointConformer/featurePointConformerSpecialisations.C +Making dependency list for source file cvControls/cvControls.C +Making dependency list for source file conformationSurfaces/conformationSurfaces.C +Making dependency list for source file backgroundMeshDecomposition/backgroundMeshDecomposition.C +Making dependency list for source file cellShapeControl/cellShapeControl/cellShapeControl.C +Making dependency list for source file cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C +Making dependency list for source file cellShapeControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControls.C +SOURCE=checkMeshQuality.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/checkMeshQuality.o +Making dependency list for source file cellShapeControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControl.C +Making dependency list for source file cellShapeControl/cellSizeAndAlignmentControl/fileControl/fileControl.C +Making dependency list for source file cellShapeControl/cellSizeAndAlignmentControl/searchableSurfaceControl/searchableSurfaceControl.C +Making dependency list for source file cellShapeControl/cellAspectRatioControl/cellAspectRatioControl.C +Making dependency list for source file cellShapeControl/smoothAlignmentSolver/smoothAlignmentSolver.C +SOURCE=mergeCoupleFacePoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mergeCoupleFacePoints.o +Making dependency list for source file cellShapeControl/controlMeshRefinement/controlMeshRefinement.C +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/cellSizeFunction/cellSizeFunction.C +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/uniform/uniform.C +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/uniformDistance/uniformDistance.C +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/linearDistance/linearDistance.C +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/surfaceOffsetLinearDistance/surfaceOffsetLinearDistance.C +SOURCE=checkMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/checkMesh.o +Making dependency list for source file cellSizeControlSurfaces/cellSizeFunction/linearSpatial/linearSpatial.C +SOURCE=calcPointCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/calcPointCells.o +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/surfaceCellSizeFunction/surfaceCellSizeFunction.C +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/uniformValue/uniformValue.C +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/nonUniformField/nonUniformField.C +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/cellSizeCalculationType/cellSizeCalculationType.C +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/fieldFromFile/fieldFromFile.C +Making dependency list for source file cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/automatic/automatic.C +Making dependency list for source file initialPointsMethod/initialPointsMethod/initialPointsMethod.C +Making dependency list for source file initialPointsMethod/uniformGrid/uniformGrid.C +Making dependency list for source file initialPointsMethod/bodyCentredCubic/bodyCentredCubic.C +SOURCE=createPolyCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyCells.o +Making dependency list for source file initialPointsMethod/faceCentredCubic/faceCentredCubic.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/printMeshStats.o Make/darwinIntel64Gcc47DPOpt/checkTopology.o Make/darwinIntel64Gcc47DPOpt/checkGeometry.o Make/darwinIntel64Gcc47DPOpt/checkMeshQuality.o Make/darwinIntel64Gcc47DPOpt/checkMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/checkMesh +Making dependency list for source file initialPointsMethod/pointFile/pointFile.C +Making dependency list for source file initialPointsMethod/autoDensity/autoDensity.C +Making dependency list for source file faceSelection/faceSelection.C +Making dependency list for source file faceSelection/faceZoneSelection.C +Making dependency list for source file initialPointsMethod/rayShooting/rayShooting.C +Making dependency list for source file faceSelection/searchableSurfaceSelection.C +Making dependency list for source file createBaffles.C +Making dependency list for source file relaxationModel/relaxationModel/relaxationModel.C +Making dependency list for source file relaxationModel/adaptiveLinear/adaptiveLinear.C +Making dependency list for source file relaxationModel/rampHoldFall/rampHoldFall.C +Making dependency list for source file faceAreaWeightModel/faceAreaWeightModel/faceAreaWeightModel.C +Making dependency list for source file faceAreaWeightModel/piecewiseLinearRamp/piecewiseLinearRamp.C +Making dependency list for source file searchableSurfaceFeatures/searchableSurfaceFeatures.C +SOURCE=faceSelection/faceSelection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IfaceSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceSelection.o +SOURCE=createBoundaryFaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createBoundaryFaces.o +Making dependency list for source file searchableSurfaceFeatures/searchableBoxFeatures.C +Making dependency list for source file searchableSurfaceFeatures/searchablePlateFeatures.C +Making dependency list for source file searchableSurfaceFeatures/triSurfaceMeshFeatures.C +SOURCE=DelaunayMeshTools/DelaunayMeshTools.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DelaunayMeshTools.o +SOURCE=createPolyBoundary.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPolyBoundary.o +SOURCE=faceSelection/faceZoneSelection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IfaceSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceZoneSelection.o +SOURCE=purgeCellShapes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/purgeCellShapes.o +SOURCE=writeMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeMesh.o +SOURCE=faceSelection/searchableSurfaceSelection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IfaceSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceSelection.o +SOURCE=star3ToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/star3ToFoam.o +SOURCE=createBaffles.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IfaceSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createBaffles.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/coupledFacePair.o Make/darwinIntel64Gcc47DPOpt/starMesh.o Make/darwinIntel64Gcc47DPOpt/readPoints.o Make/darwinIntel64Gcc47DPOpt/readCells.o Make/darwinIntel64Gcc47DPOpt/readBoundary.o Make/darwinIntel64Gcc47DPOpt/fixCollapsedEdges.o Make/darwinIntel64Gcc47DPOpt/readCouples.o Make/darwinIntel64Gcc47DPOpt/createCoupleMatches.o Make/darwinIntel64Gcc47DPOpt/mergeCoupleFacePoints.o Make/darwinIntel64Gcc47DPOpt/calcPointCells.o Make/darwinIntel64Gcc47DPOpt/createPolyCells.o Make/darwinIntel64Gcc47DPOpt/createBoundaryFaces.o Make/darwinIntel64Gcc47DPOpt/createPolyBoundary.o Make/darwinIntel64Gcc47DPOpt/purgeCellShapes.o Make/darwinIntel64Gcc47DPOpt/writeMesh.o Make/darwinIntel64Gcc47DPOpt/star3ToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/star3ToFoam +SOURCE=conformalVoronoiMesh/indexedVertex/indexedVertexEnum.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/indexedVertexEnum.o +Making dependency list for source file star4ToFoam.C +SOURCE=star4ToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/star4ToFoam.o +SOURCE=conformalVoronoiMesh/indexedCell/indexedCellEnum.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/indexedCellEnum.o +SOURCE=conformalVoronoiMesh/conformalVoronoiMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/conversion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/star4ToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lconversion -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/star4ToFoam +Making dependency list for source file tetgenToFoam.C +SOURCE=tetgenToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tetgenToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/tetgenToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/tetgenToFoam +Making dependency list for source file vtkUnstructuredToFoam.C +SOURCE=vtkUnstructuredToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vtkUnstructuredToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/vtkUnstructuredToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfileFormats -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/vtkUnstructuredToFoam +Making dependency list for source file writeMeshObj.C +SOURCE=writeMeshObj.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeMeshObj.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/writeMeshObj.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/writeMeshObj +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/execFlowFunctionObjects.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTurbulenceModel -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lcompressibleLESModels -lcompressibleTurbulenceModel -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/execFlowFunctionObjects +Making dependency list for source file surfaceAdd.C +SOURCE=surfaceAdd.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceAdd.o +Making dependency list for source file foamListTimes.C +SOURCE=foamListTimes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamListTimes.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamListTimes.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamListTimes +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceAdd.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceAdd +Making dependency list for source file pdfPlot.C +Making dependency list for source file surfaceAutoPatch.C +SOURCE=pdfPlot.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pdfPlot.o +SOURCE=surfaceAutoPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceAutoPatch.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceAutoPatch.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceAutoPatch +Making dependency list for source file surfaceBooleanFeatures.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/pdfPlot.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldistributionModels -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/pdfPlot +SOURCE=surfaceBooleanFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceBooleanFeatures.o +Making dependency list for source file postChannel.C +Making dependency list for source file channelIndex.C +SOURCE=postChannel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/postChannel.o +surfaceBooleanFeatures.C: In function 'void calcFeaturePoints(const pointField&, const edgeList&)': +surfaceBooleanFeatures.C:396:11: warning: unused variable 'concaveStart' [-Wunused-variable] +surfaceBooleanFeatures.C:397:11: warning: unused variable 'mixedStart' [-Wunused-variable] +surfaceBooleanFeatures.C:398:11: warning: unused variable 'nonFeatureStart' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceBooleanFeatures.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -ledgeMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceBooleanFeatures +Making dependency list for source file surfaceCheck.C +SOURCE=surfaceCheck.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceCheck.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IfaceSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/faceSelection.o Make/darwinIntel64Gcc47DPOpt/faceZoneSelection.o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceSelection.o Make/darwinIntel64Gcc47DPOpt/createBaffles.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/createBaffles +Making dependency list for source file createPatch.C +SOURCE=createPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createPatch.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceCheck.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsampling -ltriSurface -lsurfMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceCheck +Making dependency list for source file collapseBase.C +Making dependency list for source file collapseEdge.C +Making dependency list for source file surfaceClean.C +SOURCE=collapseBase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/collapseBase.o +SOURCE=channelIndex.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/channelIndex.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/createPatch.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/createPatch +Making dependency list for source file deformedGeom.C +SOURCE=deformedGeom.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/deformedGeom.o +SOURCE=collapseEdge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/collapseEdge.o +SOURCE=surfaceClean.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceClean.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/postChannel.o Make/darwinIntel64Gcc47DPOpt/channelIndex.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -lgenericPatchFields -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/postChannel +Making dependency list for source file ptot.C +SOURCE=ptot.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/ptot.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/collapseBase.o Make/darwinIntel64Gcc47DPOpt/collapseEdge.o Make/darwinIntel64Gcc47DPOpt/surfaceClean.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceClean +Making dependency list for source file bunnylod/progmesh.C +Making dependency list for source file bunnylod/vector.C +Making dependency list for source file surfaceCoarsen.C +SOURCE=bunnylod/progmesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ibunnylod -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/progmesh.o +SOURCE=bunnylod/vector.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ibunnylod -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vector.o +SOURCE=surfaceCoarsen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ibunnylod -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceCoarsen.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ibunnylod -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/progmesh.o Make/darwinIntel64Gcc47DPOpt/vector.o Make/darwinIntel64Gcc47DPOpt/surfaceCoarsen.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceCoarsen +Making dependency list for source file surfaceConvert.C +SOURCE=surfaceConvert.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceConvert.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/deformedGeom.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/deformedGeom +Making dependency list for source file flattenMesh.C +SOURCE=flattenMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/flattenMesh.o +SOURCE=conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMeshCalcDualMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceConvert.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceConvert +Making dependency list for source file surfaceFeatureConvert.C +SOURCE=surfaceFeatureConvert.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFeatureConvert.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/flattenMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/flattenMesh +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/ptot.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/ptot +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceFeatureConvert.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ledgeMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceFeatureConvert +Making dependency list for source file insideCells.C +Making dependency list for source file surfaceFeatureExtract.C +Making dependency list for source file temporalInterpolate.C +SOURCE=insideCells.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/insideCells.o +SOURCE=temporalInterpolate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/temporalInterpolate.o +SOURCE=surfaceFeatureExtract.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFeatureExtract.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/insideCells.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/insideCells +Making dependency list for source file mergePolyMesh.C +Making dependency list for source file mergeMeshes.C +SOURCE=mergePolyMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mergePolyMesh.o +SOURCE=mergeMeshes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mergeMeshes.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceFeatureExtract.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ledgeMesh -ltriSurface -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceFeatureExtract +Making dependency list for source file surfaceFind.C +SOURCE=surfaceFind.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceFind.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mergePolyMesh.o Make/darwinIntel64Gcc47DPOpt/mergeMeshes.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mergeMeshes +Making dependency list for source file mergeOrSplitBaffles.C +SOURCE=mergeOrSplitBaffles.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mergeOrSplitBaffles.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceFind.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceFind +Making dependency list for source file surfaceHookUp.C +SOURCE=surfaceHookUp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceHookUp.o +SOURCE=conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMeshConformToSurface.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceHookUp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfileFormats -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceHookUp +Making dependency list for source file surfaceInertia.C +SOURCE=surfaceInertia.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceInertia.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceInertia.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceInertia +Making dependency list for source file surfaceLambdaMuSmooth.C +SOURCE=surfaceLambdaMuSmooth.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceLambdaMuSmooth.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/temporalInterpolate.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/temporalInterpolate +Making dependency list for source file wdot.C +SOURCE=wdot.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wdot.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceLambdaMuSmooth.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ledgeMesh -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceLambdaMuSmooth +Making dependency list for source file surfaceMeshConvert.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/wdot.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/wdot +SOURCE=surfaceMeshConvert.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshConvert.o +Making dependency list for source file writeCellCentres.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mergeOrSplitBaffles.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mergeOrSplitBaffles +SOURCE=writeCellCentres.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeCellCentres.o +Making dependency list for source file mirrorFvMesh.C +Making dependency list for source file mirrorMesh.C +SOURCE=mirrorFvMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mirrorFvMesh.o +SOURCE=mirrorMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mirrorMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/writeCellCentres.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/writeCellCentres +Making dependency list for source file noise.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mirrorFvMesh.o Make/darwinIntel64Gcc47DPOpt/mirrorMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mirrorMesh +SOURCE=noise.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noise.o +Making dependency list for source file moveDynamicMesh.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshConvert.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshConvert +SOURCE=moveDynamicMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/moveDynamicMesh.o +Making dependency list for source file surfaceMeshConvertTesting.C +SOURCE=surfaceMeshConvertTesting.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshConvertTesting.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/moveDynamicMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicFvMesh -lmeshTools -lsampling -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/moveDynamicMesh +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/noise.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lrandomProcesses -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/noise +Making dependency list for source file moveEngineMesh.C +Making dependency list for source file patchAverage.C +SOURCE=moveEngineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/moveEngineMesh.o +SOURCE=patchAverage.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchAverage.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/moveEngineMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lengine -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/moveEngineMesh +Making dependency list for source file moveMesh.C +SOURCE=moveMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/moveMesh.o +SOURCE=conformalVoronoiMesh/conformalVoronoiMeshZones.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMeshZones.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/moveMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/moveMesh +Making dependency list for source file objToVTK.C +SOURCE=objToVTK.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/objToVTK.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshConvertTesting.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshConvertTesting +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/objToVTK.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/objToVTK +Making dependency list for source file surfaceMeshExport.C +Making dependency list for source file orientFaceZone.C +SOURCE=surfaceMeshExport.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshExport.o +SOURCE=orientFaceZone.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/orientFaceZone.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/orientFaceZone.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lautoMesh -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/orientFaceZone +Making dependency list for source file meshDualiser.C +Making dependency list for source file polyDualMeshApp.C +SOURCE=meshDualiser.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/meshDualiser.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/patchAverage.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/patchAverage +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshExport.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshExport +SOURCE=conformalVoronoiMesh/conformalVoronoiMeshIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMeshIO.o +Making dependency list for source file patchIntegrate.C +Making dependency list for source file surfaceMeshImport.C +SOURCE=surfaceMeshImport.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshImport.o +SOURCE=patchIntegrate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/patchIntegrate.o +SOURCE=polyDualMeshApp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/polyDualMeshApp.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshImport.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshImport +Making dependency list for source file surfaceMeshInfo.C +SOURCE=surfaceMeshInfo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshInfo.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshInfo.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshInfo +Making dependency list for source file surfaceMeshTriangulate.C +SOURCE=surfaceMeshTriangulate.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceMeshTriangulate.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/patchIntegrate.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/patchIntegrate +Making dependency list for source file probeLocations.C +SOURCE=probeLocations.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/probeLocations.o +SOURCE=conformalVoronoiMesh/conformalVoronoiMeshFeaturePoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformalVoronoiMeshFeaturePoints.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/probeLocations.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lmeshTools -lsampling -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/probeLocations +Making dependency list for source file sample.C +SOURCE=sample.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sample.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceMeshTriangulate.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceMeshTriangulate +Making dependency list for source file surfaceOrient.C +SOURCE=surfaceOrient.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceOrient.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sample.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lmeshTools -lfileFormats -lsampling -lsurfMesh -llagrangian -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sample +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceOrient.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceOrient +Making dependency list for source file pPrime2.C +Making dependency list for source file surfacePointMerge.C +SOURCE=surfacePointMerge.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfacePointMerge.o +SOURCE=pPrime2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pPrime2.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/meshDualiser.o Make/darwinIntel64Gcc47DPOpt/polyDualMeshApp.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/polyDualMesh +Making dependency list for source file refineMesh.C +SOURCE=refineMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/refineMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfacePointMerge.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfacePointMerge +Making dependency list for source file surfaceRedistributePar.C +SOURCE=surfaceRedistributePar.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/distributed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceRedistributePar.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/pPrime2.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/pPrime2 +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/refineMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/refineMesh +Making dependency list for source file stressComponents.C +Making dependency list for source file renumberMesh.C +could not open file zoltanRenumber.H for source file renumberMesh.C due to No such file or directory +SOURCE=stressComponents.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/RAS -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/stressComponents.o +SOURCE=renumberMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/renumber/renumberMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/renumber/zoltanRenumber/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/renumberMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/distributed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceRedistributePar.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldistributed -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceRedistributePar +Making dependency list for source file surfaceRefineRedGreen.C +SOURCE=surfaceRefineRedGreen.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceRefineRedGreen.o +In file included from renumberMesh.C:655:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/checkTimeOptions.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude/checkTimeOptions.H:6:13: warning: variable 'endTime' set but not used [-Wunused-but-set-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceRefineRedGreen.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceRefineRedGreen +Making dependency list for source file surfaceSplitByPatch.C +SOURCE=surfaceSplitByPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSplitByPatch.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceSplitByPatch.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceSplitByPatch +Making dependency list for source file surfaceSplitByTopology.C +SOURCE=surfaceSplitByTopology.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSplitByTopology.o +SOURCE=conformalVoronoiMesh/featurePointConformer/pointFeatureEdgesTypes.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointFeatureEdgesTypes.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceSplitByTopology.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceSplitByTopology +Making dependency list for source file surfaceSplitNonManifolds.C +SOURCE=surfaceSplitNonManifolds.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSplitNonManifolds.o +SOURCE=conformalVoronoiMesh/featurePointConformer/featurePointConformer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/featurePointConformer.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceSplitNonManifolds.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceSplitNonManifolds +Making dependency list for source file surfaceSubset.C +SOURCE=surfaceSubset.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceSubset.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceSubset.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ltriSurface -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceSubset +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/RAS -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/stressComponents.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lincompressibleRASModels -lincompressibleTransportModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/stressComponents +Making dependency list for source file surfaceToPatch.C +SOURCE=surfaceToPatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceToPatch.o +Making dependency list for source file R.C +Making dependency list for source file compatibilityFvPatchFields/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchSymmTensorField.C +SOURCE=R.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/R.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceToPatch.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltriSurface -lmeshTools -ldynamicMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceToPatch +Making dependency list for source file surfaceTransformPoints.C +SOURCE=surfaceTransformPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceTransformPoints.o +SOURCE=conformalVoronoiMesh/featurePointConformer/featurePointConformerSpecialisations.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/featurePointConformerSpecialisations.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/surfaceTransformPoints.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsurfMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/surfaceTransformPoints +SOURCE=compatibilityFvPatchFields/turbulentIntensityKineticEnergyInlet/turbulentIntensityKineticEnergyInletFvPatchSymmTensorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentIntensityKineticEnergyInletFvPatchSymmTensorField.o +Making dependency list for source file rotateMesh.C +SOURCE=rotateMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rotateMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/renumber/renumberMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/renumber/zoltanRenumber/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/renumberMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -ldynamicMesh -lfiniteVolume -lgenericPatchFields -lrenumberMethods -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lmetisDecomp -lscotchDecomp -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/renumberMesh +Making dependency list for source file createTurbulenceFields.C +SOURCE=createTurbulenceFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/createTurbulenceFields.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/R.o Make/darwinIntel64Gcc47DPOpt/turbulentIntensityKineticEnergyInletFvPatchSymmTensorField.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleTransportModels -lincompressibleRASModels -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lfiniteVolume -lgenericPatchFields -lmeshTools -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/R +Making dependency list for source file Co.C +SOURCE=Co.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Co.o +SOURCE=cvControls/cvControls.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cvControls.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/Co.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/Co +Making dependency list for source file Lambda2.C +SOURCE=Lambda2.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Lambda2.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/createTurbulenceFields.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/createTurbulenceFields +Making dependency list for source file adiabaticFlameT.C +SOURCE=adiabaticFlameT.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adiabaticFlameT.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/adiabaticFlameT.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/adiabaticFlameT +Making dependency list for source file chemkinToFoam.C +SOURCE=chemkinToFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/chemkinToFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rotateMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rotateMesh +SOURCE=conformationSurfaces/conformationSurfaces.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conformationSurfaces.o +Found -- enabling readline support. +Making dependency list for source file writePointSet.C +Making dependency list for source file writeFuns.C +Making dependency list for source file writePatch.C +Making dependency list for source file setSet.C +SOURCE=writePointSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -DHAS_READLINE -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writePointSet.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/chemkinToFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lreactionThermophysicalModels -lfluidThermophysicalModels -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/chemkinToFoam +Making dependency list for source file equilibriumCO.C +SOURCE=equilibriumCO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/equilibriumCO.o +SOURCE=writeFuns.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -DHAS_READLINE -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writeFuns.o +SOURCE=writePatch.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -DHAS_READLINE -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/writePatch.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/equilibriumCO.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/equilibriumCO +Making dependency list for source file equilibriumFlameT.C +SOURCE=setSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -DHAS_READLINE -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setSet.o +SOURCE=equilibriumFlameT.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/equilibriumFlameT.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/equilibriumFlameT.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/equilibriumFlameT +Making dependency list for source file mixtureAdiabaticFlameT.C +SOURCE=mixtureAdiabaticFlameT.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixtureAdiabaticFlameT.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/Lambda2.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/Lambda2 +Making dependency list for source file Mach.C +SOURCE=Mach.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Mach.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -DHAS_READLINE -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/writePointSet.o Make/darwinIntel64Gcc47DPOpt/writeFuns.o Make/darwinIntel64Gcc47DPOpt/writePatch.o Make/darwinIntel64Gcc47DPOpt/setSet.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lreadline -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/setSet +Making dependency list for source file setsToZones.C +SOURCE=setsToZones.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/setsToZones.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mixtureAdiabaticFlameT.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mixtureAdiabaticFlameT +Making dependency list for source file wallGradU.C +SOURCE=wallGradU.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallGradU.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/setsToZones.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/setsToZones +Making dependency list for source file singleCellMesh.C +SOURCE=backgroundMeshDecomposition/backgroundMeshDecomposition.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/backgroundMeshDecomposition.o +SOURCE=singleCellMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/singleCellMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/wallGradU.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/wallGradU +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/Mach.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lfluidThermophysicalModels -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/Mach +Making dependency list for source file wallHeatFlux.C +Making dependency list for source file Pe.C +SOURCE=wallHeatFlux.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallHeatFlux.o +SOURCE=Pe.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Pe.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/Pe.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lincompressibleTransportModels -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTurbulenceModel -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lcompressibleLESModels -lcompressibleTurbulenceModel -lfiniteVolume -lgenericPatchFields -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/Pe +Making dependency list for source file Q.C +SOURCE=Q.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Q.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/wallHeatFlux.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lLESdeltas -lreactionThermophysicalModels -lfiniteVolume -lgenericPatchFields -lspecie -lfluidThermophysicalModels -lsolidThermo -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/wallHeatFlux +Making dependency list for source file wallShearStress.C +SOURCE=wallShearStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallShearStress.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/singleCellMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lgenericPatchFields -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/singleCellMesh +Making dependency list for source file regionSide.C +Making dependency list for source file splitMesh.C +SOURCE=regionSide.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/regionSide.o +SOURCE=cellShapeControl/cellShapeControl/cellShapeControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShapeControl.o +SOURCE=splitMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splitMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/regionSide.o Make/darwinIntel64Gcc47DPOpt/splitMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/splitMesh +Making dependency list for source file splitMeshRegions.C +SOURCE=splitMeshRegions.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/splitMeshRegions.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/Q.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/Q +Making dependency list for source file enstrophy.C +SOURCE=enstrophy.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/enstrophy.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/wallShearStress.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleRASModels -lincompressibleTurbulenceModel -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lcompressibleTurbulenceModel -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/wallShearStress +Making dependency list for source file yPlusLES.C +SOURCE=yPlusLES.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/LES/LESModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusLES.o +SOURCE=cellShapeControl/cellShapeControlMesh/cellShapeControlMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellShapeControlMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/enstrophy.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/enstrophy +Making dependency list for source file flowType.C +SOURCE=flowType.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/flowType.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/LES/LESModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/yPlusLES.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleLESModels -lincompressibleTurbulenceModel -lincompressibleTransportModels -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/yPlusLES +Making dependency list for source file yPlusRAS.C +SOURCE=yPlusRAS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/yPlusRAS.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/flowType.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/flowType +Making dependency list for source file streamFunction.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/yPlusRAS.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleRASModels -lincompressibleTurbulenceModel -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lcompressibleTurbulenceModel -lfiniteVolume -lgenericPatchFields -lmeshTools -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/yPlusRAS +SOURCE=streamFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/streamFunction.o +Making dependency list for source file stitchMesh.C +SOURCE=stitchMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/stitchMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/streamFunction.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/streamFunction +Making dependency list for source file uprime.C +SOURCE=uprime.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uprime.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/splitMeshRegions.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/splitMeshRegions +SOURCE=cellShapeControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControls.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSizeAndAlignmentControls.o +Making dependency list for source file vorticity.C +SOURCE=vorticity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/vorticity.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/uprime.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/uprime +Making dependency list for source file subsetMesh.C +SOURCE=subsetMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IcellSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/subsetMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/stitchMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ldynamicMesh -lmeshTools -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/stitchMesh +SOURCE=cellShapeControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControl/cellSizeAndAlignmentControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSizeAndAlignmentControl.o +Making dependency list for source file topoSet.C +SOURCE=topoSet.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/topoSet.o +SOURCE=cellShapeControl/cellSizeAndAlignmentControl/fileControl/fileControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fileControl.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/topoSet.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/topoSet +SOURCE=cellShapeControl/cellSizeAndAlignmentControl/searchableSurfaceControl/searchableSurfaceControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceControl.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/postProcessing/postCalc -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/vorticity.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/postCalc.o -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/vorticity +SOURCE=cellShapeControl/cellAspectRatioControl/cellAspectRatioControl.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellAspectRatioControl.o +Making dependency list for source file transformPoints.C +SOURCE=transformPoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transformPoints.o +Making dependency list for source file zipUpMesh.C +SOURCE=zipUpMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/zipUpMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/zipUpMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/zipUpMesh +SOURCE=cellShapeControl/smoothAlignmentSolver/smoothAlignmentSolver.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/smoothAlignmentSolver.o +SOURCE=cellShapeControl/controlMeshRefinement/controlMeshRefinement.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/controlMeshRefinement.o +SOURCE=cellSizeControlSurfaces/cellSizeFunction/cellSizeFunction/cellSizeFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSizeFunction.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/transformPoints.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/transformPoints +SOURCE=cellSizeControlSurfaces/cellSizeFunction/uniform/uniform.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniform.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IcellSelection -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/subsetMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -ldynamicMesh -lmeshTools -lgenericPatchFields -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/subsetMesh +SOURCE=cellSizeControlSurfaces/cellSizeFunction/uniformDistance/uniformDistance.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformDistance.o +SOURCE=cellSizeControlSurfaces/cellSizeFunction/linearDistance/linearDistance.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearDistance.o +SOURCE=cellSizeControlSurfaces/cellSizeFunction/surfaceOffsetLinearDistance/surfaceOffsetLinearDistance.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceOffsetLinearDistance.o +SOURCE=cellSizeControlSurfaces/cellSizeFunction/linearSpatial/linearSpatial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linearSpatial.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/surfaceCellSizeFunction/surfaceCellSizeFunction.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/surfaceCellSizeFunction.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/uniformValue/uniformValue.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformValue.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/nonUniformField/nonUniformField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonUniformField.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/cellSizeCalculationType/cellSizeCalculationType.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cellSizeCalculationType.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/fieldFromFile/fieldFromFile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fieldFromFile.o +SOURCE=cellSizeControlSurfaces/surfaceCellSizeFunction/cellSizeCalculationType/automatic/automatic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/automatic.o +SOURCE=initialPointsMethod/initialPointsMethod/initialPointsMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/initialPointsMethod.o +SOURCE=initialPointsMethod/uniformGrid/uniformGrid.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uniformGrid.o +SOURCE=initialPointsMethod/bodyCentredCubic/bodyCentredCubic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/bodyCentredCubic.o +SOURCE=initialPointsMethod/faceCentredCubic/faceCentredCubic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceCentredCubic.o +SOURCE=initialPointsMethod/pointFile/pointFile.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pointFile.o +SOURCE=initialPointsMethod/autoDensity/autoDensity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/autoDensity.o +SOURCE=initialPointsMethod/rayShooting/rayShooting.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rayShooting.o +SOURCE=relaxationModel/relaxationModel/relaxationModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/relaxationModel.o +SOURCE=relaxationModel/adaptiveLinear/adaptiveLinear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adaptiveLinear.o +SOURCE=relaxationModel/rampHoldFall/rampHoldFall.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rampHoldFall.o +SOURCE=faceAreaWeightModel/faceAreaWeightModel/faceAreaWeightModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/faceAreaWeightModel.o +SOURCE=faceAreaWeightModel/piecewiseLinearRamp/piecewiseLinearRamp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/piecewiseLinearRamp.o +SOURCE=searchableSurfaceFeatures/searchableSurfaceFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableSurfaceFeatures.o +SOURCE=searchableSurfaceFeatures/searchableBoxFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchableBoxFeatures.o +SOURCE=searchableSurfaceFeatures/searchablePlateFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/searchablePlateFeatures.o +SOURCE=searchableSurfaceFeatures/triSurfaceMeshFeatures.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IPrintTable -I../vectorTools -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/triSurfaceMeshFeatures.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libconformalVoronoiMesh.dylib' is up to date. ++ wmake all foamyHexMesh ++ '[' -n /opt/local ']' ++ wmake libso conformalVoronoiMesh +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libconformalVoronoiMesh.dylib' is up to date. ++ wmake +Making dependency list for source file foamyHexMesh.C +SOURCE=foamyHexMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -IconformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IvectorTools -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamyHexMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -DCGAL_INEXACT -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -IconformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -IvectorTools -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/foamyHexMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lconformalVoronoiMesh -lmeshTools -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lptscotchDecomp -ledgeMesh -lfileFormats -ltriSurface -ldynamicMesh -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamyHexMesh ++ wmake all foamyQuadMesh ++ '[' -n /opt/local ']' ++ wmake libso conformalVoronoi2DMesh +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file cv2DControls/cv2DControls.C +SOURCE=cv2DControls/cv2DControls.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cv2DControls.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcv2DMesh.dylib' is up to date. ++ wmake +Making dependency list for source file CV2D.C +Making dependency list for source file insertFeaturePoints.C +Making dependency list for source file insertSurfaceNearestPointPairs.C +Making dependency list for source file insertSurfaceNearPointPairs.C +Making dependency list for source file insertBoundaryConformPointPairs.C +Making dependency list for source file CV2DIO.C +Making dependency list for source file shortEdgeFilter2D.C +Making dependency list for source file foamyQuadMesh.C +SOURCE=CV2D.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CV2D.o +SOURCE=insertSurfaceNearestPointPairs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/insertSurfaceNearestPointPairs.o +SOURCE=insertFeaturePoints.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/insertFeaturePoints.o +SOURCE=insertSurfaceNearPointPairs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/insertSurfaceNearPointPairs.o +SOURCE=insertBoundaryConformPointPairs.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/insertBoundaryConformPointPairs.o +SOURCE=CV2DIO.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CV2DIO.o +SOURCE=shortEdgeFilter2D.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shortEdgeFilter2D.o +SOURCE=foamyQuadMesh.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/foamyQuadMesh.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -frounding-math -DNDEBUG -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/opt/local/include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude -IconformalVoronoi2DMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/parallel/decompose/decompositionMethods/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/surfMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/edgeMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/extrudeModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fileFormats/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/mesh/autoMesh/lnInclude -I/usr/include -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/CV2D.o Make/darwinIntel64Gcc47DPOpt/insertFeaturePoints.o Make/darwinIntel64Gcc47DPOpt/insertSurfaceNearestPointPairs.o Make/darwinIntel64Gcc47DPOpt/insertSurfaceNearPointPairs.o Make/darwinIntel64Gcc47DPOpt/insertBoundaryConformPointPairs.o Make/darwinIntel64Gcc47DPOpt/CV2DIO.o Make/darwinIntel64Gcc47DPOpt/shortEdgeFilter2D.o Make/darwinIntel64Gcc47DPOpt/foamyQuadMesh.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -L/opt/local/lib -L/opt/local/lib -L/opt/local/lib -L/opt/local/lib -lCGAL -lmpfr -lboost_thread-mt -lgmp -lextrude2DMesh -lextrudeModel -lcv2DMesh -lconformalVoronoiMesh -lmeshTools -lsurfMesh -ledgeMesh -ltriSurface -ldynamicMesh -ldecompositionMethods -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/dummy -lptscotchDecomp -lsampling -lfileFormats -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/foamyQuadMesh ++ wmake all solvers ++ wmake libso BCs +Making dependency list for source file dnsFoam.C +Making dependency list for source file laplacianFoam.C +Making dependency list for source file XiModels/XiModel/XiModel.C +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file mixedFixedValueSlip/mixedFixedValueSlipFvPatchFields.C +Making dependency list for source file XiModels/XiModel/XiModelNew.C +Making dependency list for source file U/maxwellSlipUFvPatchVectorField.C +SOURCE=laplacianFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/laplacianFoam.o +SOURCE=dnsFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dnsFoam.o +Making dependency list for source file T/smoluchowskiJumpTFvPatchScalarField.C +Making dependency list for source file XiModels/fixed/fixed.C +Making dependency list for source file rho/fixedRhoFvPatchScalarField.C +Making dependency list for source file XiModels/algebraic/algebraic.C +Making dependency list for source file XiModels/transport/transport.C +SOURCE=mixedFixedValueSlip/mixedFixedValueSlipFvPatchFields.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mixedFixedValueSlipFvPatchFields.o +Making dependency list for source file XiModels/XiEqModels/XiEqModel/XiEqModel.C +Making dependency list for source file XiModels/XiEqModels/XiEqModel/XiEqModelNew.C +Making dependency list for source file XiModels/XiEqModels/Gulder/Gulder.C +Making dependency list for source file XiModels/XiEqModels/instabilityXiEq/instabilityXiEq.C +Making dependency list for source file XiModels/XiEqModels/SCOPEBlendXiEq/SCOPEBlendXiEq.C +Making dependency list for source file XiModels/XiEqModels/SCOPEXiEq/SCOPEXiEq.C +Making dependency list for source file XiModels/XiGModels/XiGModel/XiGModel.C +Making dependency list for source file XiModels/XiGModels/XiGModel/XiGModelNew.C +In file included from dnsFoam.C:60:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:6:15: warning: unused variable 'nCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:9:15: warning: unused variable 'nNonOrthCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:12:16: warning: unused variable 'momentumPredictor' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +Making dependency list for source file XiModels/XiGModels/KTS/KTS.C +Making dependency list for source file XiModels/XiGModels/instabilityG/instabilityG.C +Making dependency list for source file PDRModels/turbulence/PDRkEpsilon/PDRkEpsilon.C +Making dependency list for source file PDRModels/dragModels/PDRDragModel/PDRDragModel.C +Making dependency list for source file PDRModels/dragModels/PDRDragModel/PDRDragModelNew.C +Making dependency list for source file PDRModels/dragModels/basic/basic.C +Making dependency list for source file PDRModels/XiEqModels/basicXiSubXiEq/basicXiSubXiEq.C +Making dependency list for source file PDRModels/XiGModels/basicXiSubG/basicXiSubG.C +Making dependency list for source file laminarFlameSpeed/SCOPE/SCOPELaminarFlameSpeed.C +Making dependency list for source file PDRFoam.C +SOURCE=XiModels/XiModel/XiModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiModel.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/laplacianFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/laplacianFoam +Making dependency list for source file potentialFoam.C +SOURCE=potentialFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/potentialFoam.o +SOURCE=XiModels/XiModel/XiModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiModelNew.o +SOURCE=U/maxwellSlipUFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/maxwellSlipUFvPatchVectorField.o +SOURCE=XiModels/fixed/fixed.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixed.o +SOURCE=XiModels/algebraic/algebraic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/algebraic.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/randomProcesses/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/dnsFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lrandomProcesses -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/dnsFoam ++ wmake +Making dependency list for source file rhoPimpleFoam.C +SOURCE=rhoPimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoPimpleFoam.o +SOURCE=T/smoluchowskiJumpTFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/smoluchowskiJumpTFvPatchScalarField.o +SOURCE=XiModels/transport/transport.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/transport.o +SOURCE=rho/fixedRhoFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fixedRhoFvPatchScalarField.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/potentialFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/potentialFoam +Making dependency list for source file scalarTransportFoam.C +SOURCE=scalarTransportFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/scalarTransportFoam.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/librhoCentralFoam.dylib' is up to date. ++ wmake +Making dependency list for source file rhoCentralFoam.C +SOURCE=rhoCentralFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IBCs/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoCentralFoam.o +SOURCE=XiModels/XiEqModels/XiEqModel/XiEqModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiEqModel.o +In file included from rhoCentralFoam.C:47:0: +createFields.H: In function 'int main(int, char**)': +createFields.H:11:23: warning: unused variable 'T' [-Wunused-variable] +In file included from rhoCentralFoam.C:48:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:32:12: warning: unused variable 'adjustTimeStep' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:35:8: warning: unused variable 'maxCo' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoPimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lsampling -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoPimpleFoam ++ wmake rhoPimplecFoam +Making dependency list for source file rhoPimplecFoam.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/scalarTransportFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/scalarTransportFoam +SOURCE=rhoPimplecFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoPimplecFoam.o +Making dependency list for source file XiFoam.C +SOURCE=XiFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiFoam.o +SOURCE=XiModels/XiEqModels/XiEqModel/XiEqModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiEqModelNew.o +In file included from XiFoam.C:74:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=XiModels/XiEqModels/Gulder/Gulder.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gulder.o +SOURCE=XiModels/XiEqModels/instabilityXiEq/instabilityXiEq.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/instabilityXiEq.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IBCs/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoCentralFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfluidThermophysicalModels -lspecie -lrhoCentralFoam -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoCentralFoam ++ wmake rhoCentralDyMFoam +Making dependency list for source file rhoCentralDyMFoam.C +SOURCE=rhoCentralDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../BCs/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoCentralDyMFoam.o +In file included from rhoCentralDyMFoam.C:48:0: +../createFields.H: In function 'int main(int, char**)': +../createFields.H:11:23: warning: unused variable 'T' [-Wunused-variable] +In file included from rhoCentralDyMFoam.C:49:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:32:12: warning: unused variable 'adjustTimeStep' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:35:8: warning: unused variable 'maxCo' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=XiModels/XiEqModels/SCOPEBlendXiEq/SCOPEBlendXiEq.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SCOPEBlendXiEq.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoPimplecFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lsampling -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoPimplecFoam ++ wmake rhoLTSPimpleFoam +Making dependency list for source file rhoLTSPimpleFoam.C +SOURCE=rhoLTSPimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoLTSPimpleFoam.o +SOURCE=XiModels/XiEqModels/SCOPEXiEq/SCOPEXiEq.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SCOPEXiEq.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/XiFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lsampling -lmeshTools -lengine -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfluidThermophysicalModels -lreactionThermophysicalModels -lspecie -llaminarFlameSpeedModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/XiFoam ++ wmake +SOURCE=XiModels/XiGModels/XiGModel/XiGModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiGModel.o +Making dependency list for source file rhoSimpleFoam.C +SOURCE=rhoSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoSimpleFoam.o +SOURCE=XiModels/XiGModels/XiGModel/XiGModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/XiGModelNew.o +SOURCE=XiModels/XiGModels/KTS/KTS.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/KTS.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../BCs/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoCentralDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfluidThermophysicalModels -lspecie -lrhoCentralFoam -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoCentralDyMFoam +Making dependency list for source file dsmcFoam.C +SOURCE=dsmcFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dsmcFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoLTSPimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lsampling -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoLTSPimpleFoam ++ wmake rhoPimpleDyMFoam +Making dependency list for source file rhoPimpleDyMFoam.C +SOURCE=rhoPimpleDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoPimpleDyMFoam.o +SOURCE=XiModels/XiGModels/instabilityG/instabilityG.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/instabilityG.o +In file included from readControls.H:1:0, + from rhoPimpleDyMFoam.C:55: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +In file included from rhoPimpleDyMFoam.C:55:0: +readControls.H:3:10: warning: unused variable 'correctPhi' [-Wunused-variable] +readControls.H:6:10: warning: unused variable 'checkMeshCourantNo' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoSimpleFoam ++ wmake rhoPorousSimpleFoam +Making dependency list for source file rhoPorousSimpleFoam.C +SOURCE=rhoPorousSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoPorousSimpleFoam.o +SOURCE=PDRModels/turbulence/PDRkEpsilon/PDRkEpsilon.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PDRkEpsilon.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/dsmc/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/dsmcFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -llagrangian -ldsmc -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/dsmcFoam +Making dependency list for source file mdEquilibrationFoam.C +SOURCE=mdEquilibrationFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mdEquilibrationFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mdEquilibrationFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -llagrangian -lmolecule -lpotential -lmolecularMeasurements -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mdEquilibrationFoam +Making dependency list for source file mdFoam.C +SOURCE=mdFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mdFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoPimpleDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lsampling -lfvOptions -ldynamicFvMesh -ltopoChangerFvMesh -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoPimpleDyMFoam +Making dependency list for source file chemFoam.C +SOURCE=chemFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/chemFoam.o +SOURCE=PDRModels/dragModels/PDRDragModel/PDRDragModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PDRDragModel.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecule/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/potential/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/molecularDynamics/molecularMeasurements/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mdFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmeshTools -lfiniteVolume -llagrangian -lmolecule -lpotential -lmolecularMeasurements -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mdFoam ++ wmake +Making dependency list for source file sonicFoam.C +SOURCE=PDRModels/dragModels/PDRDragModel/PDRDragModelNew.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PDRDragModelNew.o +SOURCE=sonicFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sonicFoam.o +In file included from sonicFoam.C:58:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:32:12: warning: unused variable 'adjustTimeStep' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:35:8: warning: unused variable 'maxCo' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoPorousSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoPorousSimpleFoam ++ wmake rhoSimplecFoam +Making dependency list for source file rhoSimplecFoam.C +SOURCE=PDRModels/dragModels/basic/basic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basic.o +SOURCE=rhoSimplecFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoSimplecFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/chemFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lcompressibleTurbulenceModel -lcompressibleRASModels -lreactionThermophysicalModels -lfluidThermophysicalModels -lchemistryModel -lODE -lthermophysicalFunctions -lspecie -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/chemFoam +Making dependency list for source file electrostaticFoam.C +SOURCE=electrostaticFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/electrostaticFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/electrostaticFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/electrostaticFoam +SOURCE=PDRModels/XiEqModels/basicXiSubXiEq/basicXiSubXiEq.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicXiSubXiEq.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sonicFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sonicFoam ++ wmake sonicDyMFoam +Making dependency list for source file magneticFoam.C +Making dependency list for source file sonicDyMFoam.C +SOURCE=magneticFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/magneticFoam.o +SOURCE=sonicDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sonicDyMFoam.o +In file included from sonicDyMFoam.C:62:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:6:15: warning: unused variable 'nCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:12:16: warning: unused variable 'momentumPredictor' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoSimplecFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleRASModels -lcompressibleTurbulenceModel -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoSimplecFoam +Making dependency list for source file coldEngineFoam.C +SOURCE=coldEngineFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../engineFoam -I../XiFoam -I../../compressible/rhoPimpleFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coldEngineFoam.o +SOURCE=PDRModels/XiGModels/basicXiSubG/basicXiSubG.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/basicXiSubG.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/magneticFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/magneticFoam +Making dependency list for source file mhdFoam.C +SOURCE=laminarFlameSpeed/SCOPE/SCOPELaminarFlameSpeed.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SCOPELaminarFlameSpeed.o +SOURCE=mhdFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/mhdFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sonicDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sonicDyMFoam ++ wmake sonicLiquidFoam +Making dependency list for source file sonicLiquidFoam.C +SOURCE=sonicLiquidFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sonicLiquidFoam.o +In file included from mhdFoam.C:71:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:12:16: warning: unused variable 'momentumPredictor' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +In file included from sonicLiquidFoam.C:58:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:32:12: warning: unused variable 'adjustTimeStep' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:35:8: warning: unused variable 'maxCo' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=PDRFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/PDRFoam.o +In file included from PDRFoam.C:93:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../engineFoam -I../XiFoam -I../../compressible/rhoPimpleFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/coldEngineFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lengine -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfluidThermophysicalModels -lspecie -lfiniteVolume -lmeshTools -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/coldEngineFoam +Making dependency list for source file financialFoam.C +SOURCE=financialFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/financialFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/mhdFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/mhdFoam +Making dependency list for source file engineFoam.C +SOURCE=engineFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/XiFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/engineFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sonicLiquidFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sonicLiquidFoam +Making dependency list for source file fireFoam.C +SOURCE=fireFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solid/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/pyrolysisModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/fireFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/financialFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lsampling -lmeshTools -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/financialFoam ++ wmake +Making dependency list for source file reactingFoam.C +SOURCE=reactingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingFoam.o +In file included from fireFoam.C:62:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +In file included from reactingFoam.C:50:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IXiModels/XiModel -IXiModels/XiEqModels/XiEqModel -IXiModels/XiGModels/XiGModel -IPDRModels/dragModels/PDRDragModel -IlaminarFlameSpeed/SCOPE -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/triSurface/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/XiModel.o Make/darwinIntel64Gcc47DPOpt/XiModelNew.o Make/darwinIntel64Gcc47DPOpt/fixed.o Make/darwinIntel64Gcc47DPOpt/algebraic.o Make/darwinIntel64Gcc47DPOpt/transport.o Make/darwinIntel64Gcc47DPOpt/XiEqModel.o Make/darwinIntel64Gcc47DPOpt/XiEqModelNew.o Make/darwinIntel64Gcc47DPOpt/Gulder.o Make/darwinIntel64Gcc47DPOpt/instabilityXiEq.o Make/darwinIntel64Gcc47DPOpt/SCOPEBlendXiEq.o Make/darwinIntel64Gcc47DPOpt/SCOPEXiEq.o Make/darwinIntel64Gcc47DPOpt/XiGModel.o Make/darwinIntel64Gcc47DPOpt/XiGModelNew.o Make/darwinIntel64Gcc47DPOpt/KTS.o Make/darwinIntel64Gcc47DPOpt/instabilityG.o Make/darwinIntel64Gcc47DPOpt/PDRkEpsilon.o Make/darwinIntel64Gcc47DPOpt/PDRDragModel.o Make/darwinIntel64Gcc47DPOpt/PDRDragModelNew.o Make/darwinIntel64Gcc47DPOpt/basic.o Make/darwinIntel64Gcc47DPOpt/basicXiSubXiEq.o Make/darwinIntel64Gcc47DPOpt/basicXiSubG.o Make/darwinIntel64Gcc47DPOpt/SCOPELaminarFlameSpeed.o Make/darwinIntel64Gcc47DPOpt/PDRFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lengine -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lfluidThermophysicalModels -lreactionThermophysicalModels -lspecie -llaminarFlameSpeedModels -lfiniteVolume -ldynamicFvMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/PDRFoam +Making dependency list for source file buoyantBoussinesqPimpleFoam.C +SOURCE=buoyantBoussinesqPimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../buoyantBoussinesqSimpleFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/buoyantBoussinesqPimpleFoam.o +In file included from buoyantBoussinesqPimpleFoam.C:68:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/reactingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lreactionThermophysicalModels -lspecie -lfluidThermophysicalModels -lchemistryModel -lODE -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/reactingFoam ++ wmake rhoReactingFoam +Making dependency list for source file rhoReactingFoam.C +SOURCE=rhoReactingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoReactingFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/XiFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/laminarFlameSpeed/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/engineFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lsampling -lmeshTools -lengine -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfluidThermophysicalModels -lreactionThermophysicalModels -lspecie -llaminarFlameSpeedModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/engineFoam +In file included from rhoReactingFoam.C:51:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +Making dependency list for source file adjointOutletPressure/adjointOutletPressureFvPatchScalarField.C +Making dependency list for source file adjointOutletVelocity/adjointOutletVelocityFvPatchVectorField.C +Making dependency list for source file adjointShapeOptimizationFoam.C +SOURCE=adjointOutletPressure/adjointOutletPressureFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adjointOutletPressureFvPatchScalarField.o +SOURCE=adjointOutletVelocity/adjointOutletVelocityFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adjointOutletVelocityFvPatchVectorField.o +SOURCE=adjointShapeOptimizationFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/adjointShapeOptimizationFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../buoyantBoussinesqSimpleFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/buoyantBoussinesqPimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lsampling -lmeshTools -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lradiationModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/buoyantBoussinesqPimpleFoam +Making dependency list for source file buoyantBoussinesqSimpleFoam.C +SOURCE=buoyantBoussinesqSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/buoyantBoussinesqSimpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solid/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidChemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/pyrolysisModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/fireFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lcompressibleRASModels -lcompressibleLESModels -lcompressibleTurbulenceModel -lspecie -lfluidThermophysicalModels -lliquidProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lsolidChemistryModel -lcombustionModels -lregionModels -lradiationModels -lsurfaceFilmModels -lsurfaceFilmDerivedFvPatchFields -lpyrolysisModels -lregionCoupling -llagrangianIntermediate -llagrangian -llagrangianTurbulence -lODE -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/fireFoam ++ wmake DPMTurbulenceModels +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoReactingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lreactionThermophysicalModels -lspecie -lfluidThermophysicalModels -lchemistryModel -lODE -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoReactingFoam ++ wmake rhoReactingBuoyantFoam +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file DPMTurbulenceModels.C +Making dependency list for source file rhoReactingBuoyantFoam.C +SOURCE=DPMTurbulenceModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DPMTurbulenceModels.o +SOURCE=rhoReactingBuoyantFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/rhoReactingBuoyantFoam.o +In file included from rhoReactingBuoyantFoam.C:52:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/adjointOutletPressureFvPatchScalarField.o Make/darwinIntel64Gcc47DPOpt/adjointOutletVelocityFvPatchVectorField.o Make/darwinIntel64Gcc47DPOpt/adjointShapeOptimizationFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/adjointShapeOptimizationFoam +Making dependency list for source file boundaryFoam.C +SOURCE=boundaryFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/boundaryFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/buoyantBoussinesqSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/buoyantBoussinesqSimpleFoam +Making dependency list for source file buoyantPimpleFoam.C +SOURCE=buoyantPimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/buoyantPimpleFoam.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libDPMTurbulenceModels.dylib' is up to date. ++ wmake +Making dependency list for source file DPMFoam.C +In file included from buoyantPimpleFoam.C:56:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=DPMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./DPMTurbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/DPMFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/rhoReactingBuoyantFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lreactionThermophysicalModels -lspecie -lfluidThermophysicalModels -lchemistryModel -lODE -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/rhoReactingBuoyantFoam ++ wmake LTSReactingFoam +Making dependency list for source file LTSReactingFoam.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/boundaryFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/boundaryFoam +SOURCE=LTSReactingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ggdb3 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LTSReactingFoam.o +Making dependency list for source file icoFoam.C +SOURCE=icoFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/icoFoam.o +In file included from icoFoam.C:53:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:12:16: warning: unused variable 'momentumPredictor' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +In file included from LTSReactingFoam.C:55:0: +readTimeControls.H: In function 'int main(int, char**)': +readTimeControls.H:27:8: warning: unused variable 'maxCo' [-Wunused-variable] +readTimeControls.H:30:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +readTimeControls.H:33:8: warning: unused variable 'rDeltaTSmoothingCoeff' [-Wunused-variable] +readTimeControls.H:39:8: warning: unused variable 'rDeltaTDampingCoeff' [-Wunused-variable] +readTimeControls.H:45:8: warning: unused variable 'alphaTemp' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/icoFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/icoFoam +Making dependency list for source file nonNewtonianIcoFoam.C +SOURCE=nonNewtonianIcoFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/nonNewtonianIcoFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/buoyantPimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lfluidThermophysicalModels -lradiationModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/buoyantPimpleFoam +In file included from nonNewtonianIcoFoam.C:54:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:12:16: warning: unused variable 'momentumPredictor' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +Making dependency list for source file buoyantSimpleFoam.C +SOURCE=buoyantSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/RAS -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/buoyantSimpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ggdb3 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/LTSReactingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lreactionThermophysicalModels -lspecie -lfluidThermophysicalModels -lchemistryModel -lODE -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/LTSReactingFoam ++ wmake +Making dependency list for source file pimpleFoam.C +SOURCE=pimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pimpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/nonNewtonianIcoFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lincompressibleTransportModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/nonNewtonianIcoFoam ++ wmake +Making dependency list for source file fluid/compressibleCourantNo.C +Making dependency list for source file solid/solidRegionDiffNo.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./DPMTurbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/DPMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -llagrangian -llagrangianIntermediate -lthermophysicalFunctions -lspecie -lradiationModels -lincompressibleTransportModels -lturbulenceModels -lincompressibleTurbulenceModels -lDPMTurbulenceModels -lregionModels -lsurfaceFilmModels -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/DPMFoam +Making dependency list for source file chtMultiRegionFoam.C ++ wmake MPPICFoam +Making dependency list for source file MPPICFoam.C +SOURCE=fluid/compressibleCourantNo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./fluid -I./solid -I./porousFluid -I./porousSolid -I./include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleCourantNo.o +SOURCE=MPPICFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../DPMTurbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MPPICFoam.o +SOURCE=solid/solidRegionDiffNo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./fluid -I./solid -I./porousFluid -I./porousSolid -I./include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidRegionDiffNo.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/RAS -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/buoyantSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lsampling -lmeshTools -lfluidThermophysicalModels -lspecie -lradiationModels -lcompressibleTurbulenceModel -lcompressibleRASModels -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/buoyantSimpleFoam ++ wmake +Making dependency list for source file cavitatingFoam.C +SOURCE=cavitatingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/barotropicCompressibilityModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cavitatingFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/pimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/pimpleFoam ++ wmake SRFPimpleFoam +Making dependency list for source file SRFPimpleFoam.C +SOURCE=SRFPimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFPimpleFoam.o +In file included from cavitatingFoam.C:52:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H:37:8: warning: unused variable 'cumulativeContErr' [-Wunused-variable] +SOURCE=chtMultiRegionFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./fluid -I./solid -I./porousFluid -I./porousSolid -I./include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/chtMultiRegionFoam.o +In file included from chtMultiRegionFoam.C:92:0: +./fluid/setRegionFluidFields.H: In function 'int main(int, char**)': +./fluid/setRegionFluidFields.H:1:13: warning: unused variable 'mesh' [-Wunused-variable] +./fluid/setRegionFluidFields.H:7:21: warning: unused variable 'U' [-Wunused-variable] +./fluid/setRegionFluidFields.H:8:25: warning: unused variable 'phi' [-Wunused-variable] +./fluid/setRegionFluidFields.H:10:36: warning: unused variable 'turb' [-Wunused-variable] +./fluid/setRegionFluidFields.H:11:21: warning: unused variable 'K' [-Wunused-variable] +./fluid/setRegionFluidFields.H:12:21: warning: unused variable 'dpdt' [-Wunused-variable] +./fluid/setRegionFluidFields.H:14:21: warning: unused variable 'p' [-Wunused-variable] +./fluid/setRegionFluidFields.H:15:27: warning: unused variable 'psi' [-Wunused-variable] +./fluid/setRegionFluidFields.H:18:27: warning: unused variable 'gh' [-Wunused-variable] +./fluid/setRegionFluidFields.H:19:31: warning: unused variable 'ghf' [-Wunused-variable] +./fluid/setRegionFluidFields.H:21:32: warning: unused variable 'rad' [-Wunused-variable] +./fluid/setRegionFluidFields.H:23:23: warning: unused variable 'fvOptions' [-Wunused-variable] +In file included from chtMultiRegionFoam.C:116:0: +./solid/setRegionSolidFields.H:3:38: warning: unused variable 'radiation' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/barotropicCompressibilityModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/cavitatingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lbarotropicCompressibilityModel -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/cavitatingFoam ++ wmake cavitatingDyMFoam +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/SRFPimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/SRFPimpleFoam ++ wmake pimpleDyMFoam +Making dependency list for source file cavitatingDyMFoam.C +Making dependency list for source file pimpleDyMFoam.C +SOURCE=cavitatingDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/barotropicCompressibilityModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/cavitatingDyMFoam.o +SOURCE=pimpleDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pimpleDyMFoam.o +In file included from cavitatingDyMFoam.C:50:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H:37:8: warning: unused variable 'cumulativeContErr' [-Wunused-variable] +In file included from cavitatingDyMFoam.C:55:0: +readControls.H:8:6: warning: unused variable 'correctPhi' [-Wunused-variable] +In file included from pimpleDyMFoam.C:56:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../DPMTurbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiation/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/MPPICFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -llagrangian -llagrangianIntermediate -lthermophysicalFunctions -lspecie -lradiationModels -lincompressibleTransportModels -lturbulenceModels -lincompressibleTurbulenceModels -lDPMTurbulenceModels -lregionModels -lsurfaceFilmModels -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/MPPICFoam +Making dependency list for source file coalChemistryFoam.C +SOURCE=coalChemistryFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/coalChemistryFoam.o +In file included from coalChemistryFoam.C:62:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I./fluid -I./solid -I./porousFluid -I./porousSolid -I./include -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/compressibleCourantNo.o Make/darwinIntel64Gcc47DPOpt/solidRegionDiffNo.o Make/darwinIntel64Gcc47DPOpt/chtMultiRegionFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lsolidThermo -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lmeshTools -lfiniteVolume -lradiationModels -lfvOptions -lregionModels -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/chtMultiRegionFoam ++ wmake chtMultiRegionSimpleFoam +Making dependency list for source file chtMultiRegionSimpleFoam.C +SOURCE=chtMultiRegionSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ifluid -Isolid -I../solid -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/chtMultiRegionSimpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/pimpleDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lfvOptions -lsampling -ldynamicFvMesh -ltopoChangerFvMesh -ldynamicMesh -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/pimpleDyMFoam +Making dependency list for source file pisoFoam.C +SOURCE=pisoFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/pisoFoam.o +In file included from chtMultiRegionSimpleFoam.C:78:0: +../solid/setRegionSolidFields.H: In function 'int main(int, char**)': +../solid/setRegionSolidFields.H:3:38: warning: unused variable 'radiation' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/barotropicCompressibilityModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/cavitatingDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lbarotropicCompressibilityModel -ldynamicMesh -lmeshTools -ldynamicFvMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/cavitatingDyMFoam ++ wmake libso twoPhaseMixtureThermo +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file twoPhaseMixtureThermo.C +SOURCE=twoPhaseMixtureThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoPhaseMixtureThermo.o +In file included from pisoFoam.C:57:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:3:15: warning: unused variable 'nOuterCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readPISOControls.H:15:16: warning: unused variable 'transonic' [-Wunused-variable] +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libtwoPhaseMixtureThermo.dylib' is up to date. ++ wmake +Making dependency list for source file compressibleInterFoam.C +SOURCE=compressibleInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ItwoPhaseMixtureThermo -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleInterFoam.o +In file included from alphaEqnsSubCycle.H:2:0, + from compressibleInterFoam.C:83: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from compressibleInterFoam.C:60:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +In file included from compressibleInterFoam.C:61:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H:37:8: warning: unused variable 'cumulativeContErr' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/pisoFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/pisoFoam +Making dependency list for source file shallowWaterFoam.C +SOURCE=shallowWaterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/shallowWaterFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -Ifluid -Isolid -I../solid -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/cfdTools -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/solidThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/chtMultiRegionSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfluidThermophysicalModels -lsolidThermo -lspecie -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lradiationModels -lfvOptions -lregionModels -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/chtMultiRegionSimpleFoam +Making dependency list for source file thermoFoam.C +SOURCE=thermoFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/thermoFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/shallowWaterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/shallowWaterFoam ++ wmake +Making dependency list for source file simpleFoam.C +SOURCE=simpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ItwoPhaseMixtureThermo -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/compressibleInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixtureThermo -lfluidThermophysicalModels -lspecie -ltwoPhaseMixture -ltwoPhaseProperties -linterfaceProperties -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/compressibleInterFoam ++ wmake compressibleInterDyMFoam +Making dependency list for source file compressibleInterDyMFoam.C +SOURCE=compressibleInterDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixtureThermo -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleInterDyMFoam.o +In file included from ../alphaEqnsSubCycle.H:2:0, + from compressibleInterDyMFoam.C:125: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from readControls.H:1:0, + from compressibleInterDyMFoam.C:65: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +In file included from compressibleInterDyMFoam.C:65:0: +readControls.H:3:10: warning: unused variable 'correctPhi' [-Wunused-variable] +readControls.H:6:10: warning: unused variable 'checkMeshCourantNo' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/coalChemistryFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lcoalCombustion -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lregionModels -lsurfaceFilmModels -lODE -lcombustionModels -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/coalChemistryFoam ++ wmake +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/RAS/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/LES/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/thermoFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lsampling -lmeshTools -lfvOptions -lfluidThermophysicalModels -lradiationModels -lspecie -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/thermoFoam ++ wmake libso multiphaseMixtureThermo +Making dependency list for source file icoUncoupledKinematicParcelFoam.C +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phaseModel/phaseModel.C +Making dependency list for source file alphaContactAngle/alphaContactAngleFvPatchScalarField.C +Making dependency list for source file multiphaseMixtureThermo.C +SOURCE=icoUncoupledKinematicParcelFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/icoUncoupledKinematicParcelFoam.o +SOURCE=phaseModel/phaseModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseModel.o +SOURCE=alphaContactAngle/alphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphaContactAngleFvPatchScalarField.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/simpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/simpleFoam ++ wmake SRFSimpleFoam +Making dependency list for source file SRFSimpleFoam.C +SOURCE=SRFSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SRFSimpleFoam.o +SOURCE=multiphaseMixtureThermo.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiphaseMixtureThermo.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../twoPhaseMixtureThermo -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/compressibleInterDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixtureThermo -lfluidThermophysicalModels -lspecie -ltwoPhaseMixture -ltwoPhaseProperties -linterfaceProperties -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -ldynamicMesh -lmeshTools -ldynamicFvMesh -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/compressibleInterDyMFoam +Making dependency list for source file tractionDisplacement/tractionDisplacementFvPatchVectorField.C +Making dependency list for source file solidDisplacementFoam.C +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/SRFSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/SRFSimpleFoam ++ wmake porousSimpleFoam +SOURCE=tractionDisplacement/tractionDisplacementFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacement/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tractionDisplacementFvPatchVectorField.o +Making dependency list for source file porousSimpleFoam.C +SOURCE=porousSimpleFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porousSimpleFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/icoUncoupledKinematicParcelFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lthermophysicalFunctions -lfluidThermophysicalModels -lspecie -lradiationModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lregionModels -lsurfaceFilmModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/icoUncoupledKinematicParcelFoam ++ wmake icoUncoupledKinematicParcelDyMFoam +Making dependency list for source file icoUncoupledKinematicParcelDyMFoam.C +SOURCE=icoUncoupledKinematicParcelDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/icoUncoupledKinematicParcelDyMFoam.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmultiphaseMixtureThermo.dylib' is up to date. ++ wmake +Making dependency list for source file compressibleMultiphaseInterFoam.C +SOURCE=compressibleMultiphaseInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ImultiphaseMixtureThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/compressibleMultiphaseInterFoam.o +SOURCE=solidDisplacementFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacement/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidDisplacementFoam.o +In file included from compressibleMultiphaseInterFoam.C:69:0: +alphaCourantNo.H: In function 'int main(int, char**)': +alphaCourantNo.H:32:8: warning: unused variable 'maxAlphaCo' [-Wunused-variable] +In file included from compressibleMultiphaseInterFoam.C:55:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +In file included from compressibleMultiphaseInterFoam.C:56:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H:37:8: warning: unused variable 'cumulativeContErr' [-Wunused-variable] +In file included from solidDisplacementFoam.C:51:0: +readSolidDisplacementFoamControls.H: In function 'int main(int, char**)': +readSolidDisplacementFoamControls.H:3:11: warning: unused variable 'nCorr' [-Wunused-variable] +readSolidDisplacementFoamControls.H:5:8: warning: unused variable 'convergenceTolerance' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/RAS/RASModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/porousSimpleFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/porousSimpleFoam +Making dependency list for source file reactingParcelFilmFoam.C +SOURCE=reactingParcelFilmFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingParcelFilmFoam.o +In file included from reactingParcelFilmFoam.C:59:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/icoUncoupledKinematicParcelDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lthermophysicalFunctions -lfluidThermophysicalModels -lspecie -lradiationModels -lincompressibleRASModels -lincompressibleLESModels -lincompressibleTurbulenceModel -lincompressibleTransportModels -lfiniteVolume -lmeshTools -lregionModels -lsurfaceFilmModels -ldynamicMesh -ldynamicFvMesh -ltopoChangerFvMesh -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/icoUncoupledKinematicParcelDyMFoam +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ImultiphaseMixtureThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/compressibleMultiphaseInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmultiphaseMixtureThermo -lfluidThermophysicalModels -lspecie -linterfaceProperties -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/compressibleMultiphaseInterFoam +Making dependency list for source file driftFluxFoam.C +Making dependency list for source file tractionDisplacementCorrection/tractionDisplacementCorrectionFvPatchVectorField.C +Making dependency list for source file solidEquilibriumDisplacementFoam.C +SOURCE=driftFluxFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/driftFluxFoam.o +SOURCE=tractionDisplacementCorrection/tractionDisplacementCorrectionFvPatchVectorField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacementCorrectionStress -I../solidDisplacementFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/tractionDisplacementCorrectionFvPatchVectorField.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacement/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/tractionDisplacementFvPatchVectorField.o Make/darwinIntel64Gcc47DPOpt/solidDisplacementFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/solidDisplacementFoam +In file included from driftFluxFoam.C:83:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] ++ wmake +Making dependency list for source file interFoam.C +SOURCE=interFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ggdb3 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interFoam.o +SOURCE=solidEquilibriumDisplacementFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacementCorrectionStress -I../solidDisplacementFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/solidEquilibriumDisplacementFoam.o +In file included from interFoam.C:62:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -ItractionDisplacementCorrectionStress -I../solidDisplacementFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/tractionDisplacementCorrectionFvPatchVectorField.o Make/darwinIntel64Gcc47DPOpt/solidEquilibriumDisplacementFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/solidEquilibriumDisplacementFoam ++ wmake +Making dependency list for source file reactingParcelFoam.C +SOURCE=reactingParcelFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/reactingParcelFoam.o +In file included from reactingParcelFoam.C:60:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/driftFluxFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lsampling -lfvOptions -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/driftFluxFoam ++ wmake +Making dependency list for source file sprayFoam.C +SOURCE=sprayFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../reactingParcelFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/spray/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sprayFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/reactingParcelFilmFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lfvOptions -lsampling -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lspecie -lfluidThermophysicalModels -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lregionModels -lradiationModels -lsurfaceFilmModels -lsurfaceFilmDerivedFvPatchFields -lliquidProperties -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lODE -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/reactingParcelFilmFoam ++ wmake libso phaseChangeTwoPhaseMixtures +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C +Making dependency list for source file phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C +Making dependency list for source file Kunz/Kunz.C +Making dependency list for source file Merkle/Merkle.C +Making dependency list for source file SchnerrSauer/SchnerrSauer.C +SOURCE=phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseChangeTwoPhaseMixture.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ggdb3 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/interFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/interFoam ++ wmake interDyMFoam +Making dependency list for source file interDyMFoam.C +In file included from sprayFoam.C:56:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=interDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interDyMFoam.o +In file included from interDyMFoam.C:58:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newPhaseChangeTwoPhaseMixture.o +SOURCE=Kunz/Kunz.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Kunz.o +SOURCE=Merkle/Merkle.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Merkle.o +SOURCE=SchnerrSauer/SchnerrSauer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SchnerrSauer.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libphaseChangeTwoPhaseMixtures.dylib' is up to date. ++ wmake +Making dependency list for source file interPhaseChangeFoam.C +SOURCE=interPhaseChangeFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -IphaseChangeTwoPhaseMixtures/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interPhaseChangeFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/reactingParcelFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lODE -lregionModels -lsurfaceFilmModels -lcombustionModels -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/reactingParcelFoam ++ wmake simpleReactingParcelFoam +Making dependency list for source file simpleReactingParcelFoam.C +In file included from interPhaseChangeFoam.C:89:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from interPhaseChangeFoam.C:63:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=simpleReactingParcelFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/simpleReactingParcelFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/interDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -ldynamicMesh -ldynamicFvMesh -ltopoChangerFvMesh -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/interDyMFoam ++ wmake MRFInterFoam +Making dependency list for source file MRFInterFoam.C +SOURCE=MRFInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MRFInterFoam.o +In file included from MRFInterFoam.C:60:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../reactingParcelFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/spray/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sprayFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -llagrangianSpray -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lODE -lregionModels -lsurfaceFilmModels -lfvOptions -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sprayFoam ++ wmake sprayEngineFoam +Making dependency list for source file sprayEngineFoam.C +SOURCE=sprayEngineFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../../reactingParcelFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/spray/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/sprayEngineFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -IphaseChangeTwoPhaseMixtures/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/interPhaseChangeFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lphaseChangeTwoPhaseMixtures -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/interPhaseChangeFoam ++ wmake interPhaseChangeDyMFoam +Making dependency list for source file interPhaseChangeDyMFoam.C +SOURCE=interPhaseChangeDyMFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I../phaseChangeTwoPhaseMixtures/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interPhaseChangeDyMFoam.o +In file included from interPhaseChangeDyMFoam.C:143:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from interPhaseChangeDyMFoam.C:68:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/MRFInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/MRFInterFoam ++ wmake porousInterFoam +Making dependency list for source file porousInterFoam.C +SOURCE=porousInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/porousInterFoam.o +In file included from porousInterFoam.C:62:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/applications/solvers/combustion/reactingFoam -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/simpleReactingParcelFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lODE -lregionModels -lsurfaceFilmModels -lcombustionModels -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/simpleReactingParcelFoam ++ wmake LTSReactingParcelFoam +Making dependency list for source file LTSReactingParcelFoam.C +SOURCE=LTSReactingParcelFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LTSReactingParcelFoam.o +In file included from LTSReactingParcelFoam.C:58:0: +readTimeControls.H: In function 'int main(int, char**)': +readTimeControls.H:27:8: warning: unused variable 'maxCo' [-Wunused-variable] +readTimeControls.H:30:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +readTimeControls.H:33:8: warning: unused variable 'rDeltaTSmoothingCoeff' [-Wunused-variable] +readTimeControls.H:39:8: warning: unused variable 'alphaTemp' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../../reactingParcelFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/spray/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/engine/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/sprayEngineFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lsampling -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -llagrangianSpray -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lODE -lengine -lregionModels -lsurfaceFilmModels -lfvOptions -lcombustionModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/sprayEngineFoam ++ wmakeLnInclude interfacialModels +wmakeLnInclude: linking include files to interfacialModels/lnInclude ++ wmake libso multiphaseSystem +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phaseModel/phaseModel.C +Making dependency list for source file diameterModels/diameterModel/diameterModel.C +Making dependency list for source file diameterModels/diameterModel/newDiameterModel.C +Making dependency list for source file diameterModels/constantDiameter/constantDiameter.C +Making dependency list for source file diameterModels/isothermalDiameter/isothermalDiameter.C +Making dependency list for source file alphaContactAngle/alphaContactAngleFvPatchScalarField.C +Making dependency list for source file multiphaseSystem.C +SOURCE=phaseModel/phaseModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseModel.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I../phaseChangeTwoPhaseMixtures/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/dynamicFvMesh/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/interPhaseChangeDyMFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lphaseChangeTwoPhaseMixtures -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -ldynamicMesh -ldynamicFvMesh -ltopoChangerFvMesh -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/interPhaseChangeDyMFoam +Making dependency list for source file uncoupledKinematicParcelFoam.C +SOURCE=uncoupledKinematicParcelFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/uncoupledKinematicParcelFoam.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/porousInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -linterfaceProperties -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/porousInterFoam ++ wmake LTSInterFoam +Making dependency list for source file LTSInterFoam.C +SOURCE=LTSInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LTSInterFoam.o +SOURCE=diameterModels/diameterModel/diameterModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diameterModel.o +In file included from setrDeltaT.H:135:0, + from LTSInterFoam.C:78: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:3:7: warning: unused variable 'nAlphaCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +SOURCE=diameterModels/diameterModel/newDiameterModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newDiameterModel.o +SOURCE=diameterModels/constantDiameter/constantDiameter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantDiameter.o +SOURCE=diameterModels/isothermalDiameter/isothermalDiameter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/isothermalDiameter.o +SOURCE=alphaContactAngle/alphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphaContactAngleFvPatchScalarField.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/uncoupledKinematicParcelFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lthermophysicalFunctions -lfluidThermophysicalModels -lspecie -lradiationModels -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -lfiniteVolume -lmeshTools -lregionModels -lsurfaceFilmModels -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/uncoupledKinematicParcelFoam ++ wmake libso multiphaseMixture +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phase/phase.C +Making dependency list for source file alphaContactAngle/alphaContactAngleFvPatchScalarField.C +Making dependency list for source file multiphaseMixture.C +SOURCE=phase/phase.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phase.o +SOURCE=multiphaseSystem.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../phaseModel/lnInclude -I../interfacialModels/lnInclude -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiphaseSystem.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/compressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/intermediate/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/coalCombustion/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/lagrangian/distributionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/specie/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/liquidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/properties/solidMixtureProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/thermophysicalFunctions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/reactionThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/SLGThermo/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/chemistryModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/radiationModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/ODE/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/regionModel/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/regionModels/surfaceFilmModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/combustionModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/LTSReactingParcelFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lmeshTools -lcompressibleTurbulenceModel -lcompressibleRASModels -lcompressibleLESModels -llagrangian -llagrangianIntermediate -llagrangianTurbulence -lspecie -lfluidThermophysicalModels -lliquidProperties -lliquidMixtureProperties -lsolidProperties -lsolidMixtureProperties -lthermophysicalFunctions -lreactionThermophysicalModels -lSLGThermo -lchemistryModel -lradiationModels -lODE -lregionModels -lsurfaceFilmModels -lcombustionModels -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/LTSReactingParcelFoam +Making dependency list for source file potentialFreeSurfaceFoam.C +SOURCE=potentialFreeSurfaceFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/potentialFreeSurfaceFoam.o +SOURCE=alphaContactAngle/alphaContactAngleFvPatchScalarField.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/alphaContactAngleFvPatchScalarField.o +SOURCE=multiphaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -IalphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiphaseMixture.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/LTSInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -linterfaceProperties -ltwoPhaseMixture -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/LTSInterFoam ++ wmake interMixingFoam +Making dependency list for source file incompressibleThreePhaseMixture/threePhaseMixture.C +Making dependency list for source file threePhaseInterfaceProperties/threePhaseInterfaceProperties.C +Making dependency list for source file interMixingFoam.C +SOURCE=incompressibleThreePhaseMixture/threePhaseMixture.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -IincompressibleThreePhaseMixture -IthreePhaseInterfaceProperties -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/threePhaseMixture.o +SOURCE=threePhaseInterfaceProperties/threePhaseInterfaceProperties.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -IincompressibleThreePhaseMixture -IthreePhaseInterfaceProperties -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/threePhaseInterfaceProperties.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/potentialFreeSurfaceFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/potentialFreeSurfaceFoam +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmultiphaseSystem.dylib' is up to date. ++ wmake libso interfacialModels +Making dependency list for source file settlingFoam.C +wmakeLnInclude: linking include files to ./lnInclude +SOURCE=settlingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/settlingFoam.o +Making dependency list for source file dragModels/dragModel/dragModel.C +Making dependency list for source file dragModels/dragModel/newDragModel.C +Making dependency list for source file dragModels/Ergun/Ergun.C +Making dependency list for source file dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C +Making dependency list for source file dragModels/GidaspowSchillerNaumann/GidaspowSchillerNaumann.C +Making dependency list for source file dragModels/SchillerNaumann/SchillerNaumann.C +Making dependency list for source file dragModels/Gibilaro/Gibilaro.C +Making dependency list for source file dragModels/WenYu/WenYu.C +Making dependency list for source file dragModels/SyamlalOBrien/SyamlalOBrien.C +Making dependency list for source file dragModels/blended/blended.C +Making dependency list for source file dragModels/interface/interface.C +Making dependency list for source file heatTransferModels/heatTransferModel/heatTransferModel.C +Making dependency list for source file heatTransferModels/heatTransferModel/newHeatTransferModel.C +Making dependency list for source file heatTransferModels/RanzMarshall/RanzMarshall.C +SOURCE=dragModels/dragModel/dragModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dragModel.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libmultiphaseInterFoam.dylib' is up to date. ++ wmake +Making dependency list for source file multiphaseInterFoam.C +SOURCE=dragModels/dragModel/newDragModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newDragModel.o +SOURCE=multiphaseInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../interFoam -ImultiphaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiphaseInterFoam.o +SOURCE=dragModels/Ergun/Ergun.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Ergun.o +In file included from multiphaseInterFoam.C:50:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=interMixingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -IincompressibleThreePhaseMixture -IthreePhaseInterfaceProperties -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interMixingFoam.o +In file included from alphaEqnsSubCycle.H:1:0, + from interMixingFoam.C:86: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from interMixingFoam.C:80:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:3:7: warning: unused variable 'nAlphaCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:5:7: warning: unused variable 'nAlphaSubCycles' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from interMixingFoam.C:53:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowErgunWenYu.o +SOURCE=dragModels/GidaspowSchillerNaumann/GidaspowSchillerNaumann.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowSchillerNaumann.o +SOURCE=dragModels/SchillerNaumann/SchillerNaumann.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SchillerNaumann.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../interFoam -ImultiphaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/multiphaseInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmultiphaseInterFoam -linterfaceProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/multiphaseInterFoam ++ wmake MRFMultiphaseInterFoam +Making dependency list for source file MRFMultiphaseInterFoam.C +SOURCE=MRFMultiphaseInterFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../../interFoam -I../../interFoam/MRFInterFoam -I../multiphaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/MRFMultiphaseInterFoam.o +SOURCE=dragModels/Gibilaro/Gibilaro.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gibilaro.o +In file included from MRFMultiphaseInterFoam.C:55:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/settlingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/settlingFoam +Making dependency list for source file twoLiquidMixingFoam.C +SOURCE=twoLiquidMixingFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../interFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoLiquidMixingFoam.o +SOURCE=dragModels/WenYu/WenYu.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/WenYu.o +In file included from alphaEqnSubCycle.H:1:0, + from twoLiquidMixingFoam.C:75: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:3:7: warning: unused variable 'nAlphaCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:7:6: warning: unused variable 'MULESCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:9:6: warning: unused variable 'alphaOuterCorrectors' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:17:6: warning: unused variable 'alphaApplyPrevCorr' [-Wunused-variable] +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/alphaControls.H:23:8: warning: unused variable 'icAlpha' [-Wunused-variable] +In file included from twoLiquidMixingFoam.C:52:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -IincompressibleThreePhaseMixture -IthreePhaseInterfaceProperties -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseProperties/alphaContactAngle/alphaContactAngle -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/meshTools/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/fvOptions/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/sampling/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/threePhaseMixture.o Make/darwinIntel64Gcc47DPOpt/threePhaseInterfaceProperties.o Make/darwinIntel64Gcc47DPOpt/interMixingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -ltwoPhaseProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lmeshTools -lfvOptions -lsampling -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/interMixingFoam +SOURCE=dragModels/SyamlalOBrien/SyamlalOBrien.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SyamlalOBrien.o ++ wmakeLnInclude interfacialModels +wmakeLnInclude: linking include files to interfacialModels/lnInclude ++ wmake libso twoPhaseSystem +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phaseModel/phaseModel.C +Making dependency list for source file diameterModels/diameterModel/diameterModel.C +Making dependency list for source file diameterModels/diameterModel/newDiameterModel.C +Making dependency list for source file diameterModels/constantDiameter/constantDiameter.C +Making dependency list for source file diameterModels/isothermalDiameter/isothermalDiameter.C +Making dependency list for source file diameterModels/IATE/IATE.C +Making dependency list for source file diameterModels/IATE/IATEsources/IATEsource/IATEsource.C +Making dependency list for source file diameterModels/IATE/IATEsources/wakeEntrainmentCoalescence/wakeEntrainmentCoalescence.C +Making dependency list for source file diameterModels/IATE/IATEsources/turbulentBreakUp/turbulentBreakUp.C +Making dependency list for source file diameterModels/IATE/IATEsources/randomCoalescence/randomCoalescence.C +Making dependency list for source file BlendedInterfacialModel/blendingMethods/blendingMethod/blendingMethod.C +Making dependency list for source file BlendedInterfacialModel/blendingMethods/blendingMethod/newBlendingMethod.C +Making dependency list for source file BlendedInterfacialModel/blendingMethods/noBlending/noBlending.C +Making dependency list for source file BlendedInterfacialModel/blendingMethods/linear/linear.C +Making dependency list for source file BlendedInterfacialModel/blendingMethods/hyperbolic/hyperbolic.C +Making dependency list for source file phasePair/phasePairKey/phasePairKey.C +Making dependency list for source file phasePair/phasePair/phasePair.C +Making dependency list for source file phasePair/orderedPhasePair/orderedPhasePair.C +Making dependency list for source file twoPhaseSystem.C +SOURCE=dragModels/blended/blended.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blended.o +SOURCE=phaseModel/phaseModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseModel.o +SOURCE=dragModels/interface/interface.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/interface.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I.. -I../../interFoam -I../../interFoam/MRFInterFoam -I../multiphaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/MRFMultiphaseInterFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmultiphaseInterFoam -linterfaceProperties -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/MRFMultiphaseInterFoam +SOURCE=diameterModels/diameterModel/diameterModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/diameterModel.o +SOURCE=heatTransferModels/heatTransferModel/heatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/heatTransferModel.o +SOURCE=heatTransferModels/heatTransferModel/newHeatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newHeatTransferModel.o +SOURCE=diameterModels/diameterModel/newDiameterModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newDiameterModel.o +SOURCE=diameterModels/constantDiameter/constantDiameter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantDiameter.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../interFoam -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/twoPhaseMixture/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/turbulenceModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/twoLiquidMixingFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -ltwoPhaseMixture -lincompressibleTransportModels -lincompressibleTurbulenceModel -lincompressibleRASModels -lincompressibleLESModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/twoLiquidMixingFoam +SOURCE=heatTransferModels/RanzMarshall/RanzMarshall.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../multiphaseSystem/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RanzMarshall.o +SOURCE=diameterModels/isothermalDiameter/isothermalDiameter.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/isothermalDiameter.o +SOURCE=diameterModels/IATE/IATE.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IATE.o +SOURCE=diameterModels/IATE/IATEsources/IATEsource/IATEsource.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/IATEsource.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleMultiphaseEulerianInterfacialModels.dylib' is up to date. ++ wmake +Making dependency list for source file multiphaseEulerFoam.C +SOURCE=diameterModels/IATE/IATEsources/wakeEntrainmentCoalescence/wakeEntrainmentCoalescence.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wakeEntrainmentCoalescence.o +SOURCE=multiphaseEulerFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ImultiphaseSystem/lnInclude -ImultiphaseFixedFluxPressure -IinterfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/LES/LESModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/multiphaseEulerFoam.o +In file included from multiphaseEulerFoam.C:59:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +SOURCE=diameterModels/IATE/IATEsources/turbulentBreakUp/turbulentBreakUp.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentBreakUp.o +SOURCE=diameterModels/IATE/IATEsources/randomCoalescence/randomCoalescence.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/randomCoalescence.o +SOURCE=BlendedInterfacialModel/blendingMethods/blendingMethod/blendingMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/blendingMethod.o +SOURCE=BlendedInterfacialModel/blendingMethods/blendingMethod/newBlendingMethod.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newBlendingMethod.o +SOURCE=BlendedInterfacialModel/blendingMethods/noBlending/noBlending.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noBlending.o +SOURCE=BlendedInterfacialModel/blendingMethods/linear/linear.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/linear.o +SOURCE=BlendedInterfacialModel/blendingMethods/hyperbolic/hyperbolic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/hyperbolic.o +SOURCE=phasePair/phasePairKey/phasePairKey.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phasePairKey.o +SOURCE=phasePair/phasePair/phasePair.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phasePair.o +SOURCE=phasePair/orderedPhasePair/orderedPhasePair.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/orderedPhasePair.o +SOURCE=twoPhaseSystem.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I../twoPhaseSystem -I../interfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoPhaseSystem.o +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -ImultiphaseSystem/lnInclude -ImultiphaseFixedFluxPressure -IinterfacialModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/interfaceProperties/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/singlePhaseTransportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/incompressible/LES/LESModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/turbulenceModels/LES/LESdeltas/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/multiphaseEulerFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lmultiphaseSystem -linterfaceProperties -lincompressibleTransportModels -lcompressibleMultiphaseEulerianInterfacialModels -lincompressibleTurbulenceModel -lincompressibleLESModels -lincompressibleRASModels -lfiniteVolume -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/multiphaseEulerFoam +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleTwoPhaseSystem.dylib' is up to date. ++ wmake libso interfacialModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file dragModels/segregated/segregated.C +Making dependency list for source file dragModels/dragModel/dragModel.C +Making dependency list for source file dragModels/noDrag/noDrag.C +Making dependency list for source file dragModels/dragModel/newDragModel.C +Making dependency list for source file dragModels/Gibilaro/Gibilaro.C +Making dependency list for source file dragModels/Ergun/Ergun.C +Making dependency list for source file dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C +Making dependency list for source file dragModels/GidaspowSchillerNaumann/GidaspowSchillerNaumann.C +Making dependency list for source file dragModels/SchillerNaumann/SchillerNaumann.C +Making dependency list for source file dragModels/SyamlalOBrien/SyamlalOBrien.C +Making dependency list for source file dragModels/TomiyamaCorrelated/TomiyamaCorrelated.C +Making dependency list for source file dragModels/TomiyamaAnalytic/TomiyamaAnalytic.C +Making dependency list for source file dragModels/WenYu/WenYu.C +Making dependency list for source file swarmCorrections/swarmCorrection/swarmCorrection.C +Making dependency list for source file swarmCorrections/swarmCorrection/newSwarmCorrection.C +Making dependency list for source file swarmCorrections/noSwarm/noSwarm.C +Making dependency list for source file swarmCorrections/TomiyamaSwarm/TomiyamaSwarm.C +Making dependency list for source file liftModels/liftModel/liftModel.C +Making dependency list for source file liftModels/liftModel/newLiftModel.C +Making dependency list for source file liftModels/noLift/noLift.C +Making dependency list for source file liftModels/constantLiftCoefficient/constantLiftCoefficient.C +Making dependency list for source file liftModels/TomiyamaLift/TomiyamaLift.C +Making dependency list for source file heatTransferModels/heatTransferModel/heatTransferModel.C +Making dependency list for source file heatTransferModels/heatTransferModel/newHeatTransferModel.C +Making dependency list for source file heatTransferModels/noHeatTransfer/noHeatTransfer.C +Making dependency list for source file heatTransferModels/RanzMarshall/RanzMarshall.C +Making dependency list for source file virtualMassModels/virtualMassModel/virtualMassModel.C +Making dependency list for source file virtualMassModels/virtualMassModel/newVirtualMassModel.C +Making dependency list for source file virtualMassModels/noVirtualMass/noVirtualMass.C +Making dependency list for source file virtualMassModels/constantVirtualMassCoefficient/constantVirtualMassCoefficient.C +Making dependency list for source file virtualMassModels/Lamb/Lamb.C +Making dependency list for source file wallLubricationModels/wallLubricationModel/wallLubricationModel.C +Making dependency list for source file wallLubricationModels/wallLubricationModel/newWallLubricationModel.C +Making dependency list for source file wallLubricationModels/noWallLubrication/noWallLubrication.C +Making dependency list for source file wallLubricationModels/Antal/Antal.C +Making dependency list for source file turbulentDispersionModels/turbulentDispersionModel/turbulentDispersionModel.C +Making dependency list for source file turbulentDispersionModels/turbulentDispersionModel/newTurbulentDispersionModel.C +Making dependency list for source file turbulentDispersionModels/noTurbulentDispersion/noTurbulentDispersion.C +Making dependency list for source file turbulentDispersionModels/constantTurbulentDispersionCoefficient/constantTurbulentDispersionCoefficient.C +Making dependency list for source file turbulentDispersionModels/Gosman/Gosman.C +Making dependency list for source file aspectRatioModels/aspectRatioModel/aspectRatioModel.C +Making dependency list for source file aspectRatioModels/aspectRatioModel/newAspectRatioModel.C +Making dependency list for source file aspectRatioModels/constantAspectRatio/constantAspectRatio.C +Making dependency list for source file aspectRatioModels/VakhrushevEfremov/VakhrushevEfremov.C +SOURCE=dragModels/dragModel/dragModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/dragModel.o +SOURCE=dragModels/dragModel/newDragModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newDragModel.o +SOURCE=dragModels/noDrag/noDrag.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noDrag.o +SOURCE=dragModels/segregated/segregated.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/segregated.o +SOURCE=dragModels/Ergun/Ergun.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Ergun.o +SOURCE=dragModels/Gibilaro/Gibilaro.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gibilaro.o +SOURCE=dragModels/GidaspowErgunWenYu/GidaspowErgunWenYu.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowErgunWenYu.o +SOURCE=dragModels/GidaspowSchillerNaumann/GidaspowSchillerNaumann.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowSchillerNaumann.o +SOURCE=dragModels/SchillerNaumann/SchillerNaumann.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SchillerNaumann.o +SOURCE=dragModels/SyamlalOBrien/SyamlalOBrien.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SyamlalOBrien.o +SOURCE=dragModels/TomiyamaCorrelated/TomiyamaCorrelated.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TomiyamaCorrelated.o +SOURCE=dragModels/TomiyamaAnalytic/TomiyamaAnalytic.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TomiyamaAnalytic.o +SOURCE=dragModels/WenYu/WenYu.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/WenYu.o +SOURCE=swarmCorrections/swarmCorrection/swarmCorrection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/swarmCorrection.o +SOURCE=swarmCorrections/swarmCorrection/newSwarmCorrection.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newSwarmCorrection.o +SOURCE=swarmCorrections/noSwarm/noSwarm.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noSwarm.o +SOURCE=swarmCorrections/TomiyamaSwarm/TomiyamaSwarm.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TomiyamaSwarm.o +SOURCE=liftModels/liftModel/liftModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/liftModel.o +SOURCE=liftModels/liftModel/newLiftModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newLiftModel.o +SOURCE=liftModels/noLift/noLift.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noLift.o +SOURCE=liftModels/constantLiftCoefficient/constantLiftCoefficient.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantLiftCoefficient.o +SOURCE=liftModels/TomiyamaLift/TomiyamaLift.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/TomiyamaLift.o +SOURCE=heatTransferModels/heatTransferModel/heatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/heatTransferModel.o +SOURCE=heatTransferModels/heatTransferModel/newHeatTransferModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newHeatTransferModel.o +SOURCE=heatTransferModels/noHeatTransfer/noHeatTransfer.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noHeatTransfer.o +SOURCE=heatTransferModels/RanzMarshall/RanzMarshall.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/RanzMarshall.o +SOURCE=virtualMassModels/virtualMassModel/virtualMassModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/virtualMassModel.o +SOURCE=virtualMassModels/virtualMassModel/newVirtualMassModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newVirtualMassModel.o +SOURCE=virtualMassModels/noVirtualMass/noVirtualMass.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noVirtualMass.o +SOURCE=virtualMassModels/constantVirtualMassCoefficient/constantVirtualMassCoefficient.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantVirtualMassCoefficient.o +SOURCE=virtualMassModels/Lamb/Lamb.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Lamb.o +SOURCE=wallLubricationModels/wallLubricationModel/wallLubricationModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/wallLubricationModel.o +SOURCE=wallLubricationModels/wallLubricationModel/newWallLubricationModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newWallLubricationModel.o +SOURCE=wallLubricationModels/noWallLubrication/noWallLubrication.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noWallLubrication.o +SOURCE=wallLubricationModels/Antal/Antal.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Antal.o +SOURCE=turbulentDispersionModels/turbulentDispersionModel/turbulentDispersionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/turbulentDispersionModel.o +SOURCE=turbulentDispersionModels/turbulentDispersionModel/newTurbulentDispersionModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newTurbulentDispersionModel.o +SOURCE=turbulentDispersionModels/noTurbulentDispersion/noTurbulentDispersion.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noTurbulentDispersion.o +SOURCE=turbulentDispersionModels/constantTurbulentDispersionCoefficient/constantTurbulentDispersionCoefficient.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantTurbulentDispersionCoefficient.o +SOURCE=turbulentDispersionModels/Gosman/Gosman.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/Gosman.o +SOURCE=aspectRatioModels/aspectRatioModel/aspectRatioModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/aspectRatioModel.o +SOURCE=aspectRatioModels/aspectRatioModel/newAspectRatioModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newAspectRatioModel.o +SOURCE=aspectRatioModels/constantAspectRatio/constantAspectRatio.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/constantAspectRatio.o +SOURCE=aspectRatioModels/VakhrushevEfremov/VakhrushevEfremov.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/VakhrushevEfremov.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libcompressibleEulerianInterfacialModels.dylib' is up to date. ++ wmake libso phaseIncompressibleTurbulenceModels +wmakeLnInclude: linking include files to ./lnInclude +Making dependency list for source file phaseIncompressibleTurbulenceModels.C +Making dependency list for source file kineticTheoryModels/viscosityModel/viscosityModel/viscosityModel.C +Making dependency list for source file phasePressureModel/phasePressureModel.C +Making dependency list for source file kineticTheoryModels/kineticTheoryModel/kineticTheoryModel.C +Making dependency list for source file kineticTheoryModels/viscosityModel/viscosityModel/newViscosityModel.C +Making dependency list for source file kineticTheoryModels/viscosityModel/Gidaspow/GidaspowViscosity.C +Making dependency list for source file kineticTheoryModels/viscosityModel/Syamlal/SyamlalViscosity.C +Making dependency list for source file kineticTheoryModels/viscosityModel/HrenyaSinclair/HrenyaSinclairViscosity.C +Making dependency list for source file kineticTheoryModels/viscosityModel/none/noneViscosity.C +Making dependency list for source file kineticTheoryModels/conductivityModel/conductivityModel/conductivityModel.C +Making dependency list for source file kineticTheoryModels/conductivityModel/conductivityModel/newConductivityModel.C +Making dependency list for source file kineticTheoryModels/conductivityModel/Gidaspow/GidaspowConductivity.C +Making dependency list for source file kineticTheoryModels/conductivityModel/Syamlal/SyamlalConductivity.C +Making dependency list for source file kineticTheoryModels/conductivityModel/HrenyaSinclair/HrenyaSinclairConductivity.C +Making dependency list for source file kineticTheoryModels/radialModel/radialModel/radialModel.C +Making dependency list for source file kineticTheoryModels/radialModel/radialModel/newRadialModel.C +Making dependency list for source file kineticTheoryModels/radialModel/CarnahanStarling/CarnahanStarlingRadial.C +Making dependency list for source file kineticTheoryModels/radialModel/LunSavage/LunSavageRadial.C +Making dependency list for source file kineticTheoryModels/radialModel/SinclairJackson/SinclairJacksonRadial.C +Making dependency list for source file kineticTheoryModels/granularPressureModel/granularPressureModel/granularPressureModel.C +Making dependency list for source file kineticTheoryModels/granularPressureModel/granularPressureModel/newGranularPressureModel.C +Making dependency list for source file kineticTheoryModels/granularPressureModel/Lun/LunPressure.C +Making dependency list for source file kineticTheoryModels/granularPressureModel/SyamlalRogersOBrien/SyamlalRogersOBrienPressure.C +Making dependency list for source file kineticTheoryModels/frictionalStressModel/frictionalStressModel/frictionalStressModel.C +Making dependency list for source file kineticTheoryModels/frictionalStressModel/frictionalStressModel/newFrictionalStressModel.C +Making dependency list for source file kineticTheoryModels/frictionalStressModel/JohnsonJackson/JohnsonJacksonFrictionalStress.C +Making dependency list for source file kineticTheoryModels/frictionalStressModel/Schaeffer/SchaefferFrictionalStress.C +SOURCE=phasePressureModel/phasePressureModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phasePressureModel.o +SOURCE=phaseIncompressibleTurbulenceModels.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/phaseIncompressibleTurbulenceModels.o +SOURCE=kineticTheoryModels/kineticTheoryModel/kineticTheoryModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/kineticTheoryModel.o +SOURCE=kineticTheoryModels/viscosityModel/viscosityModel/viscosityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/viscosityModel.o +SOURCE=kineticTheoryModels/viscosityModel/viscosityModel/newViscosityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newViscosityModel.o +SOURCE=kineticTheoryModels/viscosityModel/Gidaspow/GidaspowViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowViscosity.o +SOURCE=kineticTheoryModels/viscosityModel/Syamlal/SyamlalViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SyamlalViscosity.o +SOURCE=kineticTheoryModels/viscosityModel/HrenyaSinclair/HrenyaSinclairViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/HrenyaSinclairViscosity.o +SOURCE=kineticTheoryModels/viscosityModel/none/noneViscosity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/noneViscosity.o +SOURCE=kineticTheoryModels/conductivityModel/conductivityModel/conductivityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/conductivityModel.o +SOURCE=kineticTheoryModels/conductivityModel/conductivityModel/newConductivityModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newConductivityModel.o +SOURCE=kineticTheoryModels/conductivityModel/Gidaspow/GidaspowConductivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/GidaspowConductivity.o +SOURCE=kineticTheoryModels/conductivityModel/Syamlal/SyamlalConductivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SyamlalConductivity.o +SOURCE=kineticTheoryModels/conductivityModel/HrenyaSinclair/HrenyaSinclairConductivity.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/HrenyaSinclairConductivity.o +SOURCE=kineticTheoryModels/radialModel/radialModel/radialModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/radialModel.o +SOURCE=kineticTheoryModels/radialModel/radialModel/newRadialModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newRadialModel.o +SOURCE=kineticTheoryModels/radialModel/CarnahanStarling/CarnahanStarlingRadial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/CarnahanStarlingRadial.o +SOURCE=kineticTheoryModels/radialModel/LunSavage/LunSavageRadial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LunSavageRadial.o +SOURCE=kineticTheoryModels/radialModel/SinclairJackson/SinclairJacksonRadial.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SinclairJacksonRadial.o +SOURCE=kineticTheoryModels/granularPressureModel/granularPressureModel/granularPressureModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/granularPressureModel.o +SOURCE=kineticTheoryModels/granularPressureModel/granularPressureModel/newGranularPressureModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newGranularPressureModel.o +SOURCE=kineticTheoryModels/granularPressureModel/Lun/LunPressure.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/LunPressure.o +SOURCE=kineticTheoryModels/granularPressureModel/SyamlalRogersOBrien/SyamlalRogersOBrienPressure.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SyamlalRogersOBrienPressure.o +SOURCE=kineticTheoryModels/frictionalStressModel/frictionalStressModel/frictionalStressModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/frictionalStressModel.o +SOURCE=kineticTheoryModels/frictionalStressModel/frictionalStressModel/newFrictionalStressModel.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/newFrictionalStressModel.o +SOURCE=kineticTheoryModels/frictionalStressModel/JohnsonJackson/JohnsonJacksonFrictionalStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/JohnsonJacksonFrictionalStress.o +SOURCE=kineticTheoryModels/frictionalStressModel/Schaeffer/SchaefferFrictionalStress.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/foam/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/transportModel -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -I../twoPhaseSystem/lnInclude -I../interfacialModels/lnInclude -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/SchaefferFrictionalStress.o +'/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/libphaseIncompressibleTurbulenceModels.dylib' is up to date. ++ wmake +Making dependency list for source file twoPhaseEulerFoam.C +SOURCE=twoPhaseEulerFoam.C ; g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IphaseIncompressibleTurbulenceModels/lnInclude -IinterfacialModels/lnInclude -ItwoPhaseSystem/lnInclude -Iaveraging -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -c $SOURCE -o Make/darwinIntel64Gcc47DPOpt/twoPhaseEulerFoam.o +In file included from twoPhaseEulerFoam.C:51:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H: In function 'int main(int, char**)': +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/initContinuityErrs.H:37:8: warning: unused variable 'cumulativeContErr' [-Wunused-variable] +In file included from twoPhaseEulerFoam.C:52:0: +/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude/readTimeControls.H:38:8: warning: unused variable 'maxDeltaT' [-Wunused-variable] +g++-mp-4.7 -m64 -fsignaling-nans -ftrapping-math -DdarwinIntel64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O2 -DNoRepository -ftemplate-depth-100 -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/thermophysicalModels/basic/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/finiteVolume/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/transportModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/turbulenceModels/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/incompressible/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/TurbulenceModels/phaseIncompressible/lnInclude -IphaseIncompressibleTurbulenceModels/lnInclude -IinterfacialModels/lnInclude -ItwoPhaseSystem/lnInclude -Iaveraging -IlnInclude -I. -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OpenFOAM/lnInclude -I/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/src/OSspecific/POSIX/lnInclude -fPIC -Ddarwin -lpthread -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib/openmpi-macport-mp -lPstream Make/darwinIntel64Gcc47DPOpt/twoPhaseEulerFoam.o -L/Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/lib \ + -lfluidThermophysicalModels -lspecie -lturbulenceModels -lincompressibleTurbulenceModels -lphaseIncompressibleTurbulenceModels -lincompressibleTransportModels -lcompressibleTwoPhaseSystem -lcompressibleEulerianInterfacialModels -lfiniteVolume -lmeshTools -lOpenFOAM -ldl -lpthread -lm -o /Users/fcontino/OpenFOAM/OpenFOAM-2.3.x/platforms/darwinIntel64Gcc47DPOpt/bin/twoPhaseEulerFoam diff --git a/src/OSspecific/POSIX/POSIX.C b/src/OSspecific/POSIX/POSIX.C index 92077811..59db83a3 100644 --- a/src/OSspecific/POSIX/POSIX.C +++ b/src/OSspecific/POSIX/POSIX.C @@ -53,7 +53,10 @@ Description #include #include #include +#ifndef darwin #include +#else +#endif #include @@ -1174,6 +1177,14 @@ void* Foam::dlOpen(const fileName& lib, const bool check) } void* handle = ::dlopen(lib.c_str(), RTLD_LAZY|RTLD_GLOBAL); +#ifdef darwin + if(!handle && lib.ext()=="so") { + fileName lName=lib.lessExt()+".dylib"; + handle = + dlopen(lName.c_str(), RTLD_LAZY|RTLD_GLOBAL); + } +#endif + if (!handle && check) { WarningIn("dlOpen(const fileName&, const bool)") @@ -1267,9 +1278,15 @@ static int collectLibsCallback void *data ) { +#ifdef darwin + WarningIn("collectLibsCallback") + << "Not yet implemented for Mac OS X" + << Foam::endl; +#else Foam::DynamicList* ptr = reinterpret_cast*>(data); ptr->append(info->dlpi_name); +#endif return 0; } @@ -1277,7 +1294,13 @@ static int collectLibsCallback Foam::fileNameList Foam::dlLoaded() { DynamicList libs; +#ifdef darwin + WarningIn("dlLoaded") + << "Not yet implemented for Mac OS X" + << endl; +#else dl_iterate_phdr(collectLibsCallback, &libs); +#endif if (POSIX::debug) { std::cout diff --git a/src/OSspecific/POSIX/clockTime/clockTime.H b/src/OSspecific/POSIX/clockTime/clockTime.H index 8708ba94..e4de1fa3 100644 --- a/src/OSspecific/POSIX/clockTime/clockTime.H +++ b/src/OSspecific/POSIX/clockTime/clockTime.H @@ -37,6 +37,9 @@ SourceFiles #define clockTime_H #include +#ifdef darwin +#include +#endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/OSspecific/POSIX/fileStat.C b/src/OSspecific/POSIX/fileStat.C index bf04835f..625f9b65 100644 --- a/src/OSspecific/POSIX/fileStat.C +++ b/src/OSspecific/POSIX/fileStat.C @@ -29,7 +29,9 @@ License #include #include +#ifndef darwin #include +#endif // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // diff --git a/src/OSspecific/POSIX/printStack.C b/src/OSspecific/POSIX/printStack.C index d94451e5..77fbb0b3 100644 --- a/src/OSspecific/POSIX/printStack.C +++ b/src/OSspecific/POSIX/printStack.C @@ -33,6 +33,11 @@ License #include #include #include +#include + +#ifdef darwin +#include +#endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -53,11 +58,22 @@ string pOpen(const string &cmd, label line=0) for (label cnt = 0; cnt <= line; cnt++) { char buffer[MAX]; + char* s = fgets(buffer, MAX-1, cmdPipe); if (s == NULL) { +#ifdef darwin + // workaround for the Python-Script + for(int i=0;i(addressStr); @@ -109,11 +129,19 @@ void printSourceFileAndLine myAddress = nStream.str(); } +#ifndef darwin if (filename[0] == '/') +#else + if (1) +#endif { string line = pOpen ( +#ifndef darwin "addr2line -f --demangle=auto --exe " +#else + "addr2line4Mac.py " +#endif + filename + " " + myAddress, @@ -151,7 +179,11 @@ void getSymbolForRaw { string fcnt = pOpen ( +#ifndef darwin "addr2line -f --demangle=auto --exe " +#else + "addr2line4Mac.py " +#endif + filename + " " + address @@ -166,7 +198,6 @@ void getSymbolForRaw os << "Uninterpreted: " << raw.c_str(); } - void error::safePrintStack(std::ostream& os) { // Get raw stack symbols @@ -231,6 +262,7 @@ void error::printStack(Ostream& os) os << '#' << label(i) << " "; //os << "Raw : " << msg << "\n\t"; +#ifndef darwin { string::size_type lPos = msg.find('['); string::size_type rPos = msg.find(']'); @@ -260,7 +292,38 @@ void error::printStack(Ostream& os) } string::size_type bracketPos = msg.find('('); - +#else + string::size_type counter=0; + while(msg[counter]!=' ') { + counter++; + } + while(msg[counter]==' ') { + counter++; + } + string::size_type fileStart=counter; + while(msg[counter]!=' ') { + counter++; + } + programFile = msg.substr(fileStart,counter-fileStart); + if(programFile=="???") { + char path[1024]; + uint32_t size = sizeof(path); + if (_NSGetExecutablePath(path, &size) == 0) { + programFile=path; + } else { + programFile="unknownFile"; + } + } + while(msg[counter]==' ') { + counter++; + } + string::size_type addrStart=counter; + while(msg[counter]!=' ') { + counter++; + } + address = msg.substr(addrStart,counter-addrStart); +#endif +#ifndef darwin if (bracketPos != string::npos) { string::size_type start = bracketPos+1; @@ -270,7 +333,21 @@ void error::printStack(Ostream& os) if (plusPos != string::npos) { string cName(msg.substr(start, plusPos-start)); +#else + if(1){ + while(msg[counter]==' ') { + counter++; + } + string::size_type nameStart=counter; + while(msg[counter]!=' ') { + counter++; + } + + string::size_type start = counter; + if(1) { + string cName(msg.substr(nameStart,counter-nameStart)); +#endif int status; char* cplusNamePtr = abi::__cxa_demangle ( diff --git a/src/OSspecific/POSIX/signals/sigFpe.C b/src/OSspecific/POSIX/signals/sigFpe.C index 19861c86..3e26c22a 100644 --- a/src/OSspecific/POSIX/signals/sigFpe.C +++ b/src/OSspecific/POSIX/signals/sigFpe.C @@ -42,6 +42,12 @@ License # include +#elif defined(__APPLE__) + +// # include +#include +#include + #endif #include @@ -82,10 +88,40 @@ void* Foam::sigFpe::nanMallocHook_(size_t size, const void *caller) return result; } +#elif defined(__APPLE__) + +void *(*Foam::sigFpe::system_malloc_)(malloc_zone_t *zone, size_t size)=NULL; + +void* Foam::sigFpe::nan_malloc_(malloc_zone_t *zone, size_t size) +{ + void *result=system_malloc_(zone,size); + + // initialize to signalling NaN +# ifdef WM_SP + + const uint32_t sNAN = 0x7ff7fffflu; + uint32_t* dPtr = reinterpret_cast(result); + +# else + + const uint64_t sNAN = 0x7ff7ffffffffffffllu; + uint64_t* dPtr = reinterpret_cast(result); + +# endif + + const size_t nScalars = size/sizeof(scalar); + for (size_t i = 0; i < nScalars; ++i) + { + *dPtr++ = sNAN; + } + + return result; +} + #endif -#ifdef LINUX_GNUC +#if defined(LINUX_GNUC) || defined(__APPLE__) void Foam::sigFpe::sigHandler(int) { @@ -150,6 +186,44 @@ Foam::sigFpe::~sigFpe() __malloc_hook = oldMallocHook_; } + # elif defined(__APPLE__) + + if(system_malloc_!=NULL) { + malloc_zone_t *zone = malloc_default_zone(); + if(zone==NULL) { + FatalErrorIn("Foam__sigFpe::set") + << "Could not get malloc_default_zone()." << endl + << "Seems like this version of Mac OS X doesn't support FOAM_SETNAN" + << endl + << exit(FatalError); + + } + + if(zone->version>=8) + { + vm_protect( + mach_task_self(), + (uintptr_t)zone, + sizeof(malloc_zone_t), + 0, + VM_PROT_READ | VM_PROT_WRITE + );//remove the write protection + } + zone->malloc=system_malloc_; + system_malloc_=NULL; + if(zone->version==8) + { + vm_protect( + mach_task_self(), + (uintptr_t)zone, + sizeof(malloc_zone_t), + 0, + VM_PROT_READ + );//put the write protection back + } + + } + # endif } } @@ -218,6 +292,28 @@ void Foam::sigFpe::set(const bool verbose) NULL ); +# elif defined(__APPLE__) + + struct sigaction newAction; + newAction.sa_handler = sigHandler; + newAction.sa_flags = SA_NODEFER; + sigemptyset(&newAction.sa_mask); + if (sigaction(SIGFPE, &newAction, &oldAction_) < 0) + { + FatalErrorIn + ( + "Foam::sigFpe::set()" + ) << "Cannot set SIGFPE trapping" + << abort(FatalError); + } + _MM_SET_EXCEPTION_MASK(_MM_GET_EXCEPTION_MASK() & ~_MM_MASK_INVALID); + _MM_SET_EXCEPTION_MASK(_MM_GET_EXCEPTION_MASK() & ~_MM_MASK_DIV_ZERO); + + _mm_setcsr( _MM_MASK_MASK &~ + (_MM_MASK_OVERFLOW|_MM_MASK_INVALID|_MM_MASK_DIV_ZERO) ); + + supported=true; + # endif @@ -242,11 +338,56 @@ void Foam::sigFpe::set(const bool verbose) bool supported = false; # ifdef LINUX_GNUC + supported = true; // Set our malloc __malloc_hook = Foam::sigFpe::nanMallocHook_; +#elif defined(__APPLE__) + + if(system_malloc_!=NULL) { + FatalErrorIn("Foam__sigFpe::set") + << "system_malloc_ already reset." << endl + << "This should never happen" + << endl + << exit(FatalError); + } + + malloc_zone_t *zone = malloc_default_zone(); + if(zone==NULL) { + FatalErrorIn("Foam__sigFpe::set") + << "Could not get malloc_default_zone()." << endl + << "Seems like this version of Mac OS X doesn't support FOAM_SETNAN" + << endl + << exit(FatalError); + } + // According to http://bkdc.ubiquity.ro/2011/07/how-to-set-malloc-hooks-in-osx-lion-107.html + if(zone->version>=8) + { + vm_protect( + mach_task_self(), + (uintptr_t)zone, + sizeof(malloc_zone_t), + 0, + VM_PROT_READ | VM_PROT_WRITE + );//remove the write protection + } + system_malloc_=zone->malloc; + zone->malloc=Foam::sigFpe::nan_malloc_; + if(zone->version==8) + { + vm_protect( + mach_task_self(), + (uintptr_t)zone, + sizeof(malloc_zone_t), + 0, + VM_PROT_READ + );//put the write protection back + } + + supported=true; + # endif diff --git a/src/OSspecific/POSIX/signals/sigFpe.H b/src/OSspecific/POSIX/signals/sigFpe.H index 4129749c..fc7ad1ff 100644 --- a/src/OSspecific/POSIX/signals/sigFpe.H +++ b/src/OSspecific/POSIX/signals/sigFpe.H @@ -55,6 +55,10 @@ SourceFiles #include "UList.H" +#ifdef __APPLE__ +#include +#endif + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam @@ -79,12 +83,20 @@ class sigFpe //- NaN malloc function. From malloc_hook manpage. static void* nanMallocHook_(size_t size, const void *caller); +#elif defined (__APPLE__) + + //- pointer to the original malloc that is overrided + static void *(*system_malloc_)(malloc_zone_t *zone, size_t size); + + //- the overriding handler + static void* nan_malloc_(malloc_zone_t *zone, size_t size); + # endif // Static data members -# ifdef LINUX_GNUC +# if defined(LINUX_GNUC) || defined(__APPLE__) //- Handler for caught signals static void sigHandler(int); diff --git a/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C b/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C index f855f79b..0a55a327 100644 --- a/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C +++ b/src/OpenFOAM/db/dictionary/functionEntries/codeStream/codeStream.C @@ -30,6 +30,7 @@ License #include "dynamicCode.H" #include "dynamicCodeContext.H" #include "Time.H" +#include "longLong.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // diff --git a/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C b/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C index c256333c..d969c1e0 100644 --- a/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C +++ b/src/OpenFOAM/db/dynamicLibrary/codedBase/codedBase.C @@ -228,13 +228,15 @@ void Foam::codedBase::createLibrary off_t mySize = Foam::fileSize(libPath); off_t masterSize = mySize; - Pstream::scatter(masterSize); + label scatterMaster=masterSize; + Pstream::scatter(scatterMaster); + masterSize=scatterMaster; if (debug) { Pout<< endl<< "on processor " << Pstream::myProcNo() - << " have masterSize:" << masterSize - << " and localSize:" << mySize + << " have masterSize:" << label(masterSize) + << " and localSize:" << label(mySize) << endl; } @@ -244,9 +246,9 @@ void Foam::codedBase::createLibrary if (debug) { Pout<< "Local file " << libPath - << " not of same size (" << mySize + << " not of same size (" << label(mySize) << ") as master (" - << masterSize << "). Waiting for " + << label(masterSize) << "). Waiting for " << regIOobject::fileModificationSkew << " seconds." << endl; } @@ -264,8 +266,8 @@ void Foam::codedBase::createLibrary ) << "Cannot read (NFS mounted) library " << nl << libPath << nl << "on processor " << Pstream::myProcNo() - << " detected size " << mySize - << " whereas master size is " << masterSize + << " detected size " << label(mySize) + << " whereas master size is " << label(masterSize) << " bytes." << nl << "If your case is not NFS mounted" << " (so distributed) set fileModificationSkew" @@ -277,8 +279,8 @@ void Foam::codedBase::createLibrary if (debug) { Pout<< endl<< "on processor " << Pstream::myProcNo() - << " after waiting: have masterSize:" << masterSize - << " and localSize:" << mySize + << " after waiting: have masterSize:" << label(masterSize) + << " and localSize:" << label(mySize) << endl; } } diff --git a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C index 2f975771..92fc5858 100644 --- a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C +++ b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.C @@ -50,6 +50,11 @@ const char* const Foam::dynamicCode::libTargetRoot = const char* const Foam::dynamicCode::topDirName = "dynamicCode"; +#ifndef darwin +const char* const Foam::dynamicCode::dynamicLibExtension = ".so"; +#else +const char* const Foam::dynamicCode::dynamicLibExtension = ".dylib"; +#endif // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // @@ -334,7 +339,7 @@ Foam::fileName Foam::dynamicCode::codeRelPath() const Foam::fileName Foam::dynamicCode::libRelPath() const { - return codeRelPath()/libSubDir_/"lib" + codeName_ + ".so"; + return codeRelPath()/libSubDir_/"lib" + codeName_ + dynamicLibExtension; } diff --git a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H index 852ba6d9..4dfddc23 100644 --- a/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H +++ b/src/OpenFOAM/db/dynamicLibrary/dynamicCode/dynamicCode.H @@ -109,7 +109,8 @@ protected: //- Top-level directory name for copy/compiling static const char* const topDirName; - + static const char* const dynamicLibExtension; + // Protected Member Functions //- Copy lines while expanding variables @@ -221,7 +222,7 @@ public: // Corresponds to codeRoot()/libSubDir()/lib\.so fileName libPath() const { - return codeRoot_/libSubDir_/"lib" + codeName_ + ".so"; + return codeRoot_/libSubDir_/"lib" + codeName_ + dynamicLibExtension; } //- Path for specified code name relative to \$FOAM_CASE diff --git a/src/OpenFOAM/primitives/Scalar/doubleFloat.H b/src/OpenFOAM/primitives/Scalar/doubleFloat.H index 57373e0b..bfb6691c 100644 --- a/src/OpenFOAM/primitives/Scalar/doubleFloat.H +++ b/src/OpenFOAM/primitives/Scalar/doubleFloat.H @@ -31,6 +31,16 @@ License #include +#ifndef DUMMY_SCALAR_FUNCTIONS +#define DUMMY_SCALAR_FUNCTIONS +inline float j0f(float x) { return float(j0(double(x)));} +inline float j1f(float x) { return float(j1(double(x)));} +inline float y0f(float x) { return float(y0(double(x)));} +inline float y1f(float x) { return float(y1(double(x)));} +inline float jnf(const int n, const float s) { return float(jn(n, double(s))); } +inline float ynf(const int n, const float s) { return float(yn(n, double(s))); } +#endif + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam diff --git a/src/conversion/ensight/part/ensightPart.C b/src/conversion/ensight/part/ensightPart.C index fa89a8ca..e867dfb2 100644 --- a/src/conversion/ensight/part/ensightPart.C +++ b/src/conversion/ensight/part/ensightPart.C @@ -51,7 +51,7 @@ bool Foam::ensightPart::isFieldDefined(const List& field) const { const label id = idList[i]; - if (id >= field.size() || isnan(field[id])) + if (id >= field.size() || std::isnan(field[id])) { return false; } diff --git a/src/conversion/ensight/part/ensightPartIO.C b/src/conversion/ensight/part/ensightPartIO.C index 7fe2e6ea..d52beb20 100644 --- a/src/conversion/ensight/part/ensightPartIO.C +++ b/src/conversion/ensight/part/ensightPartIO.C @@ -63,7 +63,7 @@ void Foam::ensightPart::writeFieldList { forAll(idList, i) { - if (idList[i] >= field.size() || isnan(field[idList[i]])) + if (idList[i] >= field.size() || std::isnan(field[idList[i]])) { os.writeUndef(); } @@ -80,7 +80,7 @@ void Foam::ensightPart::writeFieldList // no idList => perNode forAll(field, i) { - if (isnan(field[i])) + if (std::isnan(field[i])) { os.writeUndef(); } diff --git a/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C b/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C index c97df63b..4c4faf53 100644 --- a/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C +++ b/src/dynamicMesh/fvMeshDistribute/fvMeshDistributeTemplates.C @@ -231,7 +231,7 @@ void Foam::fvMeshDistribute::sendFields // Send all fieldNames. This has to be exactly the same set as is // being received! const GeoField& fld = - subsetter.baseMesh().lookupObject(fieldNames[i]); + subsetter.baseMesh().objectRegistry::lookupObject(fieldNames[i]); tmp tsubfld = subsetter.interpolate(fld); diff --git a/src/dynamicMesh/meshCut/refineCell/refineCell.H b/src/dynamicMesh/meshCut/refineCell/refineCell.H index 191af276..151b8f65 100644 --- a/src/dynamicMesh/meshCut/refineCell/refineCell.H +++ b/src/dynamicMesh/meshCut/refineCell/refineCell.H @@ -35,8 +35,8 @@ SourceFiles #ifndef refineCell_H #define refineCell_H -#include "label.H" #include "vector.H" +#include "label.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -123,4 +123,3 @@ public: #endif // ************************************************************************* // - diff --git a/src/fvOptions/Make/options b/src/fvOptions/Make/options index a98e673d..e8de5c7a 100644 --- a/src/fvOptions/Make/options +++ b/src/fvOptions/Make/options @@ -13,5 +13,4 @@ LIB_LIBS = \ -lfiniteVolume \ -lsampling \ -lmeshTools \ - /*-lsolidThermo*/ \ -lcompressibleTurbulenceModel diff --git a/src/meshTools/meshTools/meshTools.H b/src/meshTools/meshTools/meshTools.H index 08d36f32..fa183395 100644 --- a/src/meshTools/meshTools/meshTools.H +++ b/src/meshTools/meshTools/meshTools.H @@ -35,8 +35,8 @@ SourceFiles #ifndef meshTools_H #define meshTools_H -#include "label.H" #include "vector.H" +#include "label.H" #include "triad.H" #include "labelList.H" #include "pointField.H" diff --git a/src/parallel/decompose/ptscotchDecomp/Make/options b/src/parallel/decompose/ptscotchDecomp/Make/options index acdebd89..9f158964 100644 --- a/src/parallel/decompose/ptscotchDecomp/Make/options +++ b/src/parallel/decompose/ptscotchDecomp/Make/options @@ -8,5 +8,9 @@ EXE_INC = \ -I/usr/include/scotch \ -I../decompositionMethods/lnInclude +ifneq ($(WM_ARCH_BASE),darwin) +RTLIB=-lrt +endif + LIB_LIBS = \ - -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN)/$(FOAM_MPI) -lptscotch -lptscotcherrexit ${LINK_FLAGS} -lrt + -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN)/$(FOAM_MPI) -lptscotch -lptscotcherrexit ${LINK_FLAGS} $(RTLIB) diff --git a/src/parallel/decompose/scotchDecomp/Make/options b/src/parallel/decompose/scotchDecomp/Make/options index 3bb11fba..36d58da4 100644 --- a/src/parallel/decompose/scotchDecomp/Make/options +++ b/src/parallel/decompose/scotchDecomp/Make/options @@ -12,5 +12,9 @@ EXE_INC = \ -I/usr/include/scotch \ -I../decompositionMethods/lnInclude +ifneq ($(WM_ARCH_BASE),darwin) +RTLIB=-lrt +endif + LIB_LIBS = \ - -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN) -lscotch -lscotcherrexit -lrt + -L$(SCOTCH_ROOT)/lib -L$(FOAM_EXT_LIBBIN) -lscotch -lscotcherrexit $(RTLIB) diff --git a/src/renumber/Allwmake b/src/renumber/Allwmake index d7f72d93..17f7beaa 100755 --- a/src/renumber/Allwmake +++ b/src/renumber/Allwmake @@ -20,6 +20,11 @@ wmake $makeType renumberMethods if [ -n "$BOOST_ARCH_PATH" ] then + if [ -n "$WM_USE_MACPORT" ] + then + export BOOST_THREAD_EXTENSION=-mt + fi + wmake $makeType SloanRenumber else echo diff --git a/src/renumber/SloanRenumber/Make/options b/src/renumber/SloanRenumber/Make/options index 492a3ae1..cd2031fc 100644 --- a/src/renumber/SloanRenumber/Make/options +++ b/src/renumber/SloanRenumber/Make/options @@ -1,12 +1,11 @@ EXE_INC = \ - /* -DFULLDEBUG -g -O0 */ \ -I$(BOOST_ARCH_PATH)/include \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/parallel/decompose/decompositionMethods/lnInclude \ -I$(LIB_SRC)/renumber/renumberMethods/lnInclude LIB_LIBS = \ - -L$(BOOST_ARCH_PATH)/lib -lboost_thread \ + -L$(BOOST_ARCH_PATH)/lib -lboost_thread$(BOOST_THREAD_EXTENSION) \ -lmeshTools \ -ldecompositionMethods \ -lrenumberMethods diff --git a/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H b/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H index 70e26756..f9b2be73 100644 --- a/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H +++ b/src/sampling/sampledSurface/writers/ensight/ensightPTraits.H @@ -32,6 +32,7 @@ Description #ifndef ensightPTraits_H #define ensightPTraits_H +#include "vector.H" #include "pTraits.H" #include "fieldTypes.H" diff --git a/tutorials/incompressible/icoFoam/cavity/case.foam b/tutorials/incompressible/icoFoam/cavity/case.foam new file mode 100644 index 00000000..e69de29b diff --git a/tutorials/incompressible/icoFoam/cavity/constant/polyMesh/boundary b/tutorials/incompressible/icoFoam/cavity/constant/polyMesh/boundary new file mode 100644 index 00000000..e77f7214 --- /dev/null +++ b/tutorials/incompressible/icoFoam/cavity/constant/polyMesh/boundary @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 2.3.x | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class polyBoundaryMesh; + location "constant/polyMesh"; + object boundary; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +3 +( + movingWall + { + type wall; + inGroups 1(wall); + nFaces 20; + startFace 760; + } + fixedWalls + { + type wall; + inGroups 1(wall); + nFaces 60; + startFace 780; + } + frontAndBack + { + type empty; + inGroups 1(empty); + nFaces 800; + startFace 840; + } +) + +// ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/case.foam b/tutorials/multiphase/cavitatingFoam/ras/throttle/case.foam new file mode 100644 index 00000000..e69de29b diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/polyMesh/boundary b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/polyMesh/boundary new file mode 100644 index 00000000..57528709 --- /dev/null +++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/polyMesh/boundary @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 2.3.x | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class polyBoundaryMesh; + location "constant/polyMesh"; + object boundary; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +4 +( + inlet + { + type patch; + nFaces 51; + startFace 15151; + } + outlet + { + type patch; + nFaces 51; + startFace 15202; + } + walls + { + type wall; + inGroups 1(wall); + nFaces 436; + startFace 15253; + } + frontBack + { + type empty; + inGroups 1(empty); + nFaces 15420; + startFace 15689; + } +) + +// ************************************************************************* // diff --git a/wmake/Makefile b/wmake/Makefile index 96e18853..d17d8fe7 100644 --- a/wmake/Makefile +++ b/wmake/Makefile @@ -91,7 +91,11 @@ EXE_DEP = $(OBJECTS_DIR)/options LIB = libNULL # Shared library extension +ifeq ($(WM_ARCH_BASE),darwin) +SO = dylib +else SO = so +endif # Project executable EXE = $(WM_PROJECT).out diff --git a/wmake/rules/darwinIntel64Clang/c b/wmake/rules/darwinIntel64Clang/c new file mode 100644 index 00000000..229fb4a2 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/c @@ -0,0 +1,17 @@ +.SUFFIXES: .c .h + +cWARN = -Wall + +cc = $(WM_CC) -m64 -ftrapping-math +# -fsignaling-nans + +include $(RULES)/c$(WM_COMPILE_OPTION) + +cFLAGS = -I/opt/local/include $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ + +LINK_LIBS = $(cDBUG) + +LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress +LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs diff --git a/wmake/rules/darwinIntel64Clang/c++ b/wmake/rules/darwinIntel64Clang/c++ new file mode 100644 index 00000000..96e42ca7 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/c++ @@ -0,0 +1,23 @@ +.SUFFIXES: .C .cxx .cc .cpp + +c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual -Wno-unused-comparison + +CC = $(WM_CXX) -m64 -ftrapping-math +# -fsignaling-nans + +include $(RULES)/c++$(WM_COMPILE_OPTION) + +ptFLAGS = -DNoRepository -ftemplate-depth-100 + +c++FLAGS = -I/opt/local/include $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ +cxxtoo = $(Ctoo) +cctoo = $(Ctoo) +cpptoo = $(Ctoo) + +LINK_LIBS = $(c++DBUG) -lpthread + +LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup +# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream +LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream diff --git a/wmake/rules/darwinIntel64Clang/c++Debug b/wmake/rules/darwinIntel64Clang/c++Debug new file mode 100644 index 00000000..cf8e236f --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/c++Debug @@ -0,0 +1,4 @@ +# c++DBUG = -ggdb2 -DFULLDEBUG +c++DBUG = -g -DFULLDEBUG +# c++OPT = -O0 -fdefault-inline +c++OPT = -O0 diff --git a/wmake/rules/darwinIntel64Clang/c++Opt b/wmake/rules/darwinIntel64Clang/c++Opt new file mode 100644 index 00000000..676aa4cc --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/c++Opt @@ -0,0 +1,5 @@ +c++DBUG = +c++OPT = -O2 +# c++OPT = -O3 +#c++OPT = -march=nocona -O3 +# -ftree-vectorize -ftree-vectorizer-verbose=3 diff --git a/wmake/rules/darwinIntel64Clang/c++Prof b/wmake/rules/darwinIntel64Clang/c++Prof new file mode 100644 index 00000000..3bda4dad --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/c++Prof @@ -0,0 +1,2 @@ +c++DBUG = -pg +c++OPT = -O2 diff --git a/wmake/rules/darwinIntel64Clang/cDebug b/wmake/rules/darwinIntel64Clang/cDebug new file mode 100644 index 00000000..a1a6a649 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/cDebug @@ -0,0 +1,4 @@ +cDBUG = -g -DFULLDEBUG +cOPT = -O0 +# cDBUG = -ggdb -DFULLDEBUG +# cOPT = -O1 -fdefault-inline -finline-functions diff --git a/wmake/rules/darwinIntel64Clang/cOpt b/wmake/rules/darwinIntel64Clang/cOpt new file mode 100644 index 00000000..e30bdec8 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/cOpt @@ -0,0 +1,3 @@ +cDBUG = +cOPT = -O2 +# cOPT = -O3 diff --git a/wmake/rules/darwinIntel64Clang/cProf b/wmake/rules/darwinIntel64Clang/cProf new file mode 100644 index 00000000..ca3ac9bf --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/cProf @@ -0,0 +1,2 @@ +cDBUG = -pg +cOPT = -O2 diff --git a/wmake/rules/darwinIntel64Clang/general b/wmake/rules/darwinIntel64Clang/general new file mode 100644 index 00000000..bd678095 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/general @@ -0,0 +1,9 @@ +CPP = cpp --traditional-cpp $(GFLAGS) +LD = ld + +PROJECT_LIBS = -l$(WM_PROJECT) -ldl + +include $(GENERAL_RULES)/standard + +include $(RULES)/c +include $(RULES)/c++ diff --git a/wmake/rules/darwinIntel64Clang/mplib b/wmake/rules/darwinIntel64Clang/mplib new file mode 100644 index 00000000..8a84b401 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/mplib @@ -0,0 +1,3 @@ +PFLAGS = +PINC = +PLIBS = diff --git a/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH new file mode 100644 index 00000000..c01671a1 --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/mplibMACPORTMPICH @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) +PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich diff --git a/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI new file mode 100644 index 00000000..17117c9e --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/mplibMACPORTOPENMPI @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = $(shell mpicc-openmpi-mp --showme:compile) +PLIBS = $(shell mpicc-openmpi-mp --showme:link) diff --git a/wmake/rules/darwinIntel64Clang/mplibOPENMPI b/wmake/rules/darwinIntel64Clang/mplibOPENMPI new file mode 100644 index 00000000..834d2d3e --- /dev/null +++ b/wmake/rules/darwinIntel64Clang/mplibOPENMPI @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I$(MPI_ARCH_PATH)/include +PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi diff --git a/wmake/rules/darwinIntel64Dragonegg/c b/wmake/rules/darwinIntel64Dragonegg/c new file mode 100644 index 00000000..f83a20d5 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/c @@ -0,0 +1,16 @@ +.SUFFIXES: .c .h + +cWARN = -Wall + +cc = $(WM_CC) -m64 -fsignaling-nans -ftrapping-math + +include $(RULES)/c$(WM_COMPILE_OPTION) + +cFLAGS = $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ + +LINK_LIBS = $(cDBUG) + +LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress +LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs diff --git a/wmake/rules/darwinIntel64Dragonegg/c++ b/wmake/rules/darwinIntel64Dragonegg/c++ new file mode 100644 index 00000000..e1e11a61 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/c++ @@ -0,0 +1,22 @@ +.SUFFIXES: .C .cxx .cc .cpp + +c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor + +CC = $(WM_CXX) -m64 -fsignaling-nans -ftrapping-math + +include $(RULES)/c++$(WM_COMPILE_OPTION) + +ptFLAGS = -DNoRepository -ftemplate-depth-100 + +c++FLAGS = $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ +cxxtoo = $(Ctoo) +cctoo = $(Ctoo) +cpptoo = $(Ctoo) + +LINK_LIBS = $(c++DBUG) -lpthread + +LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup +# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream +LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Debug b/wmake/rules/darwinIntel64Dragonegg/c++Debug new file mode 100644 index 00000000..684957e1 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/c++Debug @@ -0,0 +1,2 @@ +c++DBUG = -ggdb2 -DFULLDEBUG +c++OPT = -O0 -fdefault-inline diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Opt b/wmake/rules/darwinIntel64Dragonegg/c++Opt new file mode 100644 index 00000000..676aa4cc --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/c++Opt @@ -0,0 +1,5 @@ +c++DBUG = +c++OPT = -O2 +# c++OPT = -O3 +#c++OPT = -march=nocona -O3 +# -ftree-vectorize -ftree-vectorizer-verbose=3 diff --git a/wmake/rules/darwinIntel64Dragonegg/c++Prof b/wmake/rules/darwinIntel64Dragonegg/c++Prof new file mode 100644 index 00000000..3bda4dad --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/c++Prof @@ -0,0 +1,2 @@ +c++DBUG = -pg +c++OPT = -O2 diff --git a/wmake/rules/darwinIntel64Dragonegg/cDebug b/wmake/rules/darwinIntel64Dragonegg/cDebug new file mode 100644 index 00000000..72b638f4 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/cDebug @@ -0,0 +1,2 @@ +cDBUG = -ggdb -DFULLDEBUG +cOPT = -O1 -fdefault-inline -finline-functions diff --git a/wmake/rules/darwinIntel64Dragonegg/cOpt b/wmake/rules/darwinIntel64Dragonegg/cOpt new file mode 100644 index 00000000..e30bdec8 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/cOpt @@ -0,0 +1,3 @@ +cDBUG = +cOPT = -O2 +# cOPT = -O3 diff --git a/wmake/rules/darwinIntel64Dragonegg/cProf b/wmake/rules/darwinIntel64Dragonegg/cProf new file mode 100644 index 00000000..ca3ac9bf --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/cProf @@ -0,0 +1,2 @@ +cDBUG = -pg +cOPT = -O2 diff --git a/wmake/rules/darwinIntel64Dragonegg/general b/wmake/rules/darwinIntel64Dragonegg/general new file mode 100644 index 00000000..bd678095 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/general @@ -0,0 +1,9 @@ +CPP = cpp --traditional-cpp $(GFLAGS) +LD = ld + +PROJECT_LIBS = -l$(WM_PROJECT) -ldl + +include $(GENERAL_RULES)/standard + +include $(RULES)/c +include $(RULES)/c++ diff --git a/wmake/rules/darwinIntel64Dragonegg/mplib b/wmake/rules/darwinIntel64Dragonegg/mplib new file mode 100644 index 00000000..8a84b401 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/mplib @@ -0,0 +1,3 @@ +PFLAGS = +PINC = +PLIBS = diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH new file mode 100644 index 00000000..c01671a1 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTMPICH @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) +PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI new file mode 100644 index 00000000..6f5187e0 --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/mplibMACPORTOPENMPI @@ -0,0 +1,5 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +# PINC = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:compile) +# PLIBS = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:link) +PINC = -I/opt/local/include/openmpi-$(WM_MACPORT_MPI_VERSION) +PLIBS = -L/opt/local/lib/openmpi-$(WM_MACPORT_MPI_VERSION) -lmpi diff --git a/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI b/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI new file mode 100644 index 00000000..834d2d3e --- /dev/null +++ b/wmake/rules/darwinIntel64Dragonegg/mplibOPENMPI @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I$(MPI_ARCH_PATH)/include +PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi diff --git a/wmake/rules/darwinIntel64Gcc/c b/wmake/rules/darwinIntel64Gcc/c new file mode 100644 index 00000000..f83a20d5 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/c @@ -0,0 +1,16 @@ +.SUFFIXES: .c .h + +cWARN = -Wall + +cc = $(WM_CC) -m64 -fsignaling-nans -ftrapping-math + +include $(RULES)/c$(WM_COMPILE_OPTION) + +cFLAGS = $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@ + +LINK_LIBS = $(cDBUG) + +LINKLIBSO = $(cc) -dynamiclib -flat_namespace -undefined suppress +LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs diff --git a/wmake/rules/darwinIntel64Gcc/c++ b/wmake/rules/darwinIntel64Gcc/c++ new file mode 100644 index 00000000..e1e11a61 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/c++ @@ -0,0 +1,22 @@ +.SUFFIXES: .C .cxx .cc .cpp + +c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor + +CC = $(WM_CXX) -m64 -fsignaling-nans -ftrapping-math + +include $(RULES)/c++$(WM_COMPILE_OPTION) + +ptFLAGS = -DNoRepository -ftemplate-depth-100 + +c++FLAGS = $(GFLAGS) $(c++WARN) $(c++OPT) $(c++DBUG) $(ptFLAGS) $(LIB_HEADER_DIRS) -fPIC -Ddarwin + +Ctoo = $(WM_SCHEDULER) $(CC) $(c++FLAGS) -c $$SOURCE -o $@ +cxxtoo = $(Ctoo) +cctoo = $(Ctoo) +cpptoo = $(Ctoo) + +LINK_LIBS = $(c++DBUG) -lpthread + +LINKLIBSO = $(CC) $(c++FLAGS) -lpthread -dynamiclib -undefined dynamic_lookup +# LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN) -lOpenFOAM -L$(FOAM_MPI_LIBBIN) -lPstream +LINKEXE = $(CC) $(c++FLAGS) -lpthread -L$(FOAM_LIBBIN)/$(FOAM_MPI) -lPstream diff --git a/wmake/rules/darwinIntel64Gcc/c++Debug b/wmake/rules/darwinIntel64Gcc/c++Debug new file mode 100644 index 00000000..684957e1 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/c++Debug @@ -0,0 +1,2 @@ +c++DBUG = -ggdb2 -DFULLDEBUG +c++OPT = -O0 -fdefault-inline diff --git a/wmake/rules/darwinIntel64Gcc/c++Opt b/wmake/rules/darwinIntel64Gcc/c++Opt new file mode 100644 index 00000000..676aa4cc --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/c++Opt @@ -0,0 +1,5 @@ +c++DBUG = +c++OPT = -O2 +# c++OPT = -O3 +#c++OPT = -march=nocona -O3 +# -ftree-vectorize -ftree-vectorizer-verbose=3 diff --git a/wmake/rules/darwinIntel64Gcc/c++Prof b/wmake/rules/darwinIntel64Gcc/c++Prof new file mode 100644 index 00000000..3bda4dad --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/c++Prof @@ -0,0 +1,2 @@ +c++DBUG = -pg +c++OPT = -O2 diff --git a/wmake/rules/darwinIntel64Gcc/cDebug b/wmake/rules/darwinIntel64Gcc/cDebug new file mode 100644 index 00000000..72b638f4 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/cDebug @@ -0,0 +1,2 @@ +cDBUG = -ggdb -DFULLDEBUG +cOPT = -O1 -fdefault-inline -finline-functions diff --git a/wmake/rules/darwinIntel64Gcc/cOpt b/wmake/rules/darwinIntel64Gcc/cOpt new file mode 100644 index 00000000..e30bdec8 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/cOpt @@ -0,0 +1,3 @@ +cDBUG = +cOPT = -O2 +# cOPT = -O3 diff --git a/wmake/rules/darwinIntel64Gcc/cProf b/wmake/rules/darwinIntel64Gcc/cProf new file mode 100644 index 00000000..ca3ac9bf --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/cProf @@ -0,0 +1,2 @@ +cDBUG = -pg +cOPT = -O2 diff --git a/wmake/rules/darwinIntel64Gcc/general b/wmake/rules/darwinIntel64Gcc/general new file mode 100644 index 00000000..bd678095 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/general @@ -0,0 +1,9 @@ +CPP = cpp --traditional-cpp $(GFLAGS) +LD = ld + +PROJECT_LIBS = -l$(WM_PROJECT) -ldl + +include $(GENERAL_RULES)/standard + +include $(RULES)/c +include $(RULES)/c++ diff --git a/wmake/rules/darwinIntel64Gcc/mplib b/wmake/rules/darwinIntel64Gcc/mplib new file mode 100644 index 00000000..8a84b401 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/mplib @@ -0,0 +1,3 @@ +PFLAGS = +PINC = +PLIBS = diff --git a/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH b/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH new file mode 100644 index 00000000..c01671a1 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/mplibMACPORTMPICH @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I/opt/local/include/mpich-$(WM_MACPORT_MPI_VERSION) +PLIBS = -L/opt/local/lib/mpich-$(WM_MACPORT_MPI_VERSION) -lmpich -lpmpich diff --git a/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI b/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI new file mode 100644 index 00000000..6f5187e0 --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/mplibMACPORTOPENMPI @@ -0,0 +1,5 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +# PINC = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:compile) +# PLIBS = $(shell mpicc-openmpi-$(WM_MACPORT_MPI_VERSION) --showme:link) +PINC = -I/opt/local/include/openmpi-$(WM_MACPORT_MPI_VERSION) +PLIBS = -L/opt/local/lib/openmpi-$(WM_MACPORT_MPI_VERSION) -lmpi diff --git a/wmake/rules/darwinIntel64Gcc/mplibOPENMPI b/wmake/rules/darwinIntel64Gcc/mplibOPENMPI new file mode 100644 index 00000000..834d2d3e --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc/mplibOPENMPI @@ -0,0 +1,3 @@ +PFLAGS = -DOMPI_SKIP_MPICXX +PINC = -I$(MPI_ARCH_PATH)/include +PLIBS = -L$(MPI_ARCH_PATH)/lib -lmpi diff --git a/wmake/rules/darwinIntel64Gcc47 b/wmake/rules/darwinIntel64Gcc47 new file mode 120000 index 00000000..7b90275c --- /dev/null +++ b/wmake/rules/darwinIntel64Gcc47 @@ -0,0 +1 @@ +darwinIntel64Gcc \ No newline at end of file From 15465d9155b28e8f510f8823983286b66761a1e9 Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Mon, 10 Mar 2014 16:59:24 +0100 Subject: [PATCH 04/25] make TDACChemistryModel selectable from the dictionary chemistryProperties setting the keyword TDAC of subDict chemistryType to on. By default, this is set to off and omiting the keyword keep the standard library settings --- etc/config/paraview.sh | 2 +- .../TDACChemistryModel/TDACChemistryModel.C | 1 + .../TDACChemistryModel/TDACChemistryModel.H | 16 +---------- .../basicChemistryModelTemplates.C | 28 +++++++++++++++---- .../makeChemistrySolverTypes.H | 21 ++++++++++++-- 5 files changed, 45 insertions(+), 23 deletions(-) diff --git a/etc/config/paraview.sh b/etc/config/paraview.sh index 7cc92863..a698bb51 100644 --- a/etc/config/paraview.sh +++ b/etc/config/paraview.sh @@ -153,7 +153,7 @@ then unset ParaView_VERSION ParaView_MAJOR ParaView_DIR # needs to be an alias because if it is in the path the Python Shell does not work alias paraview=$PARAVIEW_APP_DIR/Contents/MacOS/paraview - export PATH=$PARAVIEW_APP_DIR/Contents/bin:$PATH + export PATH=$PATH:$PARAVIEW_APP_DIR/Contents/bin fi fi diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C index 83ae025b..fefae97b 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C @@ -36,6 +36,7 @@ Foam::TDACChemistryModel::TDACChemistryModel : chemistryModel(mesh) { + Info<< "New constructor" << endl; } diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H index d1b3f033..8c2f5fb1 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H @@ -52,7 +52,7 @@ namespace Foam class fvMesh; /*---------------------------------------------------------------------------*\ - Class TDAChemistryModel Declaration + Class TDACChemistryModel Declaration \*---------------------------------------------------------------------------*/ template @@ -75,16 +75,6 @@ class TDACChemistryModel scalar solve(const DeltaTType& deltaT); -protected: - - typedef ThermoType thermoType; - - // Private data - - - // Protected Member Functions - - public: //- Runtime type information @@ -130,10 +120,6 @@ public: ) const; - //- Calculates the reaction rates - virtual void calculate(); - - // Chemistry model functions (overriding functions in // chemistryModel.H) diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C b/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C index 7e209602..057c1c3b 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C @@ -25,6 +25,7 @@ License #include "basicChemistryModel.H" #include "basicThermo.H" +#include "Switch.H" // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // @@ -58,10 +59,11 @@ Foam::autoPtr Foam::basicChemistryModel::New Info<< "Selecting chemistry type " << chemistryTypeDict << endl; - const int nCmpt = 7; + const int nCmpt = 8; const char* cmptNames[nCmpt] = { "chemistrySolver", + "chemistryModel", "chemistryThermo", "transport", "thermo", @@ -105,29 +107,45 @@ Foam::autoPtr Foam::basicChemistryModel::New << exit(FatalIOError); } + Switch isTDAC(chemistryTypeDict.lookupOrDefault("TDAC",false)); + // Construct the name of the chemistry type from the components - chemistryTypeName = + if (isTDAC) + { + chemistryTypeName = + word(chemistryTypeDict.lookup("chemistrySolver")) + '<' + + "TDACChemistryModel<" + + word(chemistryTypeDict.lookup("chemistryThermo")) + ',' + + thermoTypeName + ">>"; + } + else + { + chemistryTypeName = word(chemistryTypeDict.lookup("chemistrySolver")) + '<' - + word(chemistryTypeDict.lookup("chemistryThermo")) + ',' - + thermoTypeName + ">"; - + + "chemistryModel<" + + word(chemistryTypeDict.lookup("chemistryThermo")) + ',' + + thermoTypeName + ">>"; + } typename ChemistryModel::fvMeshConstructorTable::iterator cstrIter = ChemistryModel::fvMeshConstructorTablePtr_->find(chemistryTypeName); if (cstrIter == ChemistryModel::fvMeshConstructorTablePtr_->end()) { + FatalErrorIn(ChemistryModel::typeName + "::New(const mesh&)") << "Unknown " << ChemistryModel::typeName << " type " << nl << "chemistryType" << chemistryTypeDict << nl << nl << "Valid " << ChemistryModel ::typeName << " types are:" << nl << nl; + // Get the list of all the suitable chemistry packages available wordList validChemistryTypeNames ( ChemistryModel::fvMeshConstructorTablePtr_->sortedToc() ); + // Build a table of the thermo packages constituent parts // Note: row-0 contains the names of constituent parts List validChemistryTypeNameCmpts diff --git a/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolverTypes.H b/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolverTypes.H index 272b78b4..66e436e3 100644 --- a/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolverTypes.H +++ b/src/thermophysicalModels/chemistryModel/chemistrySolver/chemistrySolver/makeChemistrySolverTypes.H @@ -29,6 +29,7 @@ License #include "chemistrySolver.H" #include "chemistryModel.H" +#include "TDACChemistryModel.H" #include "noChemistrySolver.H" #include "EulerImplicit.H" @@ -39,12 +40,13 @@ License #define makeChemistrySolverType(SS, Comp, Thermo) \ \ typedef SS > SS##Comp##Thermo; \ + typedef SS > TDAC##SS##Comp##Thermo; \ \ defineTemplateTypeNameAndDebugWithName \ ( \ SS##Comp##Thermo, \ - (#SS"<" + word(Comp::typeName_()) \ - + "," + Thermo::typeName() + ">").c_str(), \ + (#SS">").c_str(), \ 0 \ ); \ \ @@ -53,6 +55,21 @@ License Comp, \ SS##Comp##Thermo, \ fvMesh \ + ); \ + \ + defineTemplateTypeNameAndDebugWithName \ + ( \ + TDAC##SS##Comp##Thermo, \ + (#SS">").c_str(), \ + 0 \ + ); \ + \ + addToRunTimeSelectionTable \ + ( \ + Comp, \ + TDAC##SS##Comp##Thermo, \ + fvMesh \ ); From 6c9f58ed1189f5b9c8b69389cbc26ed8c3b096ff Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Tue, 11 Mar 2014 10:09:49 +0100 Subject: [PATCH 05/25] cleaning up TDACChemistryModel.C and update the comments in TDACChemistryModel.H --- .../chemistryModel/TDACChemistryModel/TDACChemistryModel.C | 1 - .../chemistryModel/TDACChemistryModel/TDACChemistryModel.H | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C index fefae97b..83ae025b 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C @@ -36,7 +36,6 @@ Foam::TDACChemistryModel::TDACChemistryModel : chemistryModel(mesh) { - Info<< "New constructor" << endl; } diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H index 8c2f5fb1..8778df91 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H @@ -121,7 +121,7 @@ public: // Chemistry model functions (overriding functions in - // chemistryModel.H) + // chemistryModel.H to take into account the private solve function) //- Solve the reaction system for the given time step // and return the characteristic time @@ -130,12 +130,11 @@ public: //- Solve the reaction system for the given time step // and return the characteristic time virtual scalar solve(const scalarField& deltaT); - + // ODE functions (overriding functions in chemistryModel.H to take into // account the variable number of species) - virtual void derivatives ( const scalar t, From adecbebaffa3ef146d30a60c06fa7f2c15674aff Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Tue, 11 Mar 2014 16:54:53 +0100 Subject: [PATCH 06/25] Adding class mechanismReduction with empty subclasses for methods DRG, DRGEP, DAC, PFA, and EFA. Object mechRed added to TDACChemistryModel to call function to reduce the mechanism at runtime. --- .../chemistryModel/Make/files | 2 + .../TDACChemistryModel/TDACChemistryModel.C | 13 ++ .../TDACChemistryModel/TDACChemistryModel.H | 5 + .../mechanismReduction/DAC/DAC.C | 63 ++++++ .../mechanismReduction/DAC/DAC.H | 153 +++++++++++++++ .../mechanismReduction/DRG/DRG.C | 64 +++++++ .../mechanismReduction/DRG/DRG.H | 101 ++++++++++ .../mechanismReduction/DRGEP/DRGEP.C | 66 +++++++ .../mechanismReduction/DRGEP/DRGEP.H | 166 ++++++++++++++++ .../DRGEP/SortableListDRGEP.C | 154 +++++++++++++++ .../DRGEP/SortableListDRGEP.H | 142 ++++++++++++++ .../mechanismReduction/EFA/EFA.C | 68 +++++++ .../mechanismReduction/EFA/EFA.H | 106 +++++++++++ .../mechanismReduction/EFA/SortableListEFA.C | 164 ++++++++++++++++ .../mechanismReduction/EFA/SortableListEFA.H | 142 ++++++++++++++ .../mechanismReduction/PFA/PFA.C | 64 +++++++ .../mechanismReduction/PFA/PFA.H | 106 +++++++++++ .../makeMechanismReductionTypes.H | 115 +++++++++++ .../makeMechanismReductions.C | 95 ++++++++++ .../mechanismReduction/mechanismReduction.C | 85 +++++++++ .../mechanismReduction/mechanismReduction.H | 179 ++++++++++++++++++ .../mechanismReduction/mechanismReductionI.H | 89 +++++++++ .../mechanismReductionNew.C | 103 ++++++++++ .../basicChemistryModelTemplates.C | 8 +- 24 files changed, 2249 insertions(+), 4 deletions(-) create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.H create mode 100644 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductionTypes.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductions.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.C create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionI.H create mode 100755 src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionNew.C diff --git a/src/thermophysicalModels/chemistryModel/Make/files b/src/thermophysicalModels/chemistryModel/Make/files index ef8c6d84..989cbf00 100644 --- a/src/thermophysicalModels/chemistryModel/Make/files +++ b/src/thermophysicalModels/chemistryModel/Make/files @@ -8,4 +8,6 @@ chemistryModel/rhoChemistryModel/rhoChemistryModels.C chemistrySolver/chemistrySolver/makeChemistrySolvers.C +chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductions.C + LIB = $(FOAM_LIBBIN)/libchemistryModel diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C index 83ae025b..df69e4d7 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.C @@ -36,6 +36,12 @@ Foam::TDACChemistryModel::TDACChemistryModel : chemistryModel(mesh) { + mechRed_ = + mechanismReduction::New + ( + *this, + *this + ); } @@ -47,6 +53,13 @@ Foam::TDACChemistryModel::~TDACChemistryModel() // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // +template +const Foam::PtrList& +Foam::TDACChemistryModel::Y() +{ + return this->Y_; +} + template Foam::tmp diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H index 8778df91..4b376a88 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H @@ -42,6 +42,7 @@ SourceFiles #define TDACChemistryModel_H #include "chemistryModel.H" +#include "mechanismReduction.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -74,6 +75,8 @@ class TDACChemistryModel template scalar solve(const DeltaTType& deltaT); + autoPtr > mechRed_; + public: @@ -93,6 +96,8 @@ public: // Member Functions + const PtrList& Y(); + //- dc/dt = omega, rate of change in concentration, for each species // adapted to work with a variable number of species virtual tmp omega diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.C new file mode 100755 index 00000000..44aeb037 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.C @@ -0,0 +1,63 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM +\\ / O peration | +\\ / A nd | Copyright (C) +\\/ M anipulation | +------------------------------------------------------------------------------- +License +This file is a derivative work of OpenFOAM. + +OpenFOAM is free software: you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with OpenFOAM. If not, see . +\*---------------------------------------------------------------------------*/ + +#include "DAC.H" +#include "TDACChemistryModel.H" + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from components +template +Foam::DAC::DAC +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: +mechanismReduction(dict, chemistry) +{ +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::DAC::~DAC() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + + +template +void Foam::DAC::reduceMechanism +( + const scalarField &c, + const scalar T, + const scalar p +) +{ +} +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.H new file mode 100755 index 00000000..55ebb181 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DAC/DAC.H @@ -0,0 +1,153 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::DAC + +Description + The Dynamic Adaptive Chemistry (DAC) method [1] simplify the chemistry + using the matrix rAB defined by (DRGEP algorithm [2]) + + |sum_i=1->Nr vAi wi dBi| + rAB = --------------------------- , + max(PA, CA) + + PA = sum_i=1->Nr (max (0, vAi wi)) -> production of species A + + CA = sum_i=1->Nr (max (0, -vAi wi)) -> consumption of species A + + where i is the reaction index, Nr the number of reactions, vAi is the net + stoechiometric coefficient of species A in the ith reaction (vAi = v''-v') + , wi is the progress variable of reaction i and dBi equals 1 if reaction i + involves B and O otherwise. + rAB show the error introduced to the production rates of A when B and all + the reactions including it are removed. It is computed as in [3] so that + the algorithm is O(Nr). + + DAC uses a initial set of species that represents the major parts of the + combustion mechanism, i.e. H2/O2, fuel decomposition and CO2 production. + Usualy, it includes the fuel, HO2 and CO. Then it computes the dependance + of these set to the other species. This is done by introducing R-value + defined by + + R_V0 (V) = max_SP(product(rij)) , + + where SP is the set of all possible paths leading from V0 to V and + product(rij) is the chain product of the weights of the edges along the + given path. The R-value for the initial set species is 1. + + When the R-value of a species is larger than a user-defined tolerance + then the species is included in the simplified mechanism. Otherwise, + the species is removed along with all the reactions including it. + + During this process, instead of looking over all species like described + in [1], the algorithm implemented here creates dynamic list to retain + the initialized edges only (see [3]). + + [1] L. Liang, J. G. Stevens, and J. T. Farrell. A dynamic adaptive chemistry + scheme for reactive flow computations. Proceedings of the Combustion + Institute, 32(1):527–534, 2009 + + [2] P. Pepiot-Desjardins and H. Pitsch. An efficient error-propagation-based + reduction method for large chemical kinetic mechanisms.Combustion and Flame, + 154(1-2):67–81, 7 2008 + + [3] T. Lu and C. K. Law. Linear time reduction of large kinetic mechanisms + with directed relation graph: n-heptane and iso-octane. Combustion and + Flame, 144(1-2):24–36, 1 2006 + +SourceFiles + DAC.C + +\*---------------------------------------------------------------------------*/ + +#ifndef DAC_H +#define DAC_H + +#include "OFstream.H" +#include "mechanismReduction.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class DAC Declaration +\*---------------------------------------------------------------------------*/ +template +class DAC +: + public mechanismReduction +{ + + +public: + + //- Runtime type information + TypeName("DAC"); + + + // Constructors + + //- Construct from components + DAC + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + ~DAC(); + + + // Member Functions + + //- Reduce the mechanism + void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "DAC.C" +#endif + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.C new file mode 100755 index 00000000..ded5685c --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.C @@ -0,0 +1,64 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "DRG.H" +#include "addToRunTimeSelectionTable.H" +#include "simpleMatrix.H" + + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +template +Foam::DRG::DRG +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: + mechanismReduction(dict, chemistry) +{} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::DRG::~DRG() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template +void Foam::DRG::reduceMechanism +( + const scalarField &c, + const scalar T, + const scalar p +) +{ + +} + +// ************************************************************************* // \ No newline at end of file diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.H new file mode 100755 index 00000000..718c8f81 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRG/DRG.H @@ -0,0 +1,101 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::DRG + +Description + Implementation of the Directed Relation Graph (DRG) method + +SourceFiles + DRG.C + +\*---------------------------------------------------------------------------*/ + +#ifndef DRG_H +#define DRG_H + +#include "mechanismReduction.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class DRG Declaration +\*---------------------------------------------------------------------------*/ +template +class DRG +: + public mechanismReduction +{ + +public: + + //- Runtime type information + TypeName("DRG"); + + + // Constructors + + //- Construct from components + DRG + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + ~DRG(); + + + // Member Functions + + //- Reduce the mechanism + void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ) ; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "DRG.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.C new file mode 100755 index 00000000..6d8a14d0 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.C @@ -0,0 +1,66 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . +\*---------------------------------------------------------------------------*/ + +#include "DRGEP.H" +#include "addToRunTimeSelectionTable.H" +#include +#include + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from components +template +Foam::DRGEP::DRGEP +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: + mechanismReduction(dict, chemistry) +{ +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::DRGEP::~DRGEP() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + + +template +void Foam::DRGEP::reduceMechanism +( + const scalarField &c, + const scalar T, + const scalar p +) +{ +} + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.H new file mode 100755 index 00000000..a4da8c76 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/DRGEP.H @@ -0,0 +1,166 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::DRGEP + +Description + The DRGEP algorithm [1] is based on + + |sum_i=1->Nr vAi wi dBi| + rAB = --------------------------- , + max(PA, CA) + + PA = sum_i=1->Nr (max (0, vAi wi)) -> production of species A + + CA = sum_i=1->Nr (max (0, -vAi wi)) -> consumption of species A + + where i is the reaction index, Nr the number of reactions, vAi is the net + stoechiometric coefficient of species A in the ith reaction (vAi = v''-v') + , wi is the progress variable of reaction i and dBi equals 1 if reaction i + involves B and O otherwise. + rAB show the error introduced to the production rates of A when B and all + the reactions including it are removed. It is computed as in [2] so that + the algorithm is O(Nr). + + DAC uses a initial set of species that represents the major parts of the + combustion mechanism, i.e. H2/O2, fuel decomposition and CO2 production. + Usualy, it includes the fuel, HO2 and CO. Then it computes the dependance + of these set to the other species. This is done by introducing R-value + defined by + + R_V0 (V) = max_SP(product(rij)) , + + where SP is the set of all possible paths leading from V0 to V and + product(rij) is the chain product of the weights of the edges along the + given path. The R-value for the initial set species is 1. + + When the R-value of a species is larger than a user-defined tolerance + then the species is included in the simplified mechanism. Otherwise, + the species is removed along with all the reactions including it. + + During this process, instead of looking over all species like described + in [1], the algorithm implemented here creates dynamic list to retain + the initialized edges only (see [2]). + + To avoid using the target species when they are not contributing yet or + anymore to the system, a coefficient based on the exchange of element is + introduced: + + NTa |PT - CT| + alphaTa = ---------------- + Pa + + Pa = sum_speciesS NSa max(0, PS-CS) + + where 'a' refers to different elements present in the system + (namely C, H, O and N for conventionail hydrocarbon combustion), + NTa is the number of element a in species T. + When this coefficient alpha is below the specified threshold, the species is + removed from the search initiating set. In the original paper from + Pepiot-Desjardins et al.[2], this coefficient is further transformed to + compute a global normalized scaling coefficient but here as it is dynamicly + computed, alpha is not introduced in the calculation of R. + + [1] P. Pepiot-Desjardins and H. Pitsch. An efficient error-propagation-based + reduction method for large chemical kinetic mechanisms.Combustion and Flame, + 154(1-2):67–81, 7 2008 + + [2] T. Lu and C. K. Law. Linear time reduction of large kinetic mechanisms + with directed relation graph: n-heptane and iso-octane. Combustion and + Flame, 144(1-2):24–36, 1 2006 + +SourceFiles + DRGEP.C + +\*---------------------------------------------------------------------------*/ + +#ifndef DRGEP_H +#define DRGEP_H + +#include "mechanismReduction.H" + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class ode Declaration +\*---------------------------------------------------------------------------*/ + +template +class DRGEP +: + public mechanismReduction +{ + +public: + + //- Runtime type information + TypeName("DRGEP"); + + + // Constructors + + //- Construct from components + DRGEP + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + ~DRGEP(); + + + // Member Functions + + //- Reduce the mechanism + void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ) ; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "DRGEP.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.C new file mode 100755 index 00000000..9c8951a9 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.C @@ -0,0 +1,154 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "OSspecific.H" +#include + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from List +template +Foam::SortableListDRGEP::SortableListDRGEP(const List& values) +: + List(values), + indices_(values.size()) +{ + sort(); +} + + +// Construct given size. Sort later on. +template +Foam::SortableListDRGEP::SortableListDRGEP(const label size) +: + List(size), + indices_(size) +{} + + +// Construct given size and initial value. Sort later on. +template +Foam::SortableListDRGEP::SortableListDRGEP(const label size, const Type& val) +: + List(size, val), + indices_(size) +{} + + +// Construct as copy. +template +Foam::SortableListDRGEP::SortableListDRGEP(const SortableListDRGEP& lst) +: + List(lst), + indices_(lst.indices()) +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template +void Foam::SortableListDRGEP::setSize(const label newSize) +{ + List::setSize(newSize); + indices_.setSize(newSize); +} + + +template +void Foam::SortableListDRGEP::sort() +{ + forAll(indices_, i) + { + indices_[i] = i; + } + + Foam::sort(indices_, less(*this)); + + List tmpValues(this->size()); + + forAll(indices_, i) + { + tmpValues[i] = this->operator[](indices_[i]); + } + + List::transfer(tmpValues); +} + + +template +void Foam::SortableListDRGEP::partialSort(int M) +{ + forAll(indices_, i) + { + indices_[i] = i; + } + + std::partial_sort + ( + indices_.begin(), + indices_.begin()+M, + indices_.end(), + less(*this) + ); +} + + +template +void Foam::SortableListDRGEP::stableSort() +{ + forAll(indices_, i) + { + indices_[i] = i; + } + + Foam::stableSort(indices_, less(*this)); + + List tmpValues(this->size()); + + forAll(indices_, i) + { + tmpValues[i] = this->operator[](indices_[i]); + } + + List::transfer(tmpValues); +} + + +// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // + +template +void +Foam::SortableListDRGEP::operator=(const SortableListDRGEP& rhs) +{ + List::operator=(rhs); + indices_ = rhs.indices(); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.H new file mode 100755 index 00000000..504d60e9 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/DRGEP/SortableListDRGEP.H @@ -0,0 +1,142 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::SortableListDRGEP + +Description + A list that is sorted upon construction or when explicitly requested + with the sort() method. + +SourceFiles + SortableListDRGEP.C + +\*---------------------------------------------------------------------------*/ + +#ifndef SortableListDRGEP_H +#define SortableListDRGEP_H + +#include "labelList.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class SortableListDRGEP Declaration +\*---------------------------------------------------------------------------*/ + +template +class SortableListDRGEP +: + public List +{ + // Private data + + //- Original indices + labelList indices_; + + +public: + + // Public classes + + //- Less function class used by the sort function + class less + { + const UList& values_; + + public: + + less(const UList& values) + : + values_(values) + {} + + bool operator()(const label a, const label b) + { + return values_[a] < values_[b]; + } + }; + + + // Constructors + + //- Construct from List, sorting the elements. Starts with indices set + // to index in argument + explicit SortableListDRGEP(const List&); + + //- Construct given size. Sort later on. + explicit SortableListDRGEP(const label size); + + //- Construct given size and initial value. Sort later on. + SortableListDRGEP(const label size, const Type&); + + //- Construct as copy. + SortableListDRGEP(const SortableListDRGEP&); + + + // Member Functions + + //- Return the list of sorted indices. Updated every sort. + const labelList& indices() const + { + return indices_; + } + + //- Size the list. If grow can cause undefined indices (until next sort) + void setSize(const label); + + //- Sort the list (if changed after construction time) + void sort(); + + //- Partial sort the list (if changed after construction time) + void partialSort(int M); + + //- Sort the list (if changed after construction time) + void stableSort(); + + + // Member Operators + + void operator=(const SortableListDRGEP&); + +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "SortableListDRGEP.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.C new file mode 100755 index 00000000..d136e6a7 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.C @@ -0,0 +1,68 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "EFA.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from components +template +Foam::EFA::EFA +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: + mechanismReduction(dict, chemistry) +{ +} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::EFA::~EFA() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + + +template +void Foam::EFA::reduceMechanism +( + const scalarField &c, + const scalar T, + const scalar p +) +{ +} + + + + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.H new file mode 100755 index 00000000..d3be85e1 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/EFA.H @@ -0,0 +1,106 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::EFA + +Description + + +SourceFiles + EFA.C + +\*---------------------------------------------------------------------------*/ + +#ifndef EFA_H +#define EFA_H + +#include "mechanismReduction.H" +#include +#include +#include +#include + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class ode Declaration +\*---------------------------------------------------------------------------*/ + +template +class EFA +: + public mechanismReduction +{ + +public: + + //- Runtime type information + TypeName("EFA"); + + + // Constructors + + //- Construct from components + EFA + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + ~EFA(); + + + // Member Functions + + //- Reduce the mechanism + void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ) ; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "EFA.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.C new file mode 100755 index 00000000..445ce15c --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.C @@ -0,0 +1,164 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "OSspecific.H" +#include + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from List +template +Foam::SortableListEFA::SortableListEFA(const List& values) +: + List(values), + indices_(values.size()) +{ + sort(); +} + + +// Construct given size. Sort later on. +template +Foam::SortableListEFA::SortableListEFA(const label size) +: + List(size), + indices_(size) +{ + forAll(indices_, i) + { + indices_[i] = i; + } +} + + +// Construct given size and initial value. Sort later on. +template +Foam::SortableListEFA::SortableListEFA(const label size, const Type& val) +: + List(size, val), + indices_(size) +{ + forAll(indices_, i) + { + indices_[i] = i; + } +} + + +// Construct as copy. +template +Foam::SortableListEFA::SortableListEFA(const SortableListEFA& lst) +: + List(lst), + indices_(lst.indices()) +{ + forAll(indices_, i) + { + indices_[i] = i; + } + +} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template +void Foam::SortableListEFA::setSize(const label newSize) +{ + List::setSize(newSize); + indices_.setSize(newSize); +} + + +template +void Foam::SortableListEFA::sort() +{ + forAll(indices_, i) + { + indices_[i] = i; + } + + Foam::sort(indices_, less(*this)); + + List tmpValues(this->size()); + + forAll(indices_, i) + { + tmpValues[i] = this->operator[](indices_[i]); + } + + List::transfer(tmpValues); +} + + +template +void Foam::SortableListEFA::partialSort(int M, int start) +{ + std::partial_sort + ( + indices_.begin()+start, + indices_.begin()+start+M, + indices_.end(), + more(*this) + ); +} + + +template +void Foam::SortableListEFA::stableSort() +{ + forAll(indices_, i) + { + indices_[i] = i; + } + + Foam::stableSort(indices_, less(*this)); + + List tmpValues(this->size()); + + forAll(indices_, i) + { + tmpValues[i] = this->operator[](indices_[i]); + } + + List::transfer(tmpValues); +} + + +// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // + +template +void Foam::SortableListEFA::operator=(const SortableListEFA& rhs) +{ + List::operator=(rhs); + indices_ = rhs.indices(); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.H new file mode 100755 index 00000000..78c93aae --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/EFA/SortableListEFA.H @@ -0,0 +1,142 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::SortableListEFA + +Description + A list that is sorted upon construction or when explicitly requested + with the sort() method. + +SourceFiles + SortableListEFA.C + +\*---------------------------------------------------------------------------*/ + +#ifndef SortableListEFA_H +#define SortableListEFA_H + +#include "labelList.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class SortableListEFA Declaration +\*---------------------------------------------------------------------------*/ + +template +class SortableListEFA +: + public List +{ + // Private data + + //- Original indices + labelList indices_; + + +public: + + // Public classes + + //- Less function class used by the sort function + class more + { + const UList& values_; + + public: + + more(const UList& values) + : + values_(values) + {} + + bool operator()(const label a, const label b) + { + return values_[a] > values_[b]; + } + }; + + + // Constructors + + //- Construct from List, sorting the elements. Starts with indices set + // to index in argument + explicit SortableListEFA(const List&); + + //- Construct given size. Sort later on. + explicit SortableListEFA(const label size); + + //- Construct given size and initial value. Sort later on. + SortableListEFA(const label size, const Type&); + + //- Construct as copy. + SortableListEFA(const SortableListEFA&); + + + // Member Functions + + //- Return the list of sorted indices. Updated every sort. + const labelList& indices() const + { + return indices_; + } + + //- Size the list. If grow can cause undefined indices (until next sort) + void setSize(const label); + + //- Sort the list (if changed after construction time) + void sort(); + + //- Partial sort the list (if changed after construction time) + void partialSort(int M, int start); + + //- Sort the list (if changed after construction time) + void stableSort(); + + + // Member Operators + + void operator=(const SortableListEFA&); + +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "SortableListEFA.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.C new file mode 100755 index 00000000..a2c5af9f --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.C @@ -0,0 +1,64 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "PFA.H" +#include "addToRunTimeSelectionTable.H" + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from components +template +Foam::PFA::PFA +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: + mechanismReduction(dict, chemistry) +{} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template +Foam::PFA::~PFA() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + + +template +void Foam::PFA::reduceMechanism +( + const scalarField &c, + const scalar T, + const scalar p +) +{ + } + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.H new file mode 100755 index 00000000..c5a4fe4c --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/PFA/PFA.H @@ -0,0 +1,106 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::PFA + +Description + Path flux analysis + +SourceFiles + PFA.C + +\*---------------------------------------------------------------------------*/ + +#ifndef PFA_H +#define PFA_H + +#include "mechanismReduction.H" + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + +/*---------------------------------------------------------------------------*\ + Class ode Declaration +\*---------------------------------------------------------------------------*/ + +template +class PFA +: + public mechanismReduction +{ + // Private data + + + +public: + + //- Runtime type information + TypeName("PFA"); + + + // Constructors + + //- Construct from components + PFA + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + ~PFA(); + + + // Member Functions + + //- Reduce the mechanism + void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ); +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "PFA.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductionTypes.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductionTypes.H new file mode 100644 index 00000000..7dbd3298 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductionTypes.H @@ -0,0 +1,115 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#ifndef makeMechanismReductionTypes_H +#define makeMechanismReductionTypes_H + +#include "mechanismReduction.H" + + +#include "DAC.H" +#include "DRG.H" +#include "DRGEP.H" +#include "EFA.H" +#include "PFA.H" + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#define makeMechanismReductionType(SS, Comp, Thermo) \ + \ + typedef SS SS##Comp##Thermo; \ + \ + defineTemplateTypeNameAndDebugWithName \ + ( \ + SS##Comp##Thermo, \ + (#SS"<" + word(Comp::typeName_()) \ + + "," + Thermo::typeName() + ">").c_str(), \ + 0 \ + ); \ + \ + mechanismReduction:: \ + adddictionaryConstructorToTable > \ + add##SS##Comp##Thermo##ConstructorToTable_; + + +#define makeMechanismReductionTypes(CompChemModel,Thermo) \ + \ + typedef mechanismReduction \ + mechanismReduction##CompChemModel##Thermo; \ + \ + defineTemplateTypeNameAndDebugWithName \ + ( \ + mechanismReduction##CompChemModel##Thermo, \ + "mechanismReduction<"#CompChemModel","#Thermo">", \ + 0 \ + ); \ + \ + defineTemplateRunTimeSelectionTable \ + ( \ + mechanismReduction##CompChemModel##Thermo, \ + dictionary \ + ); \ + \ + makeMechanismReductionType \ + ( \ + DAC, \ + CompChemModel, \ + Thermo \ + ); \ + \ + makeMechanismReductionType \ + ( \ + DRG, \ + CompChemModel, \ + Thermo \ + ); \ + \ + makeMechanismReductionType \ + ( \ + DRGEP, \ + CompChemModel, \ + Thermo \ + ); \ + \ + makeMechanismReductionType \ + ( \ + EFA, \ + CompChemModel, \ + Thermo \ + ); \ + \ + makeMechanismReductionType \ + ( \ + PFA, \ + CompChemModel, \ + Thermo \ + ); \ + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductions.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductions.C new file mode 100755 index 00000000..bd568f16 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/makeMechanismReductions.C @@ -0,0 +1,95 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "makeMechanismReductionTypes.H" + +#include "thermoPhysicsTypes.H" + +#include "psiChemistryModel.H" +#include "rhoChemistryModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + // Chemistry solvers based on sensibleEnthalpy + makeMechanismReductionTypes(psiChemistryModel, constGasHThermoPhysics); + makeMechanismReductionTypes(psiChemistryModel, gasHThermoPhysics); + makeMechanismReductionTypes + ( + psiChemistryModel, + constIncompressibleGasHThermoPhysics + ); + makeMechanismReductionTypes + ( + psiChemistryModel, + incompressibleGasHThermoPhysics) + ; + makeMechanismReductionTypes(psiChemistryModel, icoPoly8HThermoPhysics); + makeMechanismReductionTypes(rhoChemistryModel, constGasHThermoPhysics); + makeMechanismReductionTypes(rhoChemistryModel, gasHThermoPhysics); + makeMechanismReductionTypes + ( + rhoChemistryModel, + constIncompressibleGasHThermoPhysics + ); + makeMechanismReductionTypes + ( + rhoChemistryModel, + incompressibleGasHThermoPhysics + ); + makeMechanismReductionTypes(rhoChemistryModel, icoPoly8HThermoPhysics); + + // Chemistry solvers based on sensibleInternalEnergy + makeMechanismReductionTypes(psiChemistryModel, constGasEThermoPhysics); + makeMechanismReductionTypes(psiChemistryModel, gasEThermoPhysics); + makeMechanismReductionTypes + ( + psiChemistryModel, + constIncompressibleGasEThermoPhysics + ); + makeMechanismReductionTypes + ( + psiChemistryModel, + incompressibleGasEThermoPhysics + ); + makeMechanismReductionTypes(psiChemistryModel, icoPoly8EThermoPhysics); + makeMechanismReductionTypes(rhoChemistryModel, constGasEThermoPhysics); + makeMechanismReductionTypes(rhoChemistryModel, gasEThermoPhysics); + makeMechanismReductionTypes + ( + rhoChemistryModel, + constIncompressibleGasEThermoPhysics + ); + makeMechanismReductionTypes + ( + rhoChemistryModel, + incompressibleGasEThermoPhysics + ); + makeMechanismReductionTypes(rhoChemistryModel, icoPoly8EThermoPhysics); +} + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.C new file mode 100755 index 00000000..5b7a67b6 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.C @@ -0,0 +1,85 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2014 Francesco Contino + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "mechanismReduction.H" +#include "Switch.H" +#include "error.H" +#include "TDACChemistryModel.H" + +namespace Foam +{ + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +// Construct from components +template +Foam::mechanismReduction::mechanismReduction +( + const Foam::IOdictionary& dict, + Foam::TDACChemistryModel& chemistry +) +: + dict_(dict), + chemistry_(&chemistry), + activeSpecies_(chemistry.nSpecie(),false), + NsSimp_(chemistry.nSpecie()), + nSpecie_(chemistry.nSpecie()), + coeffsDict_(dict.subDict("mechanismReduction")), + tolerance_(readScalar(coeffsDict_.lookup("tolerance"))), + // initSet_(coeffsDict_.subDict("initialSet")), + // searchInitSet_(initSet_.size()), + active_(coeffsDict_.lookup("active")) +{ + label j=0; + for (label i=0; i +Foam::mechanismReduction::~mechanismReduction() +{} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.H new file mode 100755 index 00000000..cb831ada --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReduction.H @@ -0,0 +1,179 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2014 Francesco Contino + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::mechanismReduction + +Description + An abstract class for methods of chemical mechanism reduction + +SourceFiles + mechanismReduction.C + +\*---------------------------------------------------------------------------*/ + +#ifndef mechanismReduction_H +#define mechanismReduction_H + +#include "IOdictionary.H" +#include "Switch.H" +#include "scalarField.H" +#include "autoPtr.H" +#include "runTimeSelectionTables.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +template +class TDACChemistryModel; + +/*---------------------------------------------------------------------------*\ + Class chemistrySolver Declaration +\*---------------------------------------------------------------------------*/ +template +class mechanismReduction +{ + + +protected: + + const IOdictionary& dict_; + TDACChemistryModel* chemistry_; + + //List of active species (active = true) + List activeSpecies_; + //Number of active species + label NsSimp_; + //Number of species + const label nSpecie_; + + //Dictionary that store the algorithm data + const dictionary coeffsDict_; + +private: + + //Tolerance for the mechanism reduction algorithm + const scalar tolerance_; + //Dictionary that store the initial set + const dictionary initSet_; + + //List of label for the search initiating set + labelList searchInitSet_; + + //Is mechanism reduction active? + const Switch active_; + +public: + + //- Runtime type information + TypeName("mechanismReduction"); + + + // Declare runtime constructor selection table + declareRunTimeSelectionTable + ( + autoPtr, + mechanismReduction, + dictionary, + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ), + (dict, chemistry) + ); + + + // Constructors + + //- Construct from components + mechanismReduction + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Selector + + static autoPtr > New + ( + const IOdictionary& dict, + TDACChemistryModel& chemistry + ); + + + // Destructor + + virtual ~mechanismReduction(); + + + // Member Functions + + //- Reduce the mechanism + virtual void reduceMechanism + ( + const scalarField &c, + const scalar T, + const scalar p + ) = 0; + + //- Return the active species + inline const List& activeSpecies() const; + + //- Return the number of active species + inline label NsSimp(); + + //- Return the initial number of species + inline label nSpecie(); + + //- Return the tolerance + inline scalar tolerance() const; + + inline const labelList& searchInitSet() const; + + inline Switch active(); + +}; + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#include "mechanismReductionI.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "mechanismReduction.C" +# include "mechanismReductionNew.C" +#endif + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionI.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionI.H new file mode 100755 index 00000000..2a895225 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionI.H @@ -0,0 +1,89 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +Class + Foam::mechanismReduction + +Description + An abstract class for reducing chemical mechanism + +SourceFiles + mechanismReduction.C + +\*---------------------------------------------------------------------------*/ + +#include "IOdictionary.H" +#include "scalarField.H" +#include "autoPtr.H" +#include "runTimeSelectionTables.H" + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template +inline const Foam::List& +Foam::mechanismReduction::activeSpecies() const +{ + return activeSpecies_; +} + +template +inline Foam::label +Foam::mechanismReduction::NsSimp() +{ + return NsSimp_; +} + + +template +inline Foam::label +Foam::mechanismReduction::nSpecie() +{ + return nSpecie_; +} + + +template +inline Foam::scalar +Foam::mechanismReduction::tolerance() const +{ + return tolerance_; +} + + +template +inline const Foam::labelList& +Foam::mechanismReduction::searchInitSet() const +{ + return searchInitSet_; +} + +template +inline Foam::Switch +Foam::mechanismReduction::active() +{ + return active_; +} + + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionNew.C b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionNew.C new file mode 100755 index 00000000..803aa578 --- /dev/null +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/mechanismReduction/mechanismReduction/mechanismReductionNew.C @@ -0,0 +1,103 @@ +/*---------------------------------------------------------------------------*\ +========= | +\\ / F ield | Unsupported Contributions for OpenFOAM + \\ / O peration | + \\ / A nd | Copyright (C) 2014 Francesco Contino + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is a derivative work of OpenFOAM. + + OpenFOAM is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM. If not, see . + +\*---------------------------------------------------------------------------*/ + +#include "mechanismReduction.H" + + +// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // +template +Foam::autoPtr > +Foam::mechanismReduction::New +( + const IOdictionary& dict, + TDACChemistryModel& chemistry +) +{ + + IOdictionary thermoDict + ( + IOobject + ( + "thermophysicalProperties", + dict.path(), + dict.db(), + IOobject::MUST_READ_IF_MODIFIED, + IOobject::NO_WRITE, + false + ) + ); + + word thermoTypeName; + + if (thermoDict.isDict("thermoType")) + { + const dictionary& thermoTypeDict(thermoDict.subDict("thermoType")); + thermoTypeName = + word(thermoTypeDict.lookup("transport")) + '<' + + word(thermoTypeDict.lookup("thermo")) + '<' + + word(thermoTypeDict.lookup("equationOfState")) + '<' + + word(thermoTypeDict.lookup("specie")) + ">>," + + word(thermoTypeDict.lookup("energy")) + ">"; + } + else + { + FatalIOErrorIn + ( + (mechanismReduction::typeName + "::New(const mesh&)").c_str(), + thermoDict + ) << "thermoType is in the old format and must be upgraded" + << exit(FatalIOError); + } + + + dictionary MRdict(dict.subDict("mechanismReduction")); + + word mechanismReductionTypeName = + word(MRdict.lookup("reductionMethod")) + '<' + + word(dict.subDict("chemistryType").lookup("chemistryThermo")) + ',' + + thermoTypeName + '>'; + + + typename dictionaryConstructorTable::iterator cstrIter = + dictionaryConstructorTablePtr_->find(mechanismReductionTypeName); + + if (cstrIter == dictionaryConstructorTablePtr_->end()) + { + FatalErrorIn + ( + "mechanismReduction::New(const dictionary&, const chemistryModel&)" + ) << "Unknown mechanismReductionType type " + << mechanismReductionTypeName + << endl << endl + << "Valid mechanismReductionType types are :" << endl + << dictionaryConstructorTablePtr_->toc() + << exit(FatalError); + } + return autoPtr > + (cstrIter()(dict, chemistry)); +} + + +// ************************************************************************* // diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C b/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C index 057c1c3b..119b67e5 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/basicChemistryModel/basicChemistryModelTemplates.C @@ -121,10 +121,10 @@ Foam::autoPtr Foam::basicChemistryModel::New else { chemistryTypeName = - word(chemistryTypeDict.lookup("chemistrySolver")) + '<' - + "chemistryModel<" - + word(chemistryTypeDict.lookup("chemistryThermo")) + ',' - + thermoTypeName + ">>"; + word(chemistryTypeDict.lookup("chemistrySolver")) + '<' + + "chemistryModel<" + + word(chemistryTypeDict.lookup("chemistryThermo")) + ',' + + thermoTypeName + ">>"; } typename ChemistryModel::fvMeshConstructorTable::iterator cstrIter = ChemistryModel::fvMeshConstructorTablePtr_->find(chemistryTypeName); From 73a980d5f7be53c4d07c7d464ef6473fa7777052 Mon Sep 17 00:00:00 2001 From: Francesco Contino Date: Fri, 14 Mar 2014 08:46:30 +0100 Subject: [PATCH 07/25] Add the mechanism reduction features with DRG as first method. Modifications were needed in ODE library to only consider active species. Only SIBS has been modified, many other methods need to modify some aspects, e.g. forAll loops with vectors initialized to the complete size of the mechanism whereas only the reduced vector is passed as an argument of the solver. Methods in TDACChemistryModel called by the ODE library, i.e. derivatives and jacobian, were redefined to only consider active species. --- src/ODE/ODESolvers/ODESolver/ODESolver.C | 5 + src/ODE/ODESolvers/ODESolver/ODESolver.H | 4 +- src/ODE/ODESolvers/SIBS/SIBS.C | 7 +- src/ODE/ODESolvers/SIBS/SIMPR.C | 1 + src/ODE/ODESolvers/SIBS/polyExtrapolate.C | 1 - .../TDACChemistryModel/TDACChemistryModel.C | 361 ++++++++++++------ .../TDACChemistryModel/TDACChemistryModel.H | 39 +- .../mechanismReduction/DRG/DRG.C | 277 +++++++++++++- .../mechanismReduction/DRG/DRG.H | 5 + .../mechanismReduction/mechanismReduction.C | 19 - .../mechanismReduction/mechanismReduction.H | 9 +- .../mechanismReduction/mechanismReductionI.H | 9 +- .../chemistryModel/chemistrySolver/ode/ode.C | 4 + 13 files changed, 585 insertions(+), 156 deletions(-) diff --git a/src/ODE/ODESolvers/ODESolver/ODESolver.C b/src/ODE/ODESolvers/ODESolver/ODESolver.C index c5dc36e3..d79c8a67 100644 --- a/src/ODE/ODESolvers/ODESolver/ODESolver.C +++ b/src/ODE/ODESolvers/ODESolver/ODESolver.C @@ -81,6 +81,11 @@ Foam::scalar Foam::ODESolver::normalizeError return maxErr; } +void Foam::ODESolver::setNEqns(label nEqns) const +{ + n_=nEqns; +} + void Foam::ODESolver::solve ( diff --git a/src/ODE/ODESolvers/ODESolver/ODESolver.H b/src/ODE/ODESolvers/ODESolver/ODESolver.H index de4ef399..f95a0e42 100644 --- a/src/ODE/ODESolvers/ODESolver/ODESolver.H +++ b/src/ODE/ODESolvers/ODESolver/ODESolver.H @@ -59,7 +59,7 @@ protected: const ODESystem& odes_; //- Size of the ODESystem - label n_; + mutable label n_; //- Absolute convergence tolerance per step scalarField absTol_; @@ -171,6 +171,8 @@ public: return relTol_; } + void setNEqns(label nEqns) const; + //- Solve the ODE system as far as possible upto dxTry // adjusting the step as necessary to provide a solution within // the specified tolerance. diff --git a/src/ODE/ODESolvers/SIBS/SIBS.C b/src/ODE/ODESolvers/SIBS/SIBS.C index b6b6cf2c..9a354f2c 100644 --- a/src/ODE/ODESolvers/SIBS/SIBS.C +++ b/src/ODE/ODESolvers/SIBS/SIBS.C @@ -100,7 +100,6 @@ void Foam::SIBS::solve /((a_[iq + 1] - a_[0] + 1.0)*(2*k + 3))); } } - epsOld_ = relTol_[0]; a_[0] += n_; @@ -121,8 +120,10 @@ void Foam::SIBS::solve } label k = 0; - yTemp_ = y; - + forAll(y,yi) + { + yTemp_[yi] = y[yi]; + } odes_.jacobian(x, y, dfdx_, dfdy_); if (x != xNew_ || h != dxTry) diff --git a/src/ODE/ODESolvers/SIBS/SIMPR.C b/src/ODE/ODESolvers/SIBS/SIMPR.C index 58a273b0..994fcdd3 100644 --- a/src/ODE/ODESolvers/SIBS/SIMPR.C +++ b/src/ODE/ODESolvers/SIBS/SIMPR.C @@ -59,6 +59,7 @@ void Foam::SIBS::SIMPR yEnd[i] = h*(dydx[i] + h*dfdx[i]); } + //size of yEnd not used in LUBacksubstitute and can remain at full size LUBacksubstitute(a, pivotIndices, yEnd); scalarField del(yEnd); diff --git a/src/ODE/ODESolvers/SIBS/polyExtrapolate.C b/src/ODE/ODESolvers/SIBS/polyExtrapolate.C index 7ef74efc..844b5d7c 100644 --- a/src/ODE/ODESolvers/SIBS/polyExtrapolate.C +++ b/src/ODE/ODESolvers/SIBS/polyExtrapolate.C @@ -39,7 +39,6 @@ void Foam::SIBS::polyExtrapolate ) const { label n = yz.size(); - x[iest] = xest; for (register label j=0; j::TDACChemistryModel const fvMesh& mesh ) : - chemistryModel(mesh) + chemistryModel(mesh), + NsDAC_(this->nSpecie_), + completeC_(this->nSpecie_,0.0), + reactionsDisabled_(this->reactions_.size(), false), + activeSpecies_(this->nSpecie_,false), + completeToSimplifiedIndex_(this->nSpecie_,-1), + simplifiedToCompleteIndex_(this->nSpecie_) { mechRed_ = mechanismReduction::New @@ -53,14 +59,6 @@ Foam::TDACChemistryModel::~TDACChemistryModel() // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -template -const Foam::PtrList& -Foam::TDACChemistryModel::Y() -{ - return this->Y_; -} - - template Foam::tmp Foam::TDACChemistryModel::omega @@ -73,33 +71,66 @@ Foam::TDACChemistryModel::omega scalar pf, cf, pr, cr; label lRef, rRef; + //tom will have a reduced size when mechanism reduction is active + //because nEqns() takes into account the reduced set of species tmp tom(new scalarField(this->nEqns(), 0.0)); scalarField& om = tom(); - forAll(this->reactions_, i) + //However we need a vector of the complete set of species for the + //third-body reactions + scalarField c2(completeC_.size(), 0.0); + if (mechRed_->active()) { - const Reaction& R = this->reactions_[i]; - - scalar omegai = omega - ( - R, c, T, p, pf, cf, lRef, pr, cr, rRef - ); - - forAll(R.lhs(), s) + c2 = completeC_; + //Update the concentration of the species in the simplified mechanism + //the other species remain the same and are used only for third-body + //efficiencies + for(label i=0; inSpecie(); i++) { - const label si = R.rhs()[s].index; - const scalar sr = R.rhs()[s].stoichCoeff; - om[si] += sr*omegai; + c2[i] = max(0.0, c[i]); } } + forAll(this->reactions_, i) + { + if (!reactionsDisabled_[i]) + { + const Reaction& R = this->reactions_[i]; + + scalar omegai = omega + ( + R, c2, T, p, pf, cf, lRef, pr, cr, rRef + ); + + forAll(R.lhs(), s) + { + label si = R.lhs()[s].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; + } + const scalar sl = R.lhs()[s].stoichCoeff; + om[si] -= sl*omegai; + } + forAll(R.rhs(), s) + { + label si = R.rhs()[s].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; + } + const scalar sr = R.rhs()[s].stoichCoeff; + om[si] += sr*omegai; + } + } + } return tom; } @@ -109,7 +140,7 @@ template Foam::scalar Foam::TDACChemistryModel::omega ( const Reaction& R, - const scalarField& c, + const scalarField& c,//contains all species even when mechRed is active const scalar T, const scalar p, scalar& pf, @@ -120,8 +151,8 @@ Foam::scalar Foam::TDACChemistryModel::omega label& rRef ) const { - scalarField c2(this->nSpecie_, 0.0); - for (label i = 0; i < this->nSpecie_; i++) + scalarField c2(completeC_.size(), 0.0); + for (label i = 0; i < completeC_.size(); i++) { c2[i] = max(0.0, c[i]); } @@ -234,33 +265,71 @@ void Foam::TDACChemistryModel::derivatives const scalar T = c[this->nSpecie_]; const scalar p = c[this->nSpecie_ + 1]; - dcdt = omega(c, T, p); + tmp tom(omega(c, T, p)); + for (label i=0; inEqns(); i++) + { + dcdt[i] = tom()[i]; + } + + scalarField c2(completeC_.size(), 0.0); + if (mechRed_->active()) + { + //when using DAC, the ODE solver submit a reduced set of species + //the complete set is used and only the species in the simplified + //mechanism are updated + c2 = completeC_; + + //update the concentration of the species in the simplified mechanism + //the other species remain the same and are used only for third-body + //efficiencies + for(label i=0; inSpecie(); i++) + { + c2[i] = max(0.0, c[i]); + } + } // constant pressure // dT/dt = ... scalar rho = 0.0; - scalar cSum = 0.0; - for (label i = 0; i < this->nSpecie_; i++) + for (label i = 0; i < c2.size(); i++) { const scalar W = this->specieThermo_[i].W(); - cSum += c[i]; - rho += W*c[i]; + rho += W*c2[i]; } scalar cp = 0.0; - for (label i=0; inSpecie_; i++) + for (label i=0; ispecieThermo_[i].cp(p, T); + //cp function returns [J/(kmol K)] + cp += c2[i]*this->specieThermo_[i].cp(p, T); } cp /= rho; - scalar dT = 0.0; + //when mechanism reduction is active + //dT is computed on the reduced set since dcdt is null + //for species not involved in the simplified mechanism for (label i = 0; i < this->nSpecie_; i++) { - const scalar hi = this->specieThermo_[i].ha(p, T); + label si; + if (mechRed_->active()) + { + si = simplifiedToCompleteIndex_[i]; + } + else + { + si = i; + } + //ha function returns [J/kmol] + const scalar hi = this->specieThermo_[si].ha(p, T); dT += hi*dcdt[i]; } dT /= rho*cp; - dcdt[this->nSpecie_] = -dT; // dp/dt = ... @@ -277,13 +346,28 @@ void Foam::TDACChemistryModel::jacobian scalarSquareMatrix& dfdc ) const { + //if the mechanism reduction is active, the computed Jacobian + //is compact (size of the reduced set of species) + //but according to the informations of the complete set + //(i.e. for the third-body efficiencies) const scalar T = c[this->nSpecie_]; const scalar p = c[this->nSpecie_ + 1]; - scalarField c2(this->nSpecie_, 0.0); - forAll(c2, i) + scalarField c2(completeC_.size(), 0.0); + if (mechRed_->active()) { - c2[i] = max(c[i], 0.0); + c2 = completeC_; + for(label i=0; inEqns(); i++) @@ -295,112 +379,144 @@ void Foam::TDACChemistryModel::jacobian } // length of the first argument must be nSpecie() - dcdt = omega(c2, T, p); + // (reduced when mechanism reduction is active) + tmp tom(omega(c, T, p)); + for (label i=0; inEqns(); i++) + { + dcdt[i] = tom()[i]; + } forAll(this->reactions_, ri) { - const Reaction& R = this->reactions_[ri]; + if (!reactionsDisabled_[ri]) + { + const Reaction& R = this->reactions_[ri]; - const scalar kf0 = R.kf(p, T, c2); - const scalar kr0 = R.kr(p, T, c2); + const scalar kf0 = R.kf(p, T, c2); + const scalar kr0 = R.kr(kf0, p, T, c2); - forAll(R.lhs(), j) - { - const label sj = R.lhs()[j].index; - scalar kf = kf0; - forAll(R.lhs(), i) + forAll(R.lhs(), j) { - const label si = R.lhs()[i].index; - const scalar el = R.lhs()[i].exponent; - if (i == j) + label sj = R.lhs()[j].index; + if (mechRed_->active()) + { + sj = completeToSimplifiedIndex_[sj]; + } + scalar kf = kf0; + forAll(R.lhs(), i) { - if (el < 1.0) + const label si = R.lhs()[i].index; + const scalar el = R.lhs()[i].exponent; + if (i == j) { - if (c2[si] > SMALL) + if (el < 1.0) { - kf *= el*pow(c2[si] + VSMALL, el - 1.0); + if (c2[si] > SMALL) + { + kf *= el*pow(c2[si] + VSMALL, el - 1.0); + } + else + { + kf = 0.0; + } } else { - kf = 0.0; + kf *= el*pow(c2[si], el - 1.0); } } else { - kf *= el*pow(c2[si], el - 1.0); + kf *= pow(c2[si], el); + } + } + + forAll(R.lhs(), i) + { + label si = R.lhs()[i].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; } + const scalar sl = R.lhs()[i].stoichCoeff; + dfdc[si][sj] -= sl*kf; } - else + forAll(R.rhs(), i) { - kf *= pow(c2[si], el); + label si = R.rhs()[i].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; + } + const scalar sr = R.rhs()[i].stoichCoeff; + dfdc[si][sj] += sr*kf; } } - forAll(R.lhs(), i) - { - const label si = R.lhs()[i].index; - const scalar sl = R.lhs()[i].stoichCoeff; - dfdc[si][sj] -= sl*kf; - } - forAll(R.rhs(), i) + forAll(R.rhs(), j) { - const label si = R.rhs()[i].index; - const scalar sr = R.rhs()[i].stoichCoeff; - dfdc[si][sj] += sr*kf; - } - } - - forAll(R.rhs(), j) - { - const label sj = R.rhs()[j].index; - scalar kr = kr0; - forAll(R.rhs(), i) - { - const label si = R.rhs()[i].index; - const scalar er = R.rhs()[i].exponent; - if (i == j) + label sj = R.rhs()[j].index; + if (mechRed_->active()) { - if (er < 1.0) + sj = completeToSimplifiedIndex_[sj]; + } + scalar kr = kr0; + forAll(R.rhs(), i) + { + const label si = R.rhs()[i].index; + const scalar er = R.rhs()[i].exponent; + if (i == j) { - if (c2[si] > SMALL) + if (er < 1.0) { - kr *= er*pow(c2[si] + VSMALL, er - 1.0); + if (c2[si] > SMALL) + { + kr *= er*pow(c2[si] + VSMALL, er - 1.0); + } + else + { + kr = 0.0; + } } else { - kr = 0.0; + kr *= er*pow(c2[si], er - 1.0); } } else { - kr *= er*pow(c2[si], er - 1.0); + kr *= pow(c2[si], er); } } - else + + forAll(R.lhs(), i) { - kr *= pow(c2[si], er); + label si = R.lhs()[i].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; + } + const scalar sl = R.lhs()[i].stoichCoeff; + dfdc[si][sj] += sl*kr; + } + forAll(R.rhs(), i) + { + label si = R.rhs()[i].index; + if (mechRed_->active()) + { + si = completeToSimplifiedIndex_[si]; + } + const scalar sr = R.rhs()[i].stoichCoeff; + dfdc[si][sj] -= sr*kr; } - } - - forAll(R.lhs(), i) - { - const label si = R.lhs()[i].index; - const scalar sl = R.lhs()[i].stoichCoeff; - dfdc[si][sj] += sl*kr; - } - forAll(R.rhs(), i) - { - const label si = R.rhs()[i].index; - const scalar sr = R.rhs()[i].stoichCoeff; - dfdc[si][sj] -= sr*kr; } } } // Calculate the dcdT elements numerically const scalar delta = 1.0e-3; - const scalarField dcdT0(omega(c2, T - delta, p)); - const scalarField dcdT1(omega(c2, T + delta, p)); + const scalarField dcdT0(omega(c, T - delta, p)); + const scalarField dcdT1(omega(c, T + delta, p)); for (label i = 0; i < this->nEqns(); i++) { @@ -460,14 +576,37 @@ Foam::scalar Foam::TDACChemistryModel::solve // Initialise time progress scalar timeLeft = deltaT[celli]; + if (mechRed_->active()) + { + mechRed_->reduceMechanism(c,Ti,pi); + } // Calculate the chemical source terms while (timeLeft > SMALL) { scalar dt = timeLeft; - this->solve(c, Ti, pi, dt, this->deltaTChem_[celli]); + if (mechRed_->active()) + { + //completeC_ used in the overridden ODE methods + //to update only the active species + completeC_ = c; + this->solve(simplifiedC_, Ti, pi, dt, this->deltaTChem_[celli]); + for (label i=0; isolve(c, Ti, pi, dt, this->deltaTChem_[celli]); + } timeLeft -= dt; } + if (mechRed_->active()) + { + this->nSpecie_ = mechRed_->nSpecie(); + } + deltaTMin = min(this->deltaTChem_[celli], deltaTMin); for (label i=0; inSpecie_; i++) diff --git a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H index 4b376a88..b05b4a97 100644 --- a/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H +++ b/src/thermophysicalModels/chemistryModel/chemistryModel/TDACChemistryModel/TDACChemistryModel.H @@ -34,6 +34,7 @@ Description Institute, 33(2):3057–3064, 2011 SourceFiles + TDACChemistryModelI.H TDACChemistryModel.C \*---------------------------------------------------------------------------*/ @@ -75,7 +76,15 @@ class TDACChemistryModel template scalar solve(const DeltaTType& deltaT); + //- Mechanism reduction autoPtr > mechRed_; + label NsDAC_; + scalarField completeC_; + scalarField simplifiedC_; + Field reactionsDisabled_; + List activeSpecies_; + Field