Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop

This commit is contained in:
sergio
2019-06-04 11:06:35 -07:00
committed by Andrew Heather
307 changed files with 8005 additions and 4097 deletions

View File

@ -3,7 +3,7 @@
system
{
type systemCall;
libs ("libutilityFunctionObjects.so");
libs ("utilityFunctionObjects");
// Execute on the master process only
master true;

View File

@ -29,5 +29,4 @@ inlet
absorptivity 0.9;
}
// ************************************************************************* //

View File

@ -15,6 +15,13 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
".*"
{
type lookup;
emissivity 1.0;
absorptivity 1.0;
transmissivity 0.0;
}
region0_to_pyrolysisRegion_coupledWall
{
@ -25,13 +32,4 @@ region0_to_pyrolysisRegion_coupledWall
}
}
".*"
{
type lookup;
emissivity 1.0;
absorptivity 1.0;
transmissivity 0.0;
}
// ************************************************************************* //

View File

@ -15,7 +15,6 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
".*"
{
type lookup;
@ -31,5 +30,4 @@ FoamFile
}
}
// ************************************************************************* //

View File

@ -39,5 +39,4 @@ inlet
emissivity 1.0;
}
// ************************************************************************* //

View File

@ -21,5 +21,4 @@ FoamFile
emissivity 1.0;
}
// ************************************************************************* //

View File

@ -17,10 +17,9 @@ FoamFile
".*"
{
mode lookup;
type lookup;
emissivity 1;
absorptivity 0;
}
// ************************************************************************* //

View File

@ -4,6 +4,8 @@ cd ${0%/*} || exit 1 # Run from this directory
cleanTimeDirectories
cleanPostProcessing
cleanFaMesh
rm -rf processor*

View File

@ -4,6 +4,10 @@ cd ${0%/*} || exit 1 # Run from this directory
cleanTimeDirectories
cleanPostProcessing
cleanFaMesh
rm -rf processor*
#------------------------------------------------------------------------------

View File

@ -9,6 +9,7 @@ areaWrite
writeControl writeTime;
writeInterval 1;
// verbose true;
// Fields to output (words or regex)
fields (".*");

View File

@ -22,5 +22,4 @@ FoamFile
absorptivity 1.0;
}
// ************************************************************************* //

View File

@ -22,5 +22,4 @@ FoamFile
absorptivity 1.0;
}
// ************************************************************************* //

View File

@ -22,5 +22,4 @@ FoamFile
absorptivity 1.0;
}
// ************************************************************************* //

View File

@ -73,3 +73,5 @@ ZMin
emissivity (0.3 0.7);
};
}
// ************************************************************************* //

View File

@ -15,7 +15,6 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
".*"
{
type lookup;

View File

@ -49,6 +49,7 @@ functions
{
#include "coordinateTransform"
#include "momentum"
#include "timeInfo"
}

View File

@ -0,0 +1,15 @@
// -*- C++ -*-
// Record execution/clock time
time
{
type timeInfo;
libs ("libutilityFunctionObjects.so");
log true;
// writeToFile true;
perTimeStep true;
}
// ************************************************************************* //

View File

@ -12,8 +12,9 @@ profiling
libs ("libutilityFunctionObjects.so");
executeControl none;
writeControl writeTime;
// Report stats on exit only (instead of every time step)
executeControl onEnd;
writeControl none;
}

View File

@ -15,10 +15,9 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
".*"
{
mode lookup;
type lookup;
emissivity 1.0;
absorptivity 0.0;
}

View File

@ -27,12 +27,12 @@ gradSchemes
divSchemes
{
div(rhoPhi,U) Gauss linearUpwind grad(U);
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(phir,alpha.*\)" Gauss linear;
div(rhoPhi,U) Gauss linearUpwind grad(U);
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(phir,alpha.*\)" Gauss linear;
"div\(Yiphir,alpha.*)" Gauss linear;
"div\(phi,.*.gas*\)" Gauss vanLeer;
"div\(Yiphir,alpha.*\)" Gauss linear;
"div\(phi,.*\.gas.*\)" Gauss vanLeer;
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;

View File

@ -27,18 +27,18 @@ gradSchemes
divSchemes
{
default none;
default none;
div(rhoPhi,U) Gauss linearUpwind gradU;
div(rhoPhi,U) Gauss linearUpwind gradU;
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(phir,alpha.*\)" Gauss linear;
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(phir,alpha.*\)" Gauss linear;
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(Yiphir,alpha.*)" Gauss vanLeer;
"div\(phi,alpha.*\)" Gauss vanLeer;
"div\(Yiphir,alpha.*\)" Gauss vanLeer;
"div\(phi,.*.gas*\)" Gauss vanLeer;
"div\(phi,.*.liquid*\)" Gauss vanLeer;
"div\(phi,.*\.gas.*\)" Gauss vanLeer;
"div\(phi,.*\.liquid.*\)" Gauss vanLeer;
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;

View File

@ -15,6 +15,8 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libfvMotionSolvers.so");
application potentialFreeSurfaceDyMFoam;
startFrom startTime;