MeshTriangleFace
A mesh entity representing a face meshed using triangles.
Example
application = cf.Application.GetInstance() project = application:NewProject() -- Set the frequency project.Contents.SolutionConfigurations.GlobalFrequency.Start = "1e06" -- Create geometry and mesh project.Contents.Geometry:AddSphere(cf.Point(0,0,0),1.0) project.Mesher:Mesh() project.Contents.Geometry["Sphere1"]:UnlinkMesh() meshTriangleFaces = project.Contents.Meshes["Sphere1_1"].Faces -- Retrieve a specific 'MeshTriangleFace' from the collection. meshTriangleFace = meshTriangleFaces["Face1"] -- Reverse all the face normals meshTriangleFace:ReverseElementNormals()
Inheritance
The MeshTriangleFace object is derived from the AbstractMeshTriangleFace object.
Usage locations
The MeshTriangleFace object can be accessed from the following locations:
- Properties
- WaveguideMeshPort object has property Face.
- Methods
- MeshTriangleFaceCollection collection has method Item(number).
- MeshTriangleFaceCollection collection has method Item(string).
Property List
- BasisFunctionSettings
- Local basis function solver settings for the face. (Read/Write BasisFunctionLocalSolverSettings)
- BoundingBox
- A box indicating the bounding box of this entity. (Read only Box). (Read only Box)
- Coating
- The face coating specified by a predefined Layered dielectric medium. An electrically thin coating is applied on both sides of the face, while an electrically thick coating is applied on the normal side of the face. The face should be set up to have free space on at least one of the sides, while the other side can be free space or PEC. Changing this property will set CoatingEnabled to true. (Read/Write Medium)
- CoatingEnabled
- Specifies if a coating should be applied to the face. (Read/Write boolean)
- FaceAbsorbingSettings
- The face absorption, reflection and transmission properties with regards to rays. Only applies if the SolutionMethod is set to RLGO. (Read/Write RLGOFaceAbsorbingSettings)
- IntegralEquation
- The type of integral equation for perfectly conducting metallic surfaces. Only applies when SolutionMethod is set to None. (Read/Write IntegralEquationTypeEnum)
- Label
- The object label. (Read/Write string)
- LocalMeshSize
- The local mesh size for the wire/edge. Changing this property will set LocalMeshSizeEnabled to true. (Read/Write ParametricExpression)
- LocalMeshSizeEnabled
- Specifies if the local mesh size should be used for the wire/edge. (Read/Write boolean)
- Medium
- The face medium. (Read/Write Medium)
- Part
- The mesh part that this entity belongs to. (Read only Mesh)
- SolutionMethod
- The local solution method used for the face. (Read/Write FaceSolutionMethodEnum)
- SurfaceCoatingType
- The surface coating type for the face. (Read/Write SurfaceCoatingTypeEnum)
- Thickness
- The face medium thickness. Only applies when the Medium is defined as a Metallic. (Read/Write ParametricExpression)
- Type
- The object type string. (Read only string)
- Visible
- Specifies whether the geometry must be shown or hidden. (Read/Write boolean)
- Windscreen
- The windscreen solution method settings for the face. Only applies if the SolutionMethod is set to Windscreen. (Read/Write WindscreenSolutionMethod)
Method List
- Delete ()
- Deletes the entity.
- Duplicate ()
- Duplicates the entity. (Returns a Object object.)
- GetProperties ()
- Returns a table of properties representing the state of the object. The properties table can be used with the SetProperties method to change multiple properties of the object in one step. (Returns a table object.)
- ReverseElementNormals ()
- Reverses the element normals of the mesh face.
- SetProperties (properties Object)
- Modifies the state of the object using the provided table of properties. This method is used to modify multiple properties of the object in a single step.
Static Function List
- GetDefaultProperties ()
- Creates a table containing the default settings to create an object. (Returns a table object.)
Property Details
- BasisFunctionSettings
- Local basis function solver settings for the face.
- Type
- BasisFunctionLocalSolverSettings
- Access
- Read/Write
- BoundingBox
- A box indicating the bounding box of this entity. (Read only Box).
- Type
- Box
- Access
- Read only
- Coating
- The face coating specified by a predefined Layered dielectric medium. An electrically thin coating is applied on both sides of the face, while an electrically thick coating is applied on the normal side of the face. The face should be set up to have free space on at least one of the sides, while the other side can be free space or PEC. Changing this property will set CoatingEnabled to true.
- Type
- Medium
- Access
- Read/Write
- CoatingEnabled
- Specifies if a coating should be applied to the face.
- Type
- boolean
- Access
- Read/Write
- FaceAbsorbingSettings
- The face absorption, reflection and transmission properties with regards to rays. Only applies if the SolutionMethod is set to RLGO.
- Type
- RLGOFaceAbsorbingSettings
- Access
- Read/Write
- IntegralEquation
- The type of integral equation for perfectly conducting metallic surfaces. Only applies when SolutionMethod is set to None.
- Type
- IntegralEquationTypeEnum
- Access
- Read/Write
- Label
- The object label.
- Type
- string
- Access
- Read/Write
- LocalMeshSize
- The local mesh size for the wire/edge. Changing this property will set LocalMeshSizeEnabled to true.
- Type
- ParametricExpression
- Access
- Read/Write
- LocalMeshSizeEnabled
- Specifies if the local mesh size should be used for the wire/edge.
- Type
- boolean
- Access
- Read/Write
- Medium
- The face medium.
- Type
- Medium
- Access
- Read/Write
- Part
- The mesh part that this entity belongs to.
- Type
- Mesh
- Access
- Read only
- SolutionMethod
- The local solution method used for the face.
- Type
- FaceSolutionMethodEnum
- Access
- Read/Write
- SurfaceCoatingType
- The surface coating type for the face.
- Type
- SurfaceCoatingTypeEnum
- Access
- Read/Write
- Thickness
- The face medium thickness. Only applies when the Medium is defined as a Metallic.
- Type
- ParametricExpression
- Access
- Read/Write
- Type
- The object type string.
- Type
- string
- Access
- Read only
- Visible
- Specifies whether the geometry must be shown or hidden.
- Type
- boolean
- Access
- Read/Write
- Windscreen
- The windscreen solution method settings for the face. Only applies if the SolutionMethod is set to Windscreen.
- Type
- WindscreenSolutionMethod
- Access
- Read/Write
Method Details
- Delete ()
- Deletes the entity.
- Duplicate ()
- Duplicates the entity.
- Return
- Object
- The new (duplicated) entity.
- GetProperties ()
- Returns a table of properties representing the state of the object. The properties table can be used with the SetProperties method to change multiple properties of the object in one step.
- Return
- table
- A table defining the properties.
- ReverseElementNormals ()
- Reverses the element normals of the mesh face.
- SetProperties (properties Object)
- Modifies the state of the object using the provided table of properties. This method is used to modify multiple properties of the object in a single step.
- Input Parameters
- properties(Object)
- A table of properties defining the new state of the object.
Static Function Details
- GetDefaultProperties ()
- Creates a table containing the default settings to create an object.
- Return
- table
- A table containing the default properties.