mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -569,7 +569,7 @@ int main(int argc, char *argv[])
|
|||||||
dumpCyclicMatch("initial_", mesh);
|
dumpCyclicMatch("initial_", mesh);
|
||||||
|
|
||||||
// Read patch construct info from dictionary
|
// Read patch construct info from dictionary
|
||||||
PtrList<dictionary> patchSources(dict.lookup("patchInfo"));
|
PtrList<dictionary> patchSources(dict.lookup("patches"));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -614,7 +614,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
if (destPatchI == -1)
|
if (destPatchI == -1)
|
||||||
{
|
{
|
||||||
dictionary patchDict(dict.subDict("dictionary"));
|
dictionary patchDict(dict.subDict("patchInfo"));
|
||||||
|
|
||||||
destPatchI = allPatches.size();
|
destPatchI = allPatches.size();
|
||||||
|
|
||||||
|
|||||||
@ -48,14 +48,14 @@ matchTolerance 1E-3;
|
|||||||
pointSync true;
|
pointSync true;
|
||||||
|
|
||||||
// Patches to create.
|
// Patches to create.
|
||||||
patchInfo
|
patches
|
||||||
(
|
(
|
||||||
{
|
{
|
||||||
// Name of new patch
|
// Name of new patch
|
||||||
name sidePatches;
|
name sidePatches;
|
||||||
|
|
||||||
// Type of new patch
|
// Type of new patch
|
||||||
dictionary
|
patchInfo
|
||||||
{
|
{
|
||||||
type cyclic;
|
type cyclic;
|
||||||
|
|
||||||
|
|||||||
@ -62,7 +62,7 @@ case "$ParaView_VERSION" in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
ParaView_MAJOR=`echo $ParaView_VERSION | sed -e 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
|
[ -z ${ParaView_MAJOR} ] && ParaView_MAJOR=`echo $ParaView_VERSION | sed -e 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
export ParaView_MAJOR
|
export ParaView_MAJOR
|
||||||
|
|||||||
@ -28,6 +28,11 @@ Class
|
|||||||
Description
|
Description
|
||||||
Limited to C(s) + O2 -> CO2
|
Limited to C(s) + O2 -> CO2
|
||||||
|
|
||||||
|
Loosely based on the reference:
|
||||||
|
Murphy, J. J., Shaddix, C. R., Combustion kinetics of coal chars
|
||||||
|
in oxygen-enriched environments, Combustion and Flame 144,
|
||||||
|
pp710-729, 2006
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#ifndef COxidationMurphyShaddix_H
|
#ifndef COxidationMurphyShaddix_H
|
||||||
|
|||||||
@ -357,7 +357,7 @@ bool Foam::sampledSurfaces::update()
|
|||||||
if (Pstream::master() && debug)
|
if (Pstream::master() && debug)
|
||||||
{
|
{
|
||||||
Pout<< nl << "Merging all points within "
|
Pout<< nl << "Merging all points within "
|
||||||
<< mergeDim << " meter" << endl;
|
<< mergeDim << " metre" << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
forAll(*this, surfI)
|
forAll(*this, surfI)
|
||||||
|
|||||||
Reference in New Issue
Block a user