Chi-Tech
|
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) |
Handle chi_lua::chiMeshHandlerCreate | ( | ) |
Creates a mesh handler and sets it as "current".
Definition at line 1120 of file lua_functions.c.
void chi_lua::chiMeshHandlerExportMeshToExodus | ( | char | FileName, |
bool | suppress_nodesets, | ||
bool | suppress_sidesets | ||
) |
Exports the mesh to exodus format (.e extensions).
FileName | char Base name of the file to be used. |
suppress_nodesets | bool Optional. Flag to suppress exporting nodesets. Default = false . |
suppress_sidesets | bool Optional. Flag to suppress exporting sidesets. Default = false . |
Definition at line 1113 of file lua_functions.c.
void chi_lua::chiMeshHandlerExportMeshToObj | ( | char | FileName, |
bool | ExportByMaterial | ||
) |
Exports the mesh to a wavefront.obj format.
FileName | char Base name of the file to be used. |
ExportByMaterial | bool Default: False. Flag indicating whether to export the extruder's surface mesh by material. |
Definition at line 1084 of file lua_functions.c.
void chi_lua::chiMeshHandlerExportMeshToVTK | ( | char | FileName | ) |
Exports the mesh to vtu format.
FileName | char Base name of the file to be used. |
test/framework/chi_mesh/ReadWavefrontObj1.lua
test/framework/chi_mesh/MeshGenerators/meshgen_exampleA.lua
test/framework/chi_mesh/MeshGenerators/meshgen_exampleD.lua
test/framework/chi_mesh/MeshGenerators/meshgen_exampleB.lua
test/framework/chi_mesh/MeshGenerators/meshgen_exampleC.lua
test/framework/chi_mesh/MeshGenerators/meshgen_extruder_KBA.lua
test/framework/chi_mesh/LogicalVolume/lv_rcc_test1.lua
test/framework/chi_mesh/LogicalVolume/lv_boolean_test1.lua
test/modules/CFEM_Diffusion/cDiffusion_2D_3a_analytical_coef.lua
test/modules/CFEM_Diffusion/cDiffusion_2D_3b_analytical_coef2.lua
test/modules/LinearBoltzmannSolvers/Transport_Transient/TransientTransport2D_3.lua
test/modules/LinearBoltzmannSolvers/Transport_Steady/Transport3D_6ASplitMesh.lua
test/modules/LinearBoltzmannSolvers/Transport_Steady/Transport3D_6BSplitMesh.lua
test/modules/LinearBoltzmannSolvers/Transport_Keigen/c5g7/c5g7.lua
Definition at line 1104 of file lua_functions.c.
void chi_lua::chiMeshHandlerSetCurrent | ( | int | HandlerHandler | ) |
Sets the given mesh handler as "current".
HandlerHandler | int Handle to the mesh handler previously created with a call to chiMeshHandlerCreate. |
Definition at line 1128 of file lua_functions.c.