mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -136,7 +136,13 @@ void getBand
|
||||
}
|
||||
|
||||
bandwidth = max(cellBandwidth);
|
||||
profile = sum(1.0*cellBandwidth);
|
||||
|
||||
// Do not use field algebra because of conversion label to scalar
|
||||
profile = 0.0;
|
||||
forAll(cellBandwidth, cellI)
|
||||
{
|
||||
profile += 1.0*cellBandwidth[cellI];
|
||||
}
|
||||
|
||||
sumSqrIntersect = 0.0;
|
||||
if (calculateIntersect)
|
||||
|
||||
Reference in New Issue
Block a user