diff sbpD2.jl @ 11:7f075bacbd68

merge with default
author Ylva Rydin <ylva.rydin@telia.com>
date Mon, 17 Dec 2018 14:42:38 +0100
parents 433008d3b7d3
children 55fea1ceb6aa
line wrap: on
line diff
--- a/sbpD2.jl	Mon Dec 17 14:42:11 2018 +0100
+++ b/sbpD2.jl	Mon Dec 17 14:42:38 2018 +0100
@@ -1,1 +1,12 @@
 
+struct D2{T}
+    quadratureClosure::Vector{T}
+    innerStencil::Stencil
+    closureStencils::Vector{Stencil} # TBD: Should this be a tuple?
+    eClosure::Vector{T}
+    dClosure::Vector{T}
+end
+
+function closureSize(D::D2)::Int
+    return length(quadratureClosure)
+end
\ No newline at end of file