ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_power_from_array2.F90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 
4  !-------------------------------------------------------!
5  ! This routine selects the power from the time !
6  ! sequence !
7  !-------------------------------------------------------!
8  ! Source: --- !
9  ! Developers: D.Kalupin !
10  ! Kontacts: Denis.Kalupin@efda.org !
11  ! !
12  ! Comments: created for ETS !
13  ! dy add arbitrary array size !
14  ! !
15  !-------------------------------------------------------!
16 
17  SUBROUTINE fc2k_power_from_array2(POWER_AR, TIME_AR, TIME, POWER)
18 
19  USE itm_constants
20 
21 
22  IMPLICIT NONE
23 
24 
25 ! +++ i/o parameters:
26  REAL (R8), INTENT (IN), DIMENSION(:) :: power_ar
27  REAL (R8), INTENT (IN), DIMENSION(:) :: time_ar
28  REAL (R8), INTENT (OUT) :: power
29  REAL (R8), INTENT (IN) :: time
30 
31  INTEGER :: i
32  integer :: np,nt
33  real (r8) :: teps
34 
35 !+++++++++++++++++++++++++++++++++++++++++
36 
37  teps=1.0e-7 !0.1 mks
38  np=size(power_ar)
39  nt=size(time_ar)
40 
41  if (np.ne.nt) then
42  write(*,*) 'PowerFromArray: size of power and time arrays are notequal'
43  stop
44  end if
45 
46  if (np.eq.0) then
47  write(*,*) 'PowerFromArray: no elements in power array'
48  stop
49  end if
50  power=0.0
51  DO i = 1, np
52  IF (time_ar(i).LE.time .AND. time.LE.time_ar(i+1)) THEN
53  if (abs(time_ar(i)-time_ar(i+1)).lt.teps) then
54  power = power_ar(i)
55  write (*,*) 'time values are equal taking power at that point'
56  else
57  power = power_ar(i) + (power_ar(i+1)- power_ar(i))/(time_ar(i+1)-time_ar(i))*(time-time_ar(i))
58  !write(*,*) 'power from NBI', POWER, ' for time', time
59  end if
60  goto 10
61  END IF
62 
63  IF (time_ar(i).GT.time_ar(i+1)) THEN
64  WRITE (*,*)'NONMONOTHONIC TIME HAS BEEN SPECIFIED FOR POWER SEQUENCE'
65  stop
66  END IF
67  END DO
68 
69 
70  10 RETURN
71 
72 
73  END SUBROUTINE fc2k_power_from_array2
subroutine fc2k_power_from_array2(POWER_AR, TIME_AR, TIME, POWER)