Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -742,9 +742,12 @@ def applyFilter( self: Self ) -> None:
if attribute.nbComponent == 6:
componentNames = ComponentNameEnum.XYZ.value

if not createAttribute(
self.output, array, attributeName, componentNames=componentNames, piece=piece, logger=self.logger ):
raise ValueError( f"Something went wrong during the creation of the attribute { attributeName }." )
createAttribute( self.output,
array,
attributeName,
componentNames=componentNames,
piece=piece,
logger=self.logger )

self.logger.info( "All the geomechanics properties have been added to the mesh." )
self.logger.info( f"The filter { self.logger.name } succeeded." )
Expand Down