[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Moderator: GiD Team

Post Reply
Rafael Doig

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Rafael Doig »

Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know, in an eulerian formulation the mesh keeps fixed and the material move trought the mesh.
In the picture (please see attachment) we see the material in red color and the void in blue color after deformation. The material builds a volume within the fixed mesh volumen. My wish is just to be able to show only the material and not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040729/2780e8ad/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 3D-impactbar.gif
Type: image/gif
Size: 50678 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040729/2780e8ad/attachment.gif
Miguel A. Pasenau de Riera

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Miguel A. Pasenau de Riera »

What you can do is to set the Minimum limit of the contour fill to 0.5, and
tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can
also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know,
in an eulerian formulation the mesh keeps fixed and the material move trought
the mesh.
In the picture (please see attachment) we see the material in red color and the
void in blue color after deformation. The material builds a volume within the
fixed mesh volumen. My wish is just to be able to show only the material and
not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040729/51f4381e/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: usermin.gif
Type: image/gif
Size: 296 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040729/51f4381e/attachment.gif
Rafael Doig

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Rafael Doig »

A big thanks Miguel for your good and quick answer. It helped a lot. However, as you can see in the new picture (see attachment) only the side-surfaces are drawn. What about the surface IN the mesh volume? Means, I would like to have the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael


----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

----------------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know, in an eulerian formulation the mesh keeps fixed and the material move trought the mesh.
In the picture (please see attachment) we see the material in red color and the void in blue color after deformation. The material builds a volume within the fixed mesh volumen. My wish is just to be able to show only the material and not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/5eef8260/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 3D-impactbar.gif
Type: image/gif
Size: 59427 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/5eef8260/attachment.gif
Enrique Escolano

[GiDlist] wants to know how to add more new menus between<Me

Post by Enrique Escolano »

Try this code:

proc MytTestCreateMenu {new_menu_name1} {
global MenuNames MenuEntries MenuCommands MenuAcceler
set last [llength $MenuNames]
set pos1 [expr $last-1]
set pos2 [expr $last-2]
set pos3 [expr $last-3]
set MenuNames [linsert $MenuNames $pos2 "$new_menu_name1"]
set MenuEntries($last) $MenuEntries($pos1)
set MenuCommands($last) $MenuCommands($pos1)
set MenuAcceler($last) $MenuAcceler($pos1)
set MenuEntries($pos1) $MenuEntries($pos2)
set MenuCommands($pos1) $MenuCommands($pos2)
set MenuAcceler($pos1) $MenuAcceler($pos2)
set MenuEntries($pos2) ""
set MenuCommands($pos2) ""
set MenuAcceler($pos2) ""
}

MytTestCreateMenu Menu1
MytTestCreateMenu Menu2
InsertMenuOption Menu1 test 0 {WarnWinText test} PRE replace
InsertMenuOption Menu2 hello 0 {WarnWinText hello} PRE replace
UpdateMenus

Enrique Escolano
----- Original Message -----
From: De silva mahinda
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, July 30, 2004 5:50 AM
Subject: [GiDlist] wants to know how to add more new menus betweenMeshing and Calculate


Dear Sir,

I have following tcl proc ( MytTestCreateMenu)to create new manu between Meshing and Calculate

and it is called xfinas or let say new_menu_name1 . now i want to add more new menues between above menu and after xfinas.

please explain me how to do it. let say, new_menu_name2=element_library

what i need is following nemus Meshing new_menu_name1new_menu_name2 Calculate



following tcl procedure will give only one new menu between meshing and calculate.
proc MytTestCreateMenu {new_menu_name1} {

global MenuNames MenuEntries MenuCommands MenuAcceler
set last [llength $MenuNames]
set pos1 [expr $last-1]
set pos2 [expr $last-2]
set pos3 [expr $last-3]

set MenuNames [linsert $MenuNames $pos2 "$new_menu_name1"]

set MenuEntries($last) $MenuEntries($pos1)
set MenuCommands($last) $MenuCommands($pos1)
set MenuAcceler($last) $MenuAcceler($pos1)

set MenuEntries($pos1) $MenuEntries($pos2)
set MenuCommands($pos1) $MenuCommands($pos2)
set MenuAcceler($pos1) $MenuAcceler($pos2)

set MenuEntries($pos2) $MenuEntries($pos3)
set MenuCommands($pos2) $MenuCommands($pos3)
set MenuAcceler($pos2) $MenuAcceler($pos3)

}

with regards

de silva



------------------------------------------------------------------------------
MSN 8 helps ELIMINATE E-MAIL VIRUSES. Get 2 months FREE*. _______________________________________________ GiDlist mailing list GiDlist at gid.cimne.upc.es http://gid.cimne.upc.es/mailman/listinfo/gidlist
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/1d32e544/attachment.htm
Miguel A. Pasenau de Riera

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Miguel A. Pasenau de Riera »

i send you enclosed a picture as example.
miguel


_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 30 de julio de 2004 1:53
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


A big thanks Miguel for your good and quick answer. It helped a lot. However,
as you can see in the new picture (see attachment) only the side-surfaces are
drawn. What about the surface IN the mesh volume? Means, I would like to have
the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael



----- Original Message -----
From: Miguel A. mailto:miguel at cimne.upc.es Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and
tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can
also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know,
in an eulerian formulation the mesh keeps fixed and the material move trought
the mesh.
In the picture (please see attachment) we see the material in red color and the
void in blue color after deformation. The material builds a volume within the
fixed mesh volumen. My wish is just to be able to show only the material and
not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/d44f883c/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: material_cfill_iso.png
Type: application/octet-stream
Size: 31515 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/d44f883c/attachment.obj
Miguel A. Pasenau de Riera

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Miguel A. Pasenau de Riera »

Hello,

you have to combine several results view types: Contour Fill (to drawn the
volume with material) and Iso surfaces (to create the inner surface of the
volume).

you have to:

1. in the window 'Windows-Several results', under the label 'Results view:'
click 'one over another'.
2. the do a Contour fill with your results and options
3. then do a iso surface with your exact value:
a. View Results-Iso Surface-Exact-(your result)
b. it will ask you 'how manu isosurfaces?' you'll need only one.
c. the enter the exact value of your material: 0.5,
d. inside use 'Options-Iso surfaces-Display Style' and 'Options-Iso
surfaces-Render' to select your desired visualization for the isosurface.

and that's it!
enjoy it,
best regards

miguel



_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 30 de julio de 2004 1:53
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


A big thanks Miguel for your good and quick answer. It helped a lot. However,
as you can see in the new picture (see attachment) only the side-surfaces are
drawn. What about the surface IN the mesh volume? Means, I would like to have
the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael



----- Original Message -----
From: Miguel A. mailto:miguel at cimne.upc.es Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and
tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can
also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know,
in an eulerian formulation the mesh keeps fixed and the material move trought
the mesh.
In the picture (please see attachment) we see the material in red color and the
void in blue color after deformation. The material builds a volume within the
fixed mesh volumen. My wish is just to be able to show only the material and
not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/583e0e25/attachment.htm
Rafael Doig

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Rafael Doig »

Hello Miguel,
thank you again for your support.

It works however only with displacement's iso-surfaces but not with gauss points centred data. Maybe because displacements are node values? You know, the filling rate is a scalar value attached to the gauss point (only one)

I send you the result file. I will appreciate any help more.
Thank you in advance.

Rafael
----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, July 30, 2004 9:16 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


Hello,

you have to combine several results view types: Contour Fill (to drawn the volume with material) and Iso surfaces (to create the inner surface of the volume).

you have to:

1. in the window 'Windows-Several results', under the label 'Results view:' click 'one over another'.
2. the do a Contour fill with your results and options
3. then do a iso surface with your exact value:
a. View Results-Iso Surface-Exact-(your result)
b. it will ask you 'how manu isosurfaces?' you'll need only one.
c. the enter the exact value of your material: 0.5,
d. inside use 'Options-Iso surfaces-Display Style' and 'Options-Iso surfaces-Render' to select your desired visualization for the isosurface.

and that's it!
enjoy it,
best regards

miguel



----------------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 30 de julio de 2004 1:53
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


A big thanks Miguel for your good and quick answer. It helped a lot. However, as you can see in the new picture (see attachment) only the side-surfaces are drawn. What about the surface IN the mesh volume? Means, I would like to have the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael


----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

------------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know, in an eulerian formulation the mesh keeps fixed and the material move trought the mesh.
In the picture (please see attachment) we see the material in red color and the void in blue color after deformation. The material builds a volume within the fixed mesh volumen. My wish is just to be able to show only the material and not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040806/702c8881/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: GID00005.flavia.msh
Type: application/octet-stream
Size: 214410 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040806/702c8881/attachment.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: GID00005.flavia.res
Type: application/octet-stream
Size: 480112 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040806/702c8881/attachment-0001.obj
Miguel A. Pasenau de Riera

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Miguel A. Pasenau de Riera »

yes you're right, isosurfaces only works for nodal values. the representation
for gauss points result is under development. i'll try to finish it for the
next beta.

miguel


_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 06 de agosto de 2004 3:56
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


Hello Miguel,
thank you again for your support.

It works however only with displacement's iso-surfaces but not with gauss
points centred data. Maybe because displacements are node values? You know, the
filling rate is a scalar value attached to the gauss point (only one)

I send you the result file. I will appreciate any help more.
Thank you in advance.

Rafael

----- Original Message -----
From: Miguel A. mailto:miguel at cimne.upc.es Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, July 30, 2004 9:16 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results

Hello,

you have to combine several results view types: Contour Fill (to drawn the
volume with material) and Iso surfaces (to create the inner surface of the
volume).

you have to:

1. in the window 'Windows-Several results', under the label 'Results view:'
click 'one over another'.
2. the do a Contour fill with your results and options
3. then do a iso surface with your exact value:
a. View Results-Iso Surface-Exact-(your result)
b. it will ask you 'how manu isosurfaces?' you'll need only one.
c. the enter the exact value of your material: 0.5,
d. inside use 'Options-Iso surfaces-Display Style' and 'Options-Iso
surfaces-Render' to select your desired visualization for the isosurface.

and that's it!
enjoy it,
best regards

miguel



_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 30 de julio de 2004 1:53
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


A big thanks Miguel for your good and quick answer. It helped a lot. However,
as you can see in the new picture (see attachment) only the side-surfaces are
drawn. What about the surface IN the mesh volume? Means, I would like to have
the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael



----- Original Message -----
From: Miguel A. mailto:miguel at cimne.upc.es Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and
tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can
also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

_____

De: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an
eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know,
in an eulerian formulation the mesh keeps fixed and the material move trought
the mesh.
In the picture (please see attachment) we see the material in red color and the
void in blue color after deformation. The material builds a volume within the
fixed mesh volumen. My wish is just to be able to show only the material and
not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040806/2c76d4cd/attachment.htm
Rafael Doig

[GiDlist] GiD 7.4.6 - Showing only the material part of an e

Post by Rafael Doig »

Thank you Miguel,

at least I know where the obstacle is. I will thank you a lot, if I can get a notification when the next beta with this capability is finished.

Have a nice day
Rafael

----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, August 06, 2004 8:32 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


yes you're right, isosurfaces only works for nodal values. the representation for gauss points result is under development. i'll try to finish it for the next beta.

miguel



----------------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 06 de agosto de 2004 3:56
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


Hello Miguel,
thank you again for your support.

It works however only with displacement's iso-surfaces but not with gauss points centred data. Maybe because displacements are node values? You know, the filling rate is a scalar value attached to the gauss point (only one)

I send you the result file. I will appreciate any help more.
Thank you in advance.

Rafael
----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, July 30, 2004 9:16 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


Hello,

you have to combine several results view types: Contour Fill (to drawn the volume with material) and Iso surfaces (to create the inner surface of the volume).

you have to:

1. in the window 'Windows-Several results', under the label 'Results view:' click 'one over another'.
2. the do a Contour fill with your results and options
3. then do a iso surface with your exact value:
a. View Results-Iso Surface-Exact-(your result)
b. it will ask you 'how manu isosurfaces?' you'll need only one.
c. the enter the exact value of your material: 0.5,
d. inside use 'Options-Iso surfaces-Display Style' and 'Options-Iso surfaces-Render' to select your desired visualization for the isosurface.

and that's it!
enjoy it,
best regards

miguel



------------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: viernes, 30 de julio de 2004 1:53
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


A big thanks Miguel for your good and quick answer. It helped a lot. However, as you can see in the new picture (see attachment) only the side-surfaces are drawn. What about the surface IN the mesh volume? Means, I would like to have the all the surfaces that close the volume of material.

I thank you again in advance for your kindly help
Regards,
Rafael


----- Original Message -----
From: Miguel A. Pasenau de Riera
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 29, 2004 10:54 PM
Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results


What you can do is to set the Minimum limit of the contour fill to 0.5, and tell gid to draw everything below this minimum value as transparent.

to achieve this:
1. options-ContourFill-Min.options-set value set it to 0.5 (you can also use the icon 'usermin' that appears on the postprocess icon bar)
2. options-ContourFill-Min.options-Out Min Color-Transparent

and that's it!

hope it helps

miguel

--------------------------------------------------------------------
De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig
Enviado el: jueves, 29 de julio de 2004 11:48
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results



Dear GiD support team,

I would be very thankful for some help to following problem:

We are developing a 3D eulerian FEM-code for plasticity problems. As you know, in an eulerian formulation the mesh keeps fixed and the material move trought the mesh.
In the picture (please see attachment) we see the material in red color and the void in blue color after deformation. The material builds a volume within the fixed mesh volumen. My wish is just to be able to show only the material and not the void (blue color) part of the mesh. Is it possible?

Thanks a lot in advance

Best regards
Rafael Doig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040807/978ab61c/attachment.htm
Post Reply