From: Vladimir Yushutin Date: Thu, 1 Dec 2022 16:35:56 +0000 (-0500) Subject: more fixed environments X-Git-Tag: v9.5.0-rc1~774^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9eec9c5f623372e571190ff20f24009dab8b79b1;p=dealii.git more fixed environments step-85: environment added --- diff --git a/examples/step-85/doc/intro.dox b/examples/step-85/doc/intro.dox index dbd5feca4c..7a0ac7767e 100644 --- a/examples/step-85/doc/intro.dox +++ b/examples/step-85/doc/intro.dox @@ -210,7 +210,7 @@ $T$, and depending on whether $T$ belongs to $\mathcal{T}_\Omega^h$ or not, we set the active_fe_index to either 0 or 1. To do so, we need to determine if a given cell is in $\mathcal{T}_\Omega^h$ or not. For this purpose, we will use the class NonMatching::MeshClassifier. -The MeshClassifier takes the discrete level set function, +The NonMatching::MeshClassifier takes the discrete level set function, described as a (DoFHandler, Vector)-pair, as arguments to its constructor: @code MeshClassifier(const DoFHandler &level_set_dof_handler, @@ -232,7 +232,7 @@ so that the zero-contour of $\psi$ goes through $T$. | intersected | $\psi(x)$ varies in sign | $T \cap \Gamma \neq \emptyset$ | Each active face is classified in the same way, according to how the sign of $\psi$ varies over the face. -MeshClassifier lets you query this information for a given cell/face via its MeshClassifier::location_to_level_set() methods: +NonMatching::MeshClassifier lets you query this information for a given cell/face via its NonMatching::MeshClassifier::location_to_level_set() methods: @code NonMatching::MeshClassifier mesh_classifier(dof_handler, level_set); mesh_classifier.reclassify();