Hi BWO
There are a few things (which are mostly our faults as developers)
1.
I'm sorry to bring disappointing news, but there is unfortunately no way to visualize the load (or reaction forces) in the VTK output. The good news is that this is definitely a planned feature (I'm currently working on having all engineering models support the concept of External and Internal "forces" in order to make this general).
2.
TotalLoadLevel is not actually a primary unknown (or even a per-node-data), so it can't really be stored in the VTK file in any nice way. I think you will need to keep that in the normal output file.
In the latest version in GIT, I've actually removed a few values in UnknownType, since they weren't actual unknowns (the VTK export didn't know how to deal with them anyway, and they shouldn't have been there). The VTKXML export has just a few of them (which makes sense to export per node), like displacement, temperature, eigenvector, while other values such as "eigenvalue", "loadlevel" didn't belong there.
InternalForcesEBENorm was never actually use anywhere, and was actually intended to be the norm of the internal element forces (used when computing the relative error in the newton solver).
3.
Also, you have 5 values for "vars" but you specify only a length 4, but that aside, it seems the material model in question doesn't really like to export the principal stresses or strains. I would say this is a bug in OOFEM (without having had time to dig into in more detail yet).
StructuralMaterial fails to take into account that you only get 2 principal values when exporting plane stress (or we should pad it out with an extra zero).
I'm currently fixing this, so the GIT version will soon have this fixed (until then, you'll have to do without principal stresses and strains)