25 REAL (R8),
INTENT (IN) :: power_in(1000)
26 REAL (R8),
INTENT (OUT) :: power_out(1000)
27 REAL (R8),
INTENT (OUT) :: times_out(1000)
28 REAL (R8),
INTENT (IN) :: tstart, tend, frequency, tau
32 INTEGER :: nstep, nlevel
38 nstep = int((tend-tstart)*frequency)
40 tstep = (tend-tstart)/(nstep)
44 DO i = 1, min(500,nstep)
47 times_out(i*2-1) = tstart + tstep*(i-1)
48 times_out(i*2) = tstart + tstep*i - min(tau,tstep)*0.01_r8
50 power_out(i*2-1) = power_in(k)
51 power_out(i*2) = power_in(k)
53 IF (k.GE.nlevel) k = 0
subroutine fc2k_power_modulation(POWER_IN, NLEVEL, TSTART, TEND, FREQUENCY, TAU, POWER_OUT, TIMES_OUT)