diff --git a/tutorials/cfdemSolverIB/twoSpheresGlowinskiMPI/run.config b/tutorials/cfdemSolverIB/twoSpheresGlowinskiMPI/run.config index d1184a4f..ee21aa1d 100644 --- a/tutorials/cfdemSolverIB/twoSpheresGlowinskiMPI/run.config +++ b/tutorials/cfdemSolverIB/twoSpheresGlowinskiMPI/run.config @@ -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]"} + ] + } } ] }