upper_menu_problem

Moderator: GiD Team

Post Reply
ewpostek
Posts: 14
Joined: Mon Nov 02, 2015 5:03 pm

upper_menu_problem

Post by ewpostek »

Dear Colleagues,
I have an unexpected problem.
I read t *res and *msh files. Then, I perform
a few operations (for example, I show Sxx stress in bars) and go to upper menu.
Now, I press "file" (to print the picture into a file)
I obtain the comment as in the attachment "screen". Gid stops
and I have to kill it.

The unexpected thing is that I use other quite
big post files (about two million elements, hexahedrals, balls) and it works well.
The problem appears with the small file I attached as well.
I use Windows 10, 64 bits. The problem appears
with GiD 14.0.5, Gid14.1.10d and Gid15.0.1.

Best regards,
Eligiusz
Attachments
c_stre02a_06.zip
(52.65 KiB) Downloaded 230 times
screen_x.jpg
screen_x.jpg (451.93 KiB) Viewed 4254 times
User avatar
miguel
Posts: 361
Joined: Thu Sep 25, 2014 9:04 am

Re: upper_menu_problem

Post by miguel »

Hello Eligiusz,
the problem is that you are using the same name of Result for three different results:

Result "Result_A" "T10" 0.10000E+01 Vector OnGaussPoints "Bar_a"
ComponentNames "Sxx" "Exx" "Mis_t"
...
Result "Result_A" "T10" 0.10000E+01 Matrix OnGaussPoints "Quad_a"
ComponentNames "Sxx" "Syy" "Szz" "Sxy" "Z00" "Mis"
...
Result "Result_A" "T10" 0.10000E+01 Vector OnNodes
ComponentNames "Disp_X","Disp_Y","Disp_Z"
...

Just changing the name, for instance, to:

Result "Result_A bar vector" "T10" 0.10000E+01 Vector OnGaussPoints "Bar_a"
Result "Result_A quad stress" "T10" 0.10000E+01 Matrix OnGaussPoints "Quad_a"
Result "Result_A nodal vector" "T10" 0.10000E+01 Vector OnNodes

solves the problem.
thanks for the report,

the gid team
Post Reply