Result mesh single element/node picking and inspection

About the development of the FEM module/workbench.

Moderator: bernd

User avatar
bernd
Veteran
Posts: 12851
Joined: Sun Sep 08, 2013 8:07 pm
Location: Zürich, Switzerland
Contact:

Re: Result mesh single element/node picking and inspection

Post by bernd »

Damn it is even more complicated ... Data at point seams to use the FreeCAD FE mesh to select the point. But we gone have two FE meshes, the analysis mesh and the result mesh. You should for sure make the analysis mesh not visible.

Mhh I need to play with this too. I have not used the tool for ages ...
Walgri
Posts: 32
Joined: Sat May 09, 2015 10:16 pm

Re: Result mesh single element/node picking and inspection

Post by Walgri »

The analysis mesh is made visibile when I click on the Select Point button.
User avatar
bernd
Veteran
Posts: 12851
Joined: Sun Sep 08, 2013 8:07 pm
Location: Zürich, Switzerland
Contact:

Re: Result mesh single element/node picking and inspection

Post by bernd »

Walgri wrote: Tue Apr 23, 2019 2:50 pm The analysis mesh is made visibile when I click on the Select Point button.
Yes this is what I mean with ...
bernd wrote: Tue Apr 23, 2019 2:39 pm ... Data at point seams to use the FreeCAD FE mesh to select the point ...
This is the code which is run on button "Select Point"

Code: Select all

>>> for amesh in App.activeDocument().Objects:
>>>     if "Mesh" in amesh.TypeId:
>>>          aparttoshow = amesh.Name.replace("_Mesh","")
>>>          for apart in App.activeDocument().Objects:
>>>              if aparttoshow == apart.Name:
>>>                  apart.ViewObject.Visibility = True
>>> 

As said there might be some problem with DataAtPoint ...
Post Reply