Skip to content

Commit 78bbcb4

Browse files
committed
Update README.md
1 parent 8f45528 commit 78bbcb4

File tree

4 files changed

+27
-12
lines changed

4 files changed

+27
-12
lines changed

README.md

+24-7
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,30 @@ Following models have been implemented:
6262
(https://doi.org/10.1016/j.jnnfm.2008.08.002)
6363

6464
## Closures
65-
* Linear
66-
* Quadratic
67-
* IBOF
68-
* Sampling from directions
69-
* ORF
70-
* ORW
71-
* ORW3
65+
* __Linear__, __Quadratic__, __Hybrid__:\
66+
Kyeong-Hee Han and Yong-Taek Im,\
67+
'Modified hybrid closure approximation for prediction of flow-induced fiber orientation', \
68+
Journal of Rheology 43, 569, 1999.\
69+
(https://doi.org/10.1122/1.551002)
70+
* __IBOF__:\
71+
Du Hwan Chung and Tai Hun Kwon,\
72+
'Invariant-based optimal fitting closure approximation for the numerical prediction of flow-induced fiber orientation',\
73+
Journal of Rheology 46(1), 169-194, 2002.\
74+
(https://doi.org/10.1122/1.1423312)
75+
* __ORF__, __ORW__, __ORW3__:\
76+
Joaquim S. Cintra and Charles L. Tucker III,\
77+
'Orthotropic closure approximations for flow-induced fiber orientation',\
78+
Journal of Rheology, 39(6), 1095-1122, 1995.
79+
(https://doi.org/10.1122/1.550630)\
80+
Du Hwan Chung and Tai Hun Kwon, \
81+
'Improved model of orthotropic closure approximation for flow induced fiber orientation', \
82+
Polymer Composites, 22(5), 636-649, 2001.\
83+
(https://doi.org/10.1002/pc.10566)
84+
* __SIC__, __SQC__:\
85+
Tobias Karl, Matti Schneider and Thomas Böhlke,\
86+
'On fully symmetric implicit closure approximations for fiber orientation tensors',\
87+
Journal of Non-Newtonian Fluid Mechanics 318 : 105049, 2023.\
88+
(https://doi.org/10.1016/j.jnnfm.2023.105049)
7289

7390
## Approximations for equivalent aspect ratios
7491
* __Cox__:\

fiberoripy/closures.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,8 @@ def symmetric_implicit_closure(a):
728728
References
729729
----------
730730
.. [1] Karl, Tobias, Matti Schneider, and Thomas Böhlke,
731-
'On fully symmetric implicit closure approximations for fiber orientation tensors',
732-
Journal of Non-Newtonian Fluid Mechanics 318 : 105049,
731+
'On fully symmetric implicit closure approximations for fiber orientation
732+
tensors', Journal of Non-Newtonian Fluid Mechanics 318 : 105049,
733733
https://doi.org/10.1016/j.jnnfm.2023.105049
734734
"""
735735
assert_fot_properties(a)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def package_files(directory):
3030

3131
setuptools.setup(
3232
name="fiberoripy",
33-
version="1.1.3",
33+
version="1.1.4",
3434
author="Nils Meyer, Constantin Krauß, Louis Schreyer, Julian Karl Bauer",
3535
author_email="[email protected]",
3636
description="Fiber orientation models and closures",

tests/test_closure.py

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def get_test_tensors():
2727
@pytest.mark.parametrize(
2828
"type",
2929
["IBOF", "LINEAR", "HYBRID", "QUADRATIC", "ORF", "SIQ"],
30-
# "type", ["IBOF", "LINEAR", "HYBRID", "QUADRATIC", "RANDOM", ]
3130
)
3231
def test_reduction(a, type):
3332
"""Test contraction property."""
@@ -42,7 +41,6 @@ def test_reduction(a, type):
4241
@pytest.mark.parametrize(
4342
"type",
4443
["IBOF", "LINEAR", "HYBRID", "QUADRATIC", "ORF", "SIQ", "SQC"],
45-
# "type", ["IBOF", "LINEAR", "HYBRID", "QUADRATIC", "RANDOM"]
4644
)
4745
def test_contraction(a, type):
4846
"""Test first contraction property."""

0 commit comments

Comments
 (0)