Skip to content
Discussion options

You must be logged in to vote

Hi @KojoCha,

There is a type error in your material definition. The parameters that are specified per slip family need to be a list, not a list of lists. That means you have to change entries such as:

dot_gamma_0_sl: [[0.001, 0.001, 0.0, 0.001]]
n_sl: [[20, 20, 1, 20]]

to

dot_gamma_0_sl: [0.001, 0.001, 0.0, 0.001]
n_sl: [20, 20, 1, 20]

Please see the example at config/phase/mechanical/plastic/phenopowerlaw_Ti.yaml, since it is correctly configured in there...

Explanation:

N_sl:           [ 3,     3,     0,   12]  # select first, second, and fourth hexagonal slip family
                  |      |      |    |
                  v      v      v    v
dot_gamma_0_sl: [0.001, 0.001, 0.0, 0.001]

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@KojoCha
Comment options

Answer selected by KojoCha
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants