aboutsummaryrefslogtreecommitdiff
path: root/code/coarseCoupler2d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'code/coarseCoupler2d.cpp')
-rw-r--r--code/coarseCoupler2d.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/code/coarseCoupler2d.cpp b/code/coarseCoupler2d.cpp
new file mode 100644
index 0000000..9bc5383
--- /dev/null
+++ b/code/coarseCoupler2d.cpp
@@ -0,0 +1,8 @@
+template <typename T, template<typename> class DESCRIPTOR>
+class CoarseCoupler2D : public Coupler2D<T,DESCRIPTOR> {
+public:
+ CoarseCoupler2D(Grid2D<T,DESCRIPTOR>& coarse, Grid2D<T,DESCRIPTOR>& fine,
+ Vector<T,2> origin, Vector<T,2> extend);
+
+ void couple();
+};