To show the result for both meshes the result name must be the same (because you select to see a result name, not more than one)
The problem is that you cannot define in the same results file more that a ‘results’
This .post.res file is bad, because must not repeat the same result name (in the same anaysis and time step)
GiD Post Results File 1.0
Result “Movement” “Demo” 1 Vector OnNodes
Values
13 -1.5322 0.52988 0
…
17 -1.9682 1.3943 0
End Values
Result “Movement” “Demo” 1 Vector OnNodes
Values
1 1.2789 -1.8734 0
…
12 -2.0117 -0.57991 0
End Values
(using the include is like it was the same file)
You can somehow externally ‘join’ both results in a single file, with a single 'Result header" to have this .post.res file Ok
Result “Movement” “Demo” 1 Vector OnNodes
Values
13 -1.5322 0.52988 0
…
17 -1.9682 1.3943 0
1 1.2789 -1.8734 0
…
12 -2.0117 -0.57991 0
End Values
Note: it is possible to set ids unsorted, like my example, but if possible I recommend to sort them
It is possible to repeat result name+analysis+step , to allow split the result in several files, but then you must insert the files in postprocess with
Files->Merge… (can select multiple .res files in the dialog window)
And finally it is possible to use a .post.lst file to automatically load several files when changing to postprocess.
The first line of this file declare what to do: Single Merge or Multiple. In your case do you want
Merge
and the next lines of the file are names of the files to load (use relative names). the files could contain mesh, results and/or graphs
e.g. in your case .post.lst
Merge
test_result_nodal_quads_lines.structure.res
test_result_nodal_quads_lines.soil.res
I attach an example with a pseudo-result of a vectorial displacement or nodes (2D rotation of 2 angles in 2 time steps)
test_result_nodal_quads_lines.zip (10.2 KB)
The zip contain as example two unused files:
1-test_result_nodal_quads_lines.post_all_ok.res
this is the first explained approach: somehow join all in a .post.res file with this content (and the remove the .post.lst and all its included files)
2-test_result_nodal_quads_lines.post_all_bad.res
example of currently a bad file, because has repeated results names.