ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_power_modulation.F90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 
4  !-------------------------------------------------------!
5  ! This routine provides power array and time array !
6  ! for power modulation !
7  !-------------------------------------------------------!
8  ! Source: --- !
9  ! Developers: D.Kalupin !
10  ! Kontacts: Denis.Kalupin@efda.org !
11  ! !
12  ! Comments: created for ETS !
13  ! !
14  !-------------------------------------------------------!
15 
16  SUBROUTINE fc2k_power_modulation(POWER_IN, NLEVEL, TSTART, TEND, FREQUENCY, TAU, POWER_OUT, TIMES_OUT)
17 
18  USE itm_constants
19 
20 
21  IMPLICIT NONE
22 
23 
24 ! +++ i/o parameters:
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
29  REAL (R8) :: tstep
30 
31  INTEGER :: i, k
32  INTEGER :: nstep, nlevel
33 
34 
35 !+++++++++++++++++++++++++++++++++++++++++
36 
37 ! +++ Number of steps:
38  nstep = int((tend-tstart)*frequency)
39  k = 0
40  tstep = (tend-tstart)/(nstep)
41 
42  times_out = 1.d10
43 
44  DO i = 1, min(500,nstep)
45  k = k+1
46 
47  times_out(i*2-1) = tstart + tstep*(i-1)
48  times_out(i*2) = tstart + tstep*i - min(tau,tstep)*0.01_r8
49 
50  power_out(i*2-1) = power_in(k)
51  power_out(i*2) = power_in(k)
52 
53  IF (k.GE.nlevel) k = 0
54  END DO
55 
56 
57  10 RETURN
58 
59 
60  END SUBROUTINE fc2k_power_modulation
subroutine fc2k_power_modulation(POWER_IN, NLEVEL, TSTART, TEND, FREQUENCY, TAU, POWER_OUT, TIMES_OUT)