diff +multiblock/Laplace.m @ 764:e05465aa2e25 feature/grids

Add methods for getting boundary quadratures from multiblock.DiffOP
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 20 Jun 2018 13:00:01 +0200
parents 43e64f5b388e
children 23ad69a347dd
line wrap: on
line diff
--- a/+multiblock/Laplace.m	Wed Jun 20 12:59:07 2018 +0200
+++ b/+multiblock/Laplace.m	Wed Jun 20 13:00:01 2018 +0200
@@ -42,6 +42,10 @@
             op = getBoundaryOperator(obj.mbDiffOp, opName, boundary);
         end
 
+        function op = getBoundaryQuadrature(obj, boundary)
+            op = getBoundaryQuadrature(obj.mbDiffOp, boundary);
+        end
+
         function [closure, penalty] = boundary_condition(obj,boundary,type) % TODO: Change name to boundaryCondition
             [closure, penalty] = boundary_condition(obj.mbDiffOp, boundary, type);
         end