Skip to content
Snippets Groups Projects
Commit 8b77946c authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: Patch interaction models - correct container type introduced by c1b07cd1

parent 22693fa2
Branches
Tags
No related merge requests found
...@@ -335,9 +335,9 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os) ...@@ -335,9 +335,9 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os)
// retrieve any stored data // retrieve any stored data
labelListList npe0(patchData_.size()); labelListList npe0(patchData_.size());
labelListList mpe0(patchData_.size()); scalarListList mpe0(patchData_.size());
labelListList nps0(patchData_.size()); labelListList nps0(patchData_.size());
labelListList mps0(patchData_.size()); scalarListList mps0(patchData_.size());
forAll(patchData_, patchi) forAll(patchData_, patchi)
{ {
......
...@@ -249,9 +249,9 @@ void Foam::StandardWallInteraction<CloudType>::info(Ostream& os) ...@@ -249,9 +249,9 @@ void Foam::StandardWallInteraction<CloudType>::info(Ostream& os)
PatchInteractionModel<CloudType>::info(os); PatchInteractionModel<CloudType>::info(os);
labelListList npe0(nEscape_.size()); labelListList npe0(nEscape_.size());
labelListList mpe0(nEscape_.size()); scalarListList mpe0(nEscape_.size());
labelListList nps0(nEscape_.size()); labelListList nps0(nEscape_.size());
labelListList mps0(nEscape_.size()); scalarListList mps0(nEscape_.size());
forAll(nEscape_, patchi) forAll(nEscape_, patchi)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment