From 4b4edc5cc9b3d5d01edaed84f9cfe9a743a1db57 Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Mon, 17 Feb 2020 11:06:43 -0600 Subject: [PATCH] Pass through expansion_factory --- pytential/qbx/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pytential/qbx/__init__.py b/pytential/qbx/__init__.py index 34ab0631..f65c31d2 100644 --- a/pytential/qbx/__init__.py +++ b/pytential/qbx/__init__.py @@ -243,6 +243,7 @@ class QBXLayerPotentialSource(LayerPotentialSourceBase): fmm_order=_not_provided, fmm_level_to_order=_not_provided, to_refined_connection=None, + expansion_factory=None, target_association_tolerance=_not_provided, _expansions_in_tree_have_extent=_not_provided, _expansion_stick_out_factor=_not_provided, @@ -306,6 +307,8 @@ class QBXLayerPotentialSource(LayerPotentialSourceBase): target_association_tolerance=target_association_tolerance, to_refined_connection=( to_refined_connection or self._to_refined_connection), + expansion_factory=( + expansion_factory or self.expansion_factory), debug=( # False is a valid value here -- GitLab