aboutsummaryrefslogtreecommitdiff
path: root/code/fineCoupler2d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'code/fineCoupler2d.cpp')
-rw-r--r--code/fineCoupler2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/fineCoupler2d.cpp b/code/fineCoupler2d.cpp
index 4cde254..7da499a 100644
--- a/code/fineCoupler2d.cpp
+++ b/code/fineCoupler2d.cpp
@@ -1,8 +1,8 @@
template <typename T, template<typename> class DESCRIPTOR>
class FineCoupler2D : public Coupler2D<T,DESCRIPTOR> {
private:
- std::vector<T> _c2f_rho;
- std::vector<Vector<T,2>> _c2f_u;
+ std::vector<Vector<T,1>> _c2f_rho;
+ std::vector<Vector<T,DESCRIPTOR<T>::d>> _c2f_u;
std::vector<Vector<T,DESCRIPTOR<T>::q>> _c2f_fneq;
public: