Skip to content
Snippets Groups Projects
Commit b6a7d85f authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Replace OriginalFaceIDs with bulk_face_ids.

parent 0b32c460
No related branches found
No related tags found
No related merge requests found
Showing
with 37 additions and 37 deletions
......@@ -79,7 +79,7 @@ int main (int argc, char* argv[])
"f", "face-property-name",
"the name of the data array the surface face id of the subsurface/bulk "
"element will be stored to",
false, "OriginalFaceIDs", "string");
false, "bulk_face_ids", "string");
cmd.add(face_prop_name);
TCLAP::ValueArg<double> angle_arg(
......
......@@ -43,7 +43,7 @@ CalculateSurfaceFlux::CalculateSurfaceFlux(
"bulk_element_ids");
auto const bulk_face_ids =
boundary_mesh.getProperties().template getPropertyVector<std::size_t>(
"OriginalFaceIDs");
"bulk_face_ids");
ProcessLib::createLocalAssemblers<CalculateSurfaceFluxLocalAssembler>(
boundary_mesh.getDimension() + 1, // or bulk_mesh.getDimension()?
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -23,7 +23,7 @@ ExtractSurface -i [<file name of input mesh>] [-o <file name of output mesh>]
[--node-property-name <string>]
```
The normal of the surface that should be extracted is given by the arguments `-x`, `-y` and `-z`. The default normal is (0,0,-1). The command line option `-a` can be used to specify the allowed deviation of the normal of the surface element from the given normal. The data arrays added to the surface mesh by using the options `--face-property-name` (default value 'OriginalFaceIDs'), `--element-property-name` (default value 'bulk_element_ids'), and `--node-property-name` (default value 'bulk_node_ids') are used in other tools (for instance in [ComputeNodeAreasFromSurfaceMesh]({{< ref "compute-node-areas-from-surface-mesh" >}})) and is required for flux calculations during a simulation run of OpenGeoSys.
The normal of the surface that should be extracted is given by the arguments `-x`, `-y` and `-z`. The default normal is (0,0,-1). The command line option `-a` can be used to specify the allowed deviation of the normal of the surface element from the given normal. The data arrays added to the surface mesh by using the options `--face-property-name` (default value 'bulk_face_ids'), `--element-property-name` (default value 'bulk_element_ids'), and `--node-property-name` (default value 'bulk_node_ids') are used in other tools (for instance in [ComputeNodeAreasFromSurfaceMesh]({{< ref "compute-node-areas-from-surface-mesh" >}})) and is required for flux calculations during a simulation run of OpenGeoSys.
## Example
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment