Skip to content
Snippets Groups Projects

Generalisation of Relaxation rate setter

Closed Markus Holzer requested to merge holzer/lbmpy:relaxationrates into master
Viewing commit de367453
Show latest version
1 file
+ 4
4
Preferences
Compare changes
+ 4
4
@@ -5,7 +5,7 @@ from lbmpy.methods.creationfunctions import (
create_centered_cumulant_model, create_with_default_polynomial_cumulants,
create_with_polynomial_cumulants, create_with_monomial_cumulants)
from lbmpy.methods.default_moment_sets import mrt_orthogonal_modes_literature
from lbmpy.methods.default_moment_sets import mrt_orthogonal_modes_literature, cascaded_moment_sets_literature
from lbmpy.methods.abstractlbmethod import AbstractLbMethod, RelaxationInfo
from lbmpy.methods.conservedquantitycomputation import AbstractConservedQuantityComputation
@@ -17,6 +17,6 @@ __all__ = ['RelaxationInfo', 'AbstractLbMethod',
'create_srt', 'create_trt', 'create_trt_with_magic_number', 'create_trt_kbc',
'create_mrt_orthogonal', 'create_mrt_raw', 'create_central_moment',
'create_with_continuous_maxwellian_eq_moments', 'create_with_discrete_maxwellian_eq_moments',
'mrt_orthogonal_modes_literature', 'create_centered_cumulant_model',
'create_with_default_polynomial_cumulants', 'create_with_polynomial_cumulants',
'create_with_monomial_cumulants']
'mrt_orthogonal_modes_literature', 'cascaded_moment_sets_literature',
'create_centered_cumulant_model', 'create_with_default_polynomial_cumulants',
'create_with_polynomial_cumulants', 'create_with_monomial_cumulants']