Bugfix: allocate Pstream comm in faMesh
This commit is contained in:
parent
fb9d050df4
commit
b0024110c3
1 changed files with 4 additions and 0 deletions
|
@ -219,6 +219,7 @@ Foam::faMesh::faMesh(const polyMesh& pMesh)
|
||||||
),
|
),
|
||||||
*this
|
*this
|
||||||
),
|
),
|
||||||
|
comm_(Pstream::worldComm),
|
||||||
patchPtr_(NULL),
|
patchPtr_(NULL),
|
||||||
lduPtr_(NULL),
|
lduPtr_(NULL),
|
||||||
curTimeIndex_(time().timeIndex()),
|
curTimeIndex_(time().timeIndex()),
|
||||||
|
@ -314,6 +315,7 @@ Foam::faMesh::faMesh
|
||||||
*this,
|
*this,
|
||||||
0
|
0
|
||||||
),
|
),
|
||||||
|
comm_(Pstream::worldComm),
|
||||||
patchPtr_(NULL),
|
patchPtr_(NULL),
|
||||||
lduPtr_(NULL),
|
lduPtr_(NULL),
|
||||||
curTimeIndex_(time().timeIndex()),
|
curTimeIndex_(time().timeIndex()),
|
||||||
|
@ -378,6 +380,7 @@ Foam::faMesh::faMesh
|
||||||
*this,
|
*this,
|
||||||
0
|
0
|
||||||
),
|
),
|
||||||
|
comm_(Pstream::worldComm),
|
||||||
patchPtr_(NULL),
|
patchPtr_(NULL),
|
||||||
lduPtr_(NULL),
|
lduPtr_(NULL),
|
||||||
curTimeIndex_(time().timeIndex()),
|
curTimeIndex_(time().timeIndex()),
|
||||||
|
@ -861,6 +864,7 @@ Foam::faMesh::faMesh
|
||||||
*this,
|
*this,
|
||||||
0
|
0
|
||||||
),
|
),
|
||||||
|
comm_(Pstream::worldComm),
|
||||||
patchPtr_(NULL),
|
patchPtr_(NULL),
|
||||||
lduPtr_(NULL),
|
lduPtr_(NULL),
|
||||||
curTimeIndex_(time().timeIndex()),
|
curTimeIndex_(time().timeIndex()),
|
||||||
|
|
Reference in a new issue