Skip to content
Snippets Groups Projects
Commit 0793aaa0 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Wave equation model: Track FluxPair -> TracePair rename

parent bf15a009
No related branches found
No related tags found
No related merge requests found
......@@ -161,10 +161,10 @@ class StrongWaveOperator(HyperbolicOperator):
+
sym.InverseMassOperator()(
sym.FaceMassOperator()(
flux(sym.int_fpair(w))
+ flux(sym.bv_fpair(self.dirichlet_tag, w, dir_bc))
+ flux(sym.bv_fpair(self.neumann_tag, w, neu_bc))
+ flux(sym.bv_fpair(self.radiation_tag, w, rad_bc))
flux(sym.int_tpair(w))
+ flux(sym.bv_tpair(self.dirichlet_tag, w, dir_bc))
+ flux(sym.bv_tpair(self.neumann_tag, w, neu_bc))
+ flux(sym.bv_tpair(self.radiation_tag, w, rad_bc))
)))
result[0] += self.source_f
......
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