bug fixes for builiding with float for postpropcessPhasicFlow
This commit is contained in:
parent
7485ed16a8
commit
fb3763004d
|
@ -110,13 +110,13 @@ public:
|
|||
}else if(action() == "average")
|
||||
{
|
||||
|
||||
pointField_H<real> oneFld(field_.pStruct(), 1.0, 1.0);
|
||||
pointField_H<real> oneFld(field_.pStruct(), static_cast<real>(1.0), static_cast<real>(1.0));
|
||||
|
||||
denomerator = sumOp(oneFld, this->pointToCell());
|
||||
|
||||
}else if(action() == "averageMask")
|
||||
{
|
||||
pointField_H<real> oneFld(field_.pStruct(), 1.0, 1.0);
|
||||
pointField_H<real> oneFld(field_.pStruct(), static_cast<real>(1.0), static_cast<real>(1.0));
|
||||
|
||||
denomerator = sumMaksOp(oneFld, this->pointToCell(), incMask);
|
||||
}else
|
||||
|
|
Loading…
Reference in New Issue