@@ -15,24 +15,24 @@ class from_scoping(Operator):
1515 """Extracts a meshed region from another meshed region based on a
1616 scoping. Regarding the property fields of the meshed region: the
1717 'Elemental', 'Face', and 'Nodal' property fields are scoped to the
18- elements or nodes of the output mesh, the 'Global' property fields
19- are transferred from the input mesh to the output mesh without
20- changes, and the rest of the property fields are not present in
21- the output mesh.
18+ elements, faces or nodes of the output mesh, the 'Global' property
19+ fields are transferred from the input mesh to the output mesh
20+ without changes, and the rest of the property fields are not
21+ present in the output mesh.
2222
2323 Parameters
2424 ----------
2525 scoping : Scoping
26- If nodal scoping, then the scoping is
26+ If nodal/face scoping, then the scoping is
2727 transposed respecting the inclusive
2828 pin
2929 inclusive : int, optional
3030 If inclusive == 1 then all the elements/faces
31- adjacent to the nodes ids in input
32- are added, if inclusive == 0, only
33- the elements/faces which have all
34- their nodes in the scoping are
35- included
31+ adjacent to the nodes/faces ids in
32+ input are added, if inclusive == 0,
33+ only the elements/faces which have
34+ all their nodes/faces in the scoping
35+ are included
3636 nodes_only : bool, optional
3737 Returns mesh with nodes only (without any
3838 elements or property fields). default
@@ -95,19 +95,19 @@ def _spec():
9595 description = """Extracts a meshed region from another meshed region based on a
9696 scoping. Regarding the property fields of the meshed
9797 region: the 'Elemental', 'Face', and 'Nodal' property
98- fields are scoped to the elements or nodes of the output
99- mesh, the 'Global' property fields are transferred from
100- the input mesh to the output mesh without changes, and the
101- rest of the property fields are not present in the output
102- mesh."""
98+ fields are scoped to the elements, faces or nodes of the
99+ output mesh, the 'Global' property fields are transferred
100+ from the input mesh to the output mesh without changes,
101+ and the rest of the property fields are not present in the
102+ output mesh."""
103103 spec = Specification (
104104 description = description ,
105105 map_input_pin_spec = {
106106 1 : PinSpecification (
107107 name = "scoping" ,
108108 type_names = ["scoping" ],
109109 optional = False ,
110- document = """If nodal scoping, then the scoping is
110+ document = """If nodal/face scoping, then the scoping is
111111 transposed respecting the inclusive
112112 pin""" ,
113113 ),
@@ -116,11 +116,11 @@ def _spec():
116116 type_names = ["int32" ],
117117 optional = True ,
118118 document = """If inclusive == 1 then all the elements/faces
119- adjacent to the nodes ids in input
120- are added, if inclusive == 0, only
121- the elements/faces which have all
122- their nodes in the scoping are
123- included""" ,
119+ adjacent to the nodes/faces ids in
120+ input are added, if inclusive == 0,
121+ only the elements/faces which have
122+ all their nodes/faces in the scoping
123+ are included""" ,
124124 ),
125125 3 : PinSpecification (
126126 name = "nodes_only" ,
@@ -218,7 +218,7 @@ def __init__(self, op: Operator):
218218 def scoping (self ):
219219 """Allows to connect scoping input to the operator.
220220
221- If nodal scoping, then the scoping is
221+ If nodal/face scoping, then the scoping is
222222 transposed respecting the inclusive
223223 pin
224224
@@ -241,11 +241,11 @@ def inclusive(self):
241241 """Allows to connect inclusive input to the operator.
242242
243243 If inclusive == 1 then all the elements/faces
244- adjacent to the nodes ids in input
245- are added, if inclusive == 0, only
246- the elements/faces which have all
247- their nodes in the scoping are
248- included
244+ adjacent to the nodes/faces ids in
245+ input are added, if inclusive == 0,
246+ only the elements/faces which have
247+ all their nodes/faces in the scoping
248+ are included
249249
250250 Parameters
251251 ----------
0 commit comments