Skip to content
Snippets Groups Projects
Commit ea67afaf authored by mattijs's avatar mattijs
Browse files

ENH: codedFixedValue : added printing

parent 24280e3b
Branches
Tags
No related merge requests found
...@@ -70,6 +70,9 @@ bool Foam::functionEntries::codeStream::execute ...@@ -70,6 +70,9 @@ bool Foam::functionEntries::codeStream::execute
Istream& is Istream& is
) )
{ {
Info<< "Using #codeStream at line " << is.lineNumber()
<< " in file " << parentDict.name() << endl;
dynamicCode::checkSecurity dynamicCode::checkSecurity
( (
"functionEntries::codeStream::execute(..)", "functionEntries::codeStream::execute(..)",
......
...@@ -114,7 +114,6 @@ derivedFvPatchFields = $(fvPatchFields)/derived ...@@ -114,7 +114,6 @@ derivedFvPatchFields = $(fvPatchFields)/derived
$(derivedFvPatchFields)/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.C $(derivedFvPatchFields)/activeBaffleVelocity/activeBaffleVelocityFvPatchVectorField.C
$(derivedFvPatchFields)/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.C $(derivedFvPatchFields)/activePressureForceBaffleVelocity/activePressureForceBaffleVelocityFvPatchVectorField.C
$(derivedFvPatchFields)/advective/advectiveFvPatchFields.C $(derivedFvPatchFields)/advective/advectiveFvPatchFields.C
/* $(derivedFvPatchFields)/codedFixedValue/codedFixedValueFvPatchScalarField.C */
$(derivedFvPatchFields)/codedFixedValue/codedFixedValueFvPatchFields.C $(derivedFvPatchFields)/codedFixedValue/codedFixedValueFvPatchFields.C
$(derivedFvPatchFields)/directMappedField/directMappedFieldFvPatchFields.C $(derivedFvPatchFields)/directMappedField/directMappedFieldFvPatchFields.C
$(derivedFvPatchFields)/directMappedFixedInternalValue/directMappedFixedInternalValueFvPatchFields.C $(derivedFvPatchFields)/directMappedFixedInternalValue/directMappedFixedInternalValueFvPatchFields.C
......
...@@ -238,6 +238,10 @@ void Foam::codedFixedValueFvPatchField<Type>::createLibrary ...@@ -238,6 +238,10 @@ void Foam::codedFixedValueFvPatchField<Type>::createLibrary
// Write files for new library // Write files for new library
if (!dynCode.upToDate(context)) if (!dynCode.upToDate(context))
{ {
Info<< "Using dynamicCode for patch " << this->patch().name()
<< " on field " << this->dimensionedInternalField().name()
<< endl;
// filter with this context // filter with this context
dynCode.reset(context); dynCode.reset(context);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment