|
TrioCFD 1.9.9_beta
TrioCFD documentation
|
Joints class — represents a list of Joint objects. More...
#include <Joints.h>
Public Types | |
| using | int_t = _SIZE_ |
| using | Domaine_t = Domaine_32_64<_SIZE_> |
| using | Joint_t = Joint_32_64<_SIZE_> |
Public Member Functions | |
| void | associer_domaine (const Domaine_t &) |
| Associates a domain with all joints in the list. | |
| int_t | nb_faces () const |
| Returns the total number of faces in all Joints_32_64 in the list. | |
| int_t | nb_faces (Type_Face type) const |
| Returns the number of faces of the specified type contained in the joint list. | |
| int | nb_joints () const |
| void | comprimer () |
| Compresses the joint list by merging joints sharing the same neighboring PE. | |
| Joint_t & | joint_PE (int pe) |
| Returns a reference to the joint whose neighboring PE is the specified one. | |
Joints class — represents a list of Joint objects.
| using Joints_32_64< _SIZE_ >::Domaine_t = Domaine_32_64<_SIZE_> |
| using Joints_32_64< _SIZE_ >::int_t = _SIZE_ |
| using Joints_32_64< _SIZE_ >::Joint_t = Joint_32_64<_SIZE_> |
| void Joints_32_64< _SIZE_ >::associer_domaine | ( | const Domaine_t & | un_domaine | ) |
Associates a domain with all joints in the list.
The joints in the list will belong to this domain.
| un_domaine | The domain to associate with the joints. |
Definition at line 33 of file Joints.cpp.
| void Joints_32_64< _SIZE_ >::comprimer | ( | ) |
Compresses the joint list by merging joints sharing the same neighboring PE.
Definition at line 75 of file Joints.cpp.
| Joints_32_64< _SIZE_ >::Joint_t & Joints_32_64< _SIZE_ >::joint_PE | ( | int | pe | ) |
Returns a reference to the joint whose neighboring PE is the specified one.
| pe | A PE index. |
| Error | if the specified neighboring PE is not found in the joint list. |
Definition at line 135 of file Joints.cpp.
| _SIZE_ Joints_32_64< _SIZE_ >::nb_faces | ( | ) | const |
Returns the total number of faces in all Joints_32_64 in the list.
This is the sum of faces over all joints in the list.
Definition at line 45 of file Joints.cpp.
| _SIZE_ Joints_32_64< _SIZE_ >::nb_faces | ( | Type_Face | type | ) | const |
Returns the number of faces of the specified type contained in the joint list.
This is the sum of faces of the given type over all joints in the list.
| type | The face type to count. |
Definition at line 61 of file Joints.cpp.
|
inline |