Chi-Tech
Mesh Handler

Functions

void chi_lua::chiMeshHandlerExportMeshToObj (char FileName, bool ExportByMaterial)
 
void chi_lua::chiMeshHandlerExportMeshToVTK (char FileName)
 
void chi_lua::chiMeshHandlerExportMeshToExodus (char FileName, bool suppress_nodesets, bool suppress_sidesets)
 
Handle chi_lua::chiMeshHandlerCreate ()
 
void chi_lua::chiMeshHandlerSetCurrent (int HandlerHandler)
 

Detailed Description

Function Documentation

◆ chiMeshHandlerCreate()

Handle chi_lua::chiMeshHandlerCreate ( )

Creates a mesh handler and sets it as "current".

Returns
Handle int Handle to the created mesh handler.
Author
Jan

Definition at line 1120 of file lua_functions.c.

◆ chiMeshHandlerExportMeshToExodus()

void chi_lua::chiMeshHandlerExportMeshToExodus ( char  FileName,
bool  suppress_nodesets,
bool  suppress_sidesets 
)

Exports the mesh to exodus format (.e extensions).

Parameters
FileNamechar Base name of the file to be used.
suppress_nodesetsbool Optional. Flag to suppress exporting nodesets. Default = false.
suppress_sidesetsbool Optional. Flag to suppress exporting sidesets. Default = false.

Definition at line 1113 of file lua_functions.c.

◆ chiMeshHandlerExportMeshToObj()

void chi_lua::chiMeshHandlerExportMeshToObj ( char  FileName,
bool  ExportByMaterial 
)

Exports the mesh to a wavefront.obj format.

Parameters
FileNamechar Base name of the file to be used.
ExportByMaterialbool Default: False. Flag indicating whether to export the extruder's surface mesh by material.

Definition at line 1084 of file lua_functions.c.

◆ chiMeshHandlerExportMeshToVTK()

◆ chiMeshHandlerSetCurrent()

void chi_lua::chiMeshHandlerSetCurrent ( int  HandlerHandler)

Sets the given mesh handler as "current".

Parameters
HandlerHandlerint Handle to the mesh handler previously created with a call to chiMeshHandlerCreate.
Author
Jan

Definition at line 1128 of file lua_functions.c.