Add cellinfo writer to varied fillings

This commit is contained in:
Paul Brinkmeier 2023-12-15 17:08:44 +01:00
parent 409ec8b4c2
commit 6863581568

View File

@ -8,7 +8,7 @@
"blockcount": [4, 4, 3] "blockcount": [4, 4, 3]
}, },
"Settings": { "Settings": {
"timesteps": 500, "timesteps": 750,
"randomseed": 42 "randomseed": 42
}, },
"Filling": { "Filling": {
@ -30,7 +30,7 @@
"adhesion": { "adhesion": {
"matrix": [ "matrix": [
[ 0, 0, 0, 10], [ 0, 0, 0, 10],
[ 0, 0, 0, 10], [ 0, 0, 0, 0],
[10, 0, 40, 5], [10, 0, 40, 5],
[10, 0, 5, 40] [10, 0, 5, 40]
] ]
@ -85,15 +85,19 @@
"writer": "ParallelVtkImage", "writer": "ParallelVtkImage",
"outputtype": "UInt32", "outputtype": "UInt32",
"field": "cells", "field": "cells",
"steps": 5 "steps": 10
}, },
"ParallelVTK_Displacement": { "ParallelVTK_Displacement": {
"writer": "ParallelVtkImage", "writer": "ParallelVtkImage",
"outputtype": "Float32", "outputtype": "Float32",
"field": "dynamicecm", "field": "dynamicecm",
"components": [0, 1, 2], "components": [0, 1, 2],
"steps": 5 "steps": 10
},
"CellInfo": {
"writer": "CellInfo",
"steps": 10
} }
}, },
"WriteActions": ["ParallelVTK_Cells", "ParallelVTK_Displacement"] "WriteActions": ["ParallelVTK_Cells", "ParallelVTK_Displacement", "CellInfo"]
} }