Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/volumeops/volume_operator.jl @ 1329:e94ddef5e72f refactor/grids
Clean up documentation for changed types in SbpOperatorClean up documentation for changed types in SbpOperatorss
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 02 May 2023 22:09:33 +0200 |
parents | 356ec6a72974 |
children | 4684c7f1c4cb |
comparison
equal
deleted
inserted
replaced
1328:f00a205ae347 | 1329:e94ddef5e72f |
---|---|
1 """ | 1 """ |
2 VolumeOperator{T,N,M,K} <: LazyTensor{T,1,1} | 2 VolumeOperator{T,N,M,K} <: LazyTensor{T,1,1} |
3 | 3 |
4 Implements a one-dimensional constant coefficients volume operator | 4 A one-dimensional constant coefficients stencil operator. |
5 """ | 5 """ |
6 struct VolumeOperator{T,N,M,K} <: LazyTensor{T,1,1} | 6 struct VolumeOperator{T,N,M,K} <: LazyTensor{T,1,1} |
7 inner_stencil::Stencil{T,N} | 7 inner_stencil::Stencil{T,N} |
8 closure_stencils::NTuple{M,Stencil{T,K}} | 8 closure_stencils::NTuple{M,Stencil{T,K}} |
9 size::NTuple{1,Int} | 9 size::NTuple{1,Int} |