needs to be a 2D array

This commit is contained in:
Martin Diehl 2021-08-18 09:17:06 +02:00
parent f76d64d355
commit ef4e4ec772
2 changed files with 12 additions and 12 deletions

View File

@ -5,12 +5,12 @@ solver:
loadstep:
- boundary_conditions:
mechanical:
dot_F: [x, 0, 0,
0, -1.0e-3, 0,
0, 0, x]
P: [0, x, x,
x, x, x,
x, x, 0]
dot_F: [[x, 0, 0],
[0, -1.0e-3, 0],
[0, 0, x]]
P: [[0, x, x],
[x, x, x],
[x, x, 0]]
discretization:
t: 5
N: 10

View File

@ -5,12 +5,12 @@ solver:
loadstep:
- boundary_conditions:
mechanical:
dot_F: [x, 0, 0,
0, 1.0e-3, 0,
0, 0, x]
P: [0, x, x,
x, x, x,
x, x, 0]
dot_F: [[x, 0, 0],
[0, 1.0e-3, 0],
[0, 0, x]]
P: [[0, x, x],
[x, x, x],
[x, x, 0]]
discretization:
t: 20
N: 40