Skip to main content

SetFacetParam

The SetFacetParam method sets parameters for a facet element in the mesh.

Interface

INTERFACE
MODULE SUBROUTINE SetFacetParam(obj, facetElement, elementType)
CLASS(AbstractMesh_), INTENT(INOUT) :: obj
INTEGER(I4B), INTENT(IN) :: facetElement
INTEGER(I4B), OPTIONAL, INTENT(IN) :: elementType
END SUBROUTINE SetFacetParam
END INTERFACE

Syntax

CALL obj%SetFacetParam(facetElement, [elementType])

Parameters

ParameterTypeIntentDescription
objCLASS(AbstractMesh_)INOUTThe mesh object
facetElementINTEGER(I4B)INFacet element number
elementTypeINTEGER(I4B)IN (optional)Element type for the facet

Description

SetFacetParam sets parameters for a specific facet element in the mesh. Currently, it allows setting the element type of the facet.

Implementation Notes

This method calls FacetData_SetParam to update the facet element's parameters.