GIT: Initial state after latest Foundation merge

This commit is contained in:
Andrew Heather
2016-09-20 14:49:08 +01:00
4571 changed files with 115696 additions and 74609 deletions

View File

@ -17,19 +17,19 @@ FoamFile
application potentialFoam;
startFrom startTime;
startFrom latestTime;
startTime 0;
stopAt endTime;
stopAt nextWrite;
endTime 1;
deltaT 1;
writeControl timeStep;
writeControl timeStep;
writeInterval 1;
writeInterval 1;
purgeWrite 0;
@ -47,20 +47,23 @@ runTimeModifiable true;
functions
{
difference
error
{
// Load the library containing the 'coded' functionObject
functionObjectLibs ("libutilityFunctionObjects.so");
libs ("libutilityFunctionObjects.so");
type coded;
// Name of on-the-fly generated functionObject
redirectType error;
code
name error;
codeEnd
#{
// Lookup U
Info<< "Looking up field U\n" << endl;
const volVectorField& U = mesh().lookupObject<volVectorField>("U");
Info<< "Reading inlet velocity uInfX\n" << endl;
Info<< "Reading inlet velocity uInfX\n" << endl;
scalar ULeft = 0.0;
label leftI = mesh().boundaryMesh().findPatchID("left");

View File

@ -21,10 +21,6 @@ solvers
{
solver GAMG;
smoother DIC;
cacheAgglomeration on;
agglomerator faceAreaPair;
nCellsInCoarsestLevel 10;
mergeLevels 1;
tolerance 1e-06;
relTol 0.01;

View File

@ -21,10 +21,6 @@ solvers
{
solver GAMG;
smoother DIC;
cacheAgglomeration on;
agglomerator faceAreaPair;
nCellsInCoarsestLevel 10;
mergeLevels 1;
tolerance 1e-06;
relTol 0.01;

View File

@ -19,7 +19,7 @@ solvers
{
T
{
solver PBiCG;
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-06;
relTol 0;