cape.cfdx.options.mesh: Basic meshing options¶
This module contains the skeleton of settings for meshes. Since most meshing options are specific to codes, very few options are contained in this overall template.
- class cape.cfdx.options.Mesh.Mesh(**kw)¶
Dictionary-based interfaced for options for meshing
- get_MeshFile(i=None)¶
Return the original mesh file names
- Call:
>>> fname = opts.get_MeshFile(i=None)
- Inputs:
- opts:
cape.options.Options Options interface
- i:
int|None Optional index
- opts:
- Outputs:
- fname:
str|list[str] Mesh file name or list of files
- fname:
- Versions:
2015-10-19
@ddalle: First version
- get_TriFile(i=None)¶
Return the surface triangulation file
- Call:
>>> fname = opts.get_TriFile(i=None)
- Inputs:
- opts:
cape.options.Options Options interface
- i:
int|None Run index
- opts:
- Outputs:
- fname:
strorlist`(:class:`str) Surface triangulation file
- fname:
- Versions:
2014-08-03
@ddalle: First version2016-03-29
@ddalle: Copied fromcape.pycart.options