From 3d3c174f3313ae948fdd61dc5602cb312a427607 Mon Sep 17 00:00:00 2001 From: Martin Bauer <martin.bauer@fau.de> Date: Sun, 14 Apr 2019 10:04:48 +0200 Subject: [PATCH] Fixes - style changes marked by flake - using newest kerncraft version --- lbmpy/methods/creationfunctions.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lbmpy/methods/creationfunctions.py b/lbmpy/methods/creationfunctions.py index 311bbba7..7af1573a 100644 --- a/lbmpy/methods/creationfunctions.py +++ b/lbmpy/methods/creationfunctions.py @@ -403,8 +403,10 @@ def create_mrt_orthogonal(stencil, relaxation_rate_getter=None, maxwellian_momen # The moments are weighted-orthogonal (Eq. 2.58) # Further references: - # Duenweg, B., Schiller, U. D., & Ladd, A. J. (2007). Statistical mechanics of the fluctuating lattice Boltzmann equation. Physical Review E, 76(3) - # Chun, B., & Ladd, A. J. (2007). Interpolated boundary condition for lattice Boltzmann simulations of flows in narrow gaps. Physical review E, 75(6) + # Duenweg, B., Schiller, U. D., & Ladd, A. J. (2007). Statistical mechanics of the fluctuating + # lattice Boltzmann equation. Physical Review E, 76(3) + # Chun, B., & Ladd, A. J. (2007). Interpolated boundary condition for lattice Boltzmann simulations of + # flows in narrow gaps. Physical review E, 75(6) sq = x ** 2 + y ** 2 + z ** 2 nested_moments = [ [one, x, y, z], # [0, 3, 5, 7] -- GitLab