! $Id: nopower_spectrum.f90 10805 2009-05-12 14:53:07Z ajohan@strw.leidenuniv.nl $ module power_spectrum ! use Cdata use Sub, only: keep_compiler_quiet ! implicit none ! include 'power_spectrum.h' ! contains !*********************************************************************** subroutine power(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=1) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine power !*********************************************************************** subroutine power_2d(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=1) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine power_2d !*********************************************************************** subroutine powerhel(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=3) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine powerhel !*********************************************************************** subroutine powerscl(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=2) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine powerscl !*********************************************************************** subroutine power_1d(f,sp,ivec,ivar) ! real, dimension (mx,my,mz,mfarray) :: f character (len=1) :: sp integer :: ivec integer, optional :: ivar ! if (ip<=15) print*,'Use POWER=power_spectrum in Makefile.local' ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) call keep_compiler_quiet(ivec) call keep_compiler_quiet(ivar) ! endsubroutine power_1d !*********************************************************************** subroutine pdf(f,variabl,pdf_mean,pdf_rms) ! real, dimension (mx,my,mz,mfarray) :: f real :: pdf_mean,pdf_rms character (len=*) :: variabl ! call keep_compiler_quiet(f) call keep_compiler_quiet(pdf_mean,pdf_rms) call keep_compiler_quiet(variabl) ! endsubroutine pdf !*********************************************************************** subroutine power_phi(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=*) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine power_phi !*********************************************************************** subroutine powerhel_phi(f,sp) ! real, dimension (mx,my,mz,mfarray) :: f character (len=*) :: sp ! call keep_compiler_quiet(f) call keep_compiler_quiet(sp) ! endsubroutine powerhel_phi !*********************************************************************** endmodule power_spectrum