Skip to content

Commit 27f5b84

Browse files
dschwenrecuero
authored andcommitted
Higher order type transforms (idaholab#401)
1 parent 5659597 commit 27f5b84

File tree

2 files changed

+42
-7
lines changed

2 files changed

+42
-7
lines changed

src/executioners/SpectralExecutionerBase.C

+12-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,23 @@ SpectralExecutionerBase::execute()
5656
_fe_problem.outputStep(EXEC_INITIAL);
5757
_fe_problem.advanceState();
5858

59-
mooseInfo("SpectralExecutionerBase::execute()");
60-
6159
auto & c = getFFTBuffer<Real>("c");
6260
c.forward();
6361

62+
auto & R = getFFTBuffer<RealVectorValue>("R");
63+
R.forward();
64+
6465
_time_step = 1;
6566
_fe_problem.execute(EXEC_FINAL);
6667
_time = _time_step;
6768
_fe_problem.outputStep(EXEC_FINAL);
69+
_fe_problem.advanceState();
70+
71+
c.backward();
72+
R.backward();
73+
74+
_time_step = 2;
75+
_fe_problem.execute(EXEC_FINAL);
76+
_time = _time_step;
77+
_fe_problem.outputStep(EXEC_FINAL);
6878
}

src/userobjects/FFTWBufferBase.C

+30-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,38 @@ FFTWBufferBase<T>::FFTWBufferBase(const InputParameters & parameters)
2121
_perf_fft(this->registerTimedSection("fftw_execute", 2))
2222
{
2323
// create plans
24-
std::vector<fftw_r2r_kind> kind(_dim, FFTW_R2HC);
2524
{
2625
TIME_SECTION(_perf_plan);
27-
_forward_plan = fftw_plan_r2r(_dim, _grid.data(), _start, _start, kind.data(), FFTW_ESTIMATE);
28-
_backward_plan = fftw_plan_r2r(_dim, _grid.data(), _start, _start, kind.data(), FFTW_ESTIMATE);
26+
27+
std::vector<fftw_r2r_kind> forward_kind(_dim, FFTW_R2HC);
28+
_forward_plan = fftw_plan_many_r2r(_dim,
29+
_grid.data(),
30+
_how_many,
31+
_start,
32+
_grid.data(),
33+
_stride,
34+
1,
35+
_start,
36+
_grid.data(),
37+
_stride,
38+
1,
39+
forward_kind.data(),
40+
FFTW_ESTIMATE);
41+
42+
std::vector<fftw_r2r_kind> backward_kind(_dim, FFTW_HC2R);
43+
_backward_plan = fftw_plan_many_r2r(_dim,
44+
_grid.data(),
45+
_how_many,
46+
_start,
47+
_grid.data(),
48+
_stride,
49+
1,
50+
_start,
51+
_grid.data(),
52+
_stride,
53+
1,
54+
backward_kind.data(),
55+
FFTW_ESTIMATE);
2956
}
3057
}
3158

@@ -41,8 +68,6 @@ template <typename T>
4168
void
4269
FFTWBufferBase<T>::forward()
4370
{
44-
mooseInfo("FFTWBufferBase<T>::forward()");
45-
4671
// execute plan
4772
{
4873
TIME_SECTION(_perf_fft);

0 commit comments

Comments
 (0)