pyleecan.Classes.MeshVTK module¶
Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Mesh/MeshVTK
- class MeshVTK(mesh=None, is_pyvista_mesh=False, format='vtk', path=None, name='mesh', surf=None, is_vtk_surf=False, surf_path='', surf_name='', node_normals=None, label=None, dimension=2, init_dict=None, init_str=None)[source]¶
Bases:
Mesh
Gather the mesh storage format
- VERSION = 1¶
- get_mesh_pv(indices=None)¶
Return the pyvista mesh object (or submesh).
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the points to extract (optional)
- Returns:
mesh – a pyvista UnstructuredGrid object
- Return type:
pyvista.core.pointset.UnstructuredGrid
- get_node(indices=None)¶
Return the array of the nodes coordinates.
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the nodes to extract (optional)
- Returns:
nodes – Points coordinates
- Return type:
ndarray
- get_cell(indices=None)¶
Return the cells (connectivities).
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the points to extract (optional)
- Returns:
cells – List of cell groups (type + array)
- Return type:
list
- get_normals(indices=None, loc='center')¶
Return the array of the normals coordinates.
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the points to extract (optional)
loc (str) – localization of the normals (“center” or “point”)
- Returns:
normals – Normals coordinates
- Return type:
ndarray
- get_surf(indices=None)¶
Return the surf object if it was already extracted, or extracts it from the mesh.
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the points to extract (optional)
- Returns:
surf – a pyvista polydata object
- Return type:
pyvista.core.pointset.PolyData
- get_cell_area(indices=None)¶
Return the area of the cells on the outer surface.
- Parameters:
self (MeshVTK) – a MeshVTK object
indices (list) – list of the points to extract (optional)
- Returns:
areas – Area of the cells
- Return type:
ndarray
- convert(meshtype, scale)¶
Convert this object to another type of Mesh object.
- perm_coord(perm_coord_list=[0, 1, 2], path_meshVTK=None)¶
Returns the current MeshVTK object with permuted coordinates
- get_path(name=None, file_format='vtk')¶
return the path to the file to save the mesh
- Parameters:
self (MeshVTK) – MeshVTK Object
name (str) – Name of the file to use (None: use self.name)
file_format (str) – extension of the file to use
- Returns:
path – Full path to the mesh file
- Return type:
str
- save(save_path='', is_folder=False, type_handle_old=2, type_compression=0)¶
Save the object to the save_path
- Parameters:
self – A pyleecan object
save_path (str) – path to the folder to save the object
is_folder (bool) – to split the object in different files: separate simulation machine and materials (json only)
type_handle_old (int) – How to handle old file in folder mode (0:Nothing, 1:Delete, 2:Move to “Backup” folder)
type_compression (int) – Available only for json, 0: no compression, 1: gzip
- get_logger()¶
Get the object logger or its parent’s one
- Parameters:
obj – A pyleecan object
- Returns:
logger – Pyleecan object dedicated logger
- Return type:
logging.Logger
- compare(other, name='self', ignore_list=None, is_add_value=False)[source]¶
Compare two objects and return list of differences
- as_dict(type_handle_ndarray=0, keep_function=False, **kwargs)[source]¶
Convert this object in a json serializable dict (can be use in __init__). type_handle_ndarray: int
How to handle ndarray (0: tolist, 1: copy, 2: nothing)
- keep_functionbool
True to keep the function object, else return str
Optional keyword input parameter is for internal use only and may prevent json serializability.
- property mesh¶
Pyvista object of the mesh (optional)
- Type:
vtk.vtkPointSet
- property is_pyvista_mesh¶
Store the pyvista object
- Type:
bool
- property format¶
Format in which the mesh is stored
- Type:
str
- property path¶
Path where the mesh is stored
- Type:
str
- property name¶
Name of the mesh file
- Type:
str
- property surf¶
Pyvista object of the outer surface
- Type:
pyvista.core.pointset.PolyData
- property is_vtk_surf¶
Save the surface mesh in a vtk file
- Type:
bool
- property surf_path¶
Path where the outer surface is stored
- Type:
str
- property surf_name¶
Name of the outer surface file
- Type:
str
- property node_normals¶
Array of normals to nodes (cell vertices)
- Type:
ndarray