diff --git a/utilities/RFcoefext.f90 b/utilities/RFcoefext.f90 index 40f1ccd..4512a58 100755 --- a/utilities/RFcoefext.f90 +++ b/utilities/RFcoefext.f90 @@ -4,7 +4,7 @@ ! Author: Ji Qiang ! Description: find the Fourier coefficients of RF data on axis. ! The input data has been extended to make a symmetric data for Fourier expansion -! Input: rfdata.in: Ez vs. z +! Input: rfdata.in: Ez vs. z (m) ! Output: rfdata.out: reconstruct the field from the Fourier coefficients. ! rfdatax: is the one to be used for the IMPACT-T ! simulation. @@ -14,6 +14,7 @@ program rfcoef double precision, dimension(Ndata) :: zdata,edata double precision, dimension(Ncoef) :: Fcoef,Fcoef2 + print*,"Note: in rfdata.in file, z must be in unit of meter!!!!" open(3,file="rfdata.in",status="old") n = 0 10 continue diff --git a/utilities/RFcoeflcls.f90 b/utilities/RFcoeflcls.f90 index e3dbe98..c1b9003 100755 --- a/utilities/RFcoeflcls.f90 +++ b/utilities/RFcoeflcls.f90 @@ -4,7 +4,7 @@ ! Author: Ji Qiang ! Description: find the Fourier coefficients of RF data on axis and produce a ! shifted field data on axis. -! Input: rfdata.in: Ez vs. z +! Input: rfdata.in: Ez vs. z (m) ! Output: rfdata.out: reconstruct the field from the Fourier coefficients. ! rfdatax: is the one to be used for the IMPACT-T ! simulation. @@ -19,6 +19,7 @@ program rfcoef double precision, dimension(Ndata) :: zdata,edata double precision, dimension(Ncoef) :: Fcoef,Fcoef2 + print*,"Note: in rfdata.in file, z must be in unit of meter!!!!" emax = 0.0d0 open(3,file="rfdata.in",status="old") n = 0