mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: dimensionSetIO: copy, not add, exponents
This commit is contained in:
@ -420,7 +420,7 @@ Foam::Istream& Foam::dimensionSet::read
|
||||
multiplier = ds.value();
|
||||
for (int i=0; i < dimensionSet::nDimensions; ++i)
|
||||
{
|
||||
exponents_[i] += ds.dimensions()[i];
|
||||
exponents_[i] = ds.dimensions()[i];
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user