Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev

This commit is contained in:
andy
2011-04-05 17:37:30 +01:00
236 changed files with 50411 additions and 1439 deletions

View File

@ -49,7 +49,7 @@
piso.lookupOrDefault<scalar>("maxDeltaT", GREAT)
);
volScalarField rDeltaT0 = rDeltaT;
volScalarField rDeltaT0("rDeltaT0", rDeltaT);
// Set the reciprocal time-step from the local Courant number
rDeltaT.dimensionedInternalField() = max

View File

@ -11,7 +11,7 @@
fvVectorMatrix UEqn
(
//pZones.ddt(rho, U)
fvc::ddt(rho, U)
fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U)
- fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muEff))