diff --git a/src/functions/InterpolateCSVFunction.C b/src/functions/InterpolateCSVFunction.C index 070de8b..0f068ec 100644 --- a/src/functions/InterpolateCSVFunction.C +++ b/src/functions/InterpolateCSVFunction.C @@ -32,7 +32,9 @@ InterpolateCSVFunction::validParams() InterpolateCSVFunction::InterpolateCSVFunction(const InputParameters & parameters) : Function(parameters), - _transform(RankTwoTensor(getParam("a1"), getParam("a2"), getParam("a3")).transpose().inverse()), + _transform(RankTwoTensor(getParam("a1"), getParam("a2"), getParam("a3")) + .transpose() + .inverse()), _min(getParam("min_x"), getParam("min_y"), getParam("min_z")), _max(getParam("max_x"), getParam("max_y"), getParam("max_z")), _n({getParam("n_x"), getParam("n_y"), getParam("n_z")}),