Skip to content

Commit

Permalink
PostProcessing: skip includes that weren't processed
Browse files Browse the repository at this point in the history
  • Loading branch information
sayerhs committed Feb 9, 2024
1 parent 160bd73 commit a4bb9ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions caelus/post/funcobj/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@

from ...io import ControlDict
from ...io.caelusdict import CaelusDict
from ...io.dtypes import FoamType
from .forces import ForceCoeffs, Forces, LiftDrag
from .residuals import Residuals
from .sampling import SampledSets, SampledSurfaces
Expand Down Expand Up @@ -88,6 +89,9 @@ class will attempt to infer the functions activated in ``controlDict``

fobj = {}
for k, v in self.data.items():
if isinstance(v, FoamType):
continue

ftype = v['type']
if ftype not in _func_obj_map:
_lgr.info("Skipping function object: %s (%s)", k, ftype)
Expand Down

0 comments on commit a4bb9ac

Please sign in to comment.