add poition and velocity plots to run.config of twoSphereGlowinskiMPI

This commit is contained in:
danielque
2017-03-07 17:40:37 +01:00
parent 84c4b2945e
commit 7b05d10fbc

View File

@ -5,7 +5,19 @@
"name" : "cfdemrun",
"solver" : "cfdemSolverIB",
"type" : "CFDEMcoupling/mpi",
"nprocs" : 4
"nprocs" : 4,
"data" : {
"series" : [
{"name" : "velocity1", "file" : "velocity_particle_1.txt", "columns" : ["t", "vx", "vy", "vz"]},
{"name" : "velocity2", "file" : "velocity_particle_2.txt", "columns" : ["t", "vx", "vy", "vz"]},
{"name" : "position1", "file" : "position_particle_1.txt", "columns" : ["t", "x", "y", "z"]},
{"name" : "position2", "file" : "position_particle_2.txt", "columns" : ["t", "x", "y", "z"]}
],
"plots" : [
{"name" : "y-position", "title" : "Particle Y-Position", "xdata" : "position1.t", "ydata" : ["position1.y", "position2.y"], "xlabel" : "time [s]", "ylabel" : "position [m]"},
{"name" : "y-velocity", "title" : "Particle Y-Velocity", "xdata" : "velocity1.t", "ydata" : ["velocity1.vy", "velocity2.vy"], "xlabel" : "time [s]", "ylabel" : "velocity [m/s]"}
]
}
}
]
}