Mercurial > repos > public > sbplib_julia
comparison sbpD2.jl @ 15:3d032081832d
mergemania
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 17 Dec 2018 14:50:23 +0100 |
parents | 433008d3b7d3 |
children | 55fea1ceb6aa |
comparison
equal
deleted
inserted
replaced
14:b11b67c02d1a | 15:3d032081832d |
---|---|
1 | 1 |
2 struct D2{T} | |
3 quadratureClosure::Vector{T} | |
4 innerStencil::Stencil | |
5 closureStencils::Vector{Stencil} # TBD: Should this be a tuple? | |
6 eClosure::Vector{T} | |
7 dClosure::Vector{T} | |
8 end | |
9 | |
10 function closureSize(D::D2)::Int | |
11 return length(quadratureClosure) | |
12 end |