COMP: avoid ambiguous construct from tmp - solvers/ lagrangian

This commit is contained in:
Mark Olesen
2010-12-21 09:52:38 +01:00
parent fc2aeba9fc
commit 5a8f925221
19 changed files with 74 additions and 44 deletions

View File

@ -57,5 +57,7 @@
Info<< "Creating field DpDt\n" << endl;
volScalarField DpDt =
fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);
volScalarField DpDt
(
fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p)
);

View File

@ -1,6 +1,6 @@
rho = thermo.rho();
volScalarField rAU = 1.0/UEqn.A();
volScalarField rAU(1.0/UEqn.A());
U = rAU*UEqn.H();
if (transonic)