not needed

This commit is contained in:
Martin Diehl 2019-11-28 06:27:19 +01:00
parent b85049cb81
commit 4c4ccfe72e
3 changed files with 0 additions and 3 deletions

View File

@ -27,7 +27,6 @@ def curlFFT(geomdim,field):
n = np.array(np.shape(field)[3:]).prod() # data size
field_fourier = np.fft.rfftn(field,axes=(0,1,2),s=shapeFFT)
curl_fourier = np.empty(field_fourier.shape,'c16')
# differentiation in Fourier space
TWOPIIMG = 2.0j*np.pi

View File

@ -27,7 +27,6 @@ def divFFT(geomdim,field):
n = np.array(np.shape(field)[3:]).prod() # data size
field_fourier = np.fft.rfftn(field,axes=(0,1,2),s=shapeFFT)
div_fourier = np.empty(field_fourier.shape[0:len(np.shape(field))-1],'c16')
# differentiation in Fourier space
TWOPIIMG = 2.0j*np.pi

View File

@ -27,7 +27,6 @@ def gradFFT(geomdim,field):
n = np.array(np.shape(field)[3:]).prod() # data size
field_fourier = np.fft.rfftn(field,axes=(0,1,2),s=shapeFFT)
grad_fourier = np.empty(field_fourier.shape+(3,),'c16')
# differentiation in Fourier space
TWOPIIMG = 2.0j*np.pi