-
I am trying to use the Hooke_Ti and Phenopowerlaw_Ti example definition in damask for a simulation, and I keep getting an error message Error 706 type mismatch in YAML data node "[0.001, 0.001, 0.0, 0.001]" is not a scalar. I have seen a discussion where only the elastic part was used. I have attached my material file for your reference. I would really like some help:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
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 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] |
Beta Was this translation helpful? Give feedback.
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:
to
Please see the example at
config/phase/mechanical/plastic/phenopowerlaw_Ti.yaml
, since it is correctly configured in there...Explanation: