mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' into develop
This commit is contained in:
@ -45,7 +45,7 @@ void Foam::patchProbes::sampleAndWrite
|
||||
|
||||
probeStream
|
||||
<< setw(w)
|
||||
<< vField.time().timeToUserTime(vField.time().value());
|
||||
<< vField.time().timeOutputValue();
|
||||
|
||||
forAll(values, probei)
|
||||
{
|
||||
@ -71,7 +71,7 @@ void Foam::patchProbes::sampleAndWrite
|
||||
|
||||
probeStream
|
||||
<< setw(w)
|
||||
<< sField.time().timeToUserTime(sField.time().value());
|
||||
<< sField.time().timeOutputValue();
|
||||
|
||||
forAll(values, probei)
|
||||
{
|
||||
|
||||
@ -76,7 +76,7 @@ void Foam::probes::sampleAndWrite
|
||||
unsigned int w = IOstream::defaultPrecision() + 7;
|
||||
OFstream& os = *probeFilePtrs_[vField.name()];
|
||||
|
||||
os << setw(w) << vField.time().timeToUserTime(vField.time().value());
|
||||
os << setw(w) << vField.time().timeOutputValue();
|
||||
|
||||
forAll(values, probei)
|
||||
{
|
||||
@ -100,7 +100,7 @@ void Foam::probes::sampleAndWrite
|
||||
unsigned int w = IOstream::defaultPrecision() + 7;
|
||||
OFstream& os = *probeFilePtrs_[sField.name()];
|
||||
|
||||
os << setw(w) << sField.time().timeToUserTime(sField.time().value());
|
||||
os << setw(w) << sField.time().timeOutputValue();
|
||||
|
||||
forAll(values, probei)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user