added some debug printing

This commit is contained in:
mattijs
2009-04-24 18:09:48 +01:00
parent ba540dcc86
commit c7dd5e32c5

View File

@ -296,6 +296,16 @@ void directMappedFixedValueFvPatchField<Type>::updateCoeffs()
this->operator==(newValues);
if (debug)
{
Info<< "directMapped on field:" << fldName
<< " patch:" << this->patch().name()
<< " avg:" << gAverage(*this)
<< " min:" << gMin(*this)
<< " max:" << gMax(*this)
<< endl;
}
fixedValueFvPatchField<Type>::updateCoeffs();
}