Skip to content
Snippets Groups Projects
Commit 79ba2ccd authored by Kutalmış Berçin's avatar Kutalmış Berçin Committed by Kutalmış Berçin
Browse files

STYLE

parent 864c2971
No related branches found
No related tags found
1 merge request!732Draft: ENH: fieldStatistics: New function object for statistics of input fields
......@@ -303,7 +303,7 @@ bool Foam::functionObjects::fieldStatistics::write()
{
const auto& results = results_(fieldName);
Info<< ' Field' << tab << fieldName << nl;
Info<< nl << " Field " << fieldName << nl;
for (const auto& iter : results.csorted())
{
......@@ -319,20 +319,20 @@ bool Foam::functionObjects::fieldStatistics::write()
is_vectorspace_v<std::decay_t<decltype(v)>>
)
{
Info<< ' ' << name << tab;
for (const auto& val : v) Info<< val << tab;
Info<< " " << name << " ";
for (const auto& val : v) Info<< val << " ";
Info<< nl;
}
else
{
Info<< tab << name << tab << v << nl;
Info<< " " << name << " " << v << nl;
}
},
value
);
}
Info<< endl;
}
Info<< endl;
}
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment