anisotropy/conf/config.toml

81 lines
1.4 KiB
TOML
Raw Normal View History

2021-06-02 16:12:34 +05:00
###
# Default config for anisotropy
#
2021-06-08 17:15:44 +05:00
# Special values:
# theta = [min, max, step]
# thickness = [min, max]
2021-06-02 16:12:34 +05:00
##
[logger]
name = "anisotropy"
format = "%(levelname)s: %(message)s"
[base]
simple = false
bodyCentered = false
faceCentered = true
[[structures]]
name = "simple"
[structures.geometry]
theta = [0.01, 0.28, 0.01]
directions = [
[1, 0, 0],
[0, 0, 1],
[1, 1, 1]
]
fillet = true
[structures.mesh]
viscousLayers = true
thickness = [0.01, 0.005]
[structures.submesh.strips]
growthRate = 0.2
nbSegPerEdge = 2
nbSegPerRadius = 3
[[structures]]
name = "bodyCentered"
[structures.geometry]
theta = [0.01, 0.17, 0.01]
directions = [
[1, 0, 0],
[0, 0, 1],
[1, 1, 1]
]
fillet = true
[structures.mesh]
viscousLayers = true
thickness = [0.005, 0.0005]
[structures.submesh.strips]
growthRate = 0.2
nbSegPerEdge = 2
nbSegPerRadius = 3
[[structures]]
name = "faceCentered"
[structures.geometry]
theta = [0.01, 0.13, 0.01]
directions = [
[1, 0, 0],
[0, 0, 1],
[1, 1, 1]
]
fillet = true
[structures.mesh]
viscousLayers = true
thickness = [0.001, 0.0005]
[structures.submesh.strips]
growthRate = 0.2
nbSegPerEdge = 2
nbSegPerRadius = 3