aboutsummaryrefslogtreecommitdiff
path: root/Source/FieldSolver/SpectralSolver/SpectralKSpace.H
diff options
context:
space:
mode:
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/SpectralKSpace.H')
-rw-r--r--Source/FieldSolver/SpectralSolver/SpectralKSpace.H8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralKSpace.H b/Source/FieldSolver/SpectralSolver/SpectralKSpace.H
index d1aea836e..04264e629 100644
--- a/Source/FieldSolver/SpectralSolver/SpectralKSpace.H
+++ b/Source/FieldSolver/SpectralSolver/SpectralKSpace.H
@@ -16,10 +16,7 @@ class SpectralKSpace
{
public:
SpectralKSpace( const BoxArray& realspace_ba, const DistributionMapping& dm, const Real* dx );
- SpectralKVector& getModifiedKVector( const int i_dim ) const;
BoxArray spectralspace_ba;
-
- private:
SpectralKVector kx_vec, ky_vec, kz_vec;
const Real* dx;
};
@@ -27,4 +24,9 @@ class SpectralKSpace
void
AllocateAndFillKvector( ManagedVector<Real>& k, const Box& bx, const Real* dx, const int i_dim );
+void
+ComputeModifiedKVector( ManagedVector<Real>& modified_k,
+ const ManagedVector<Real>& k,
+ const Box& bx, const Real dx, const int norder );
+
#endif