FacesGroup

class compas_fea2.model.FacesGroup[source]

Bases: _Group[Face]

Base class elements faces groups.

Parameters:
membersIterable[compas_fea2.model.Face]

The faces belonging to the group.

Attributes:
partcompas_fea2.model._Part

The part where the group is registered, by default None.

modelcompas_fea2.model.Model

The model where the group is registered, by default None.

facesSet[compas_fea2.model.Face]

The faces belonging to the group.

nodesSet[compas_fea2.model.Node]

The nodes belonging to the faces in the group.

areafloat

Total area of the faces in the group (active unit system).

normalList[float]

Average normal of the faces in the group (dimensionless unit vector).

Inherited Methods

ToString

Converts the instance to a string.

add_member

Add a single member to the group.

add_members

Add multiple members to the group.

clear

Clear all members from the group.

copy

Make an independent copy of the data object.

difference

Create a new group containing members that are in this group but not in another.

from_json

Construct an object of this type from a JSON file.

from_jsonstring

Construct an object of this type from a JSON string.

group_by

Group members into multiple subgroups based on a key function.

intersection

Create a new group containing only members that are present in both groups.

remove_member

Remove a member from the group.

remove_members

Remove multiple members from the group.

sha256

Compute a hash of the data for comparison during version control using the sha256 algorithm.

sorted_by

Return the members of the group sorted based on a custom key function.

subgroup

Create a subgroup based on a given condition.

to_json

Convert an object to its native data representation and save it to a JSON file.

to_jsonstring

Convert an object to its native data representation and save it to a JSON string.

to_list

Return the members of the group as a list.

union

Create a new group containing all members from this group and another group.

unique

Return a new group containing only unique members.

validate_data

Validate the data against the object's data schema.