Skip to content
Snippets Groups Projects

Schiller force model to be used instead of Guo on non-SRT

Merged Michael Kuron requested to merge schiller into master
Viewing commit 46415911
Show latest version
2 files
+ 7
3
Preferences
Compare changes
Files
2
+ 1
1
@@ -174,7 +174,7 @@ class Schiller:
@@ -174,7 +174,7 @@ class Schiller:
uf = u.dot(force) * sp.eye(len(force))
uf = u.dot(force) * sp.eye(len(force))
omega = get_shear_relaxation_rate(lb_method)
omega = get_shear_relaxation_rate(lb_method)
omega_bulk = get_bulk_relaxation_rate(lb_method)
omega_bulk = get_bulk_relaxation_rate(lb_method)
G = (u * force.transpose() + force * u.transpose() - uf * sp.Rational(2, 3)) * sp.Rational(1, 2) * \
G = (u * force.transpose() + force * u.transpose() - uf * sp.Rational(2, lb_method.dim)) * sp.Rational(1, 2) * \
(2 + omega) + uf * sp.Rational(1, 3) * (2 + omega_bulk)
(2 + omega) + uf * sp.Rational(1, 3) * (2 + omega_bulk)
result = []
result = []