ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_power_from_array.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  ! !
14  !-------------------------------------------------------!
15 
16  SUBROUTINE fc2k_power_from_array(POWER_AR, TIME_AR, TIME, POWER)
17 
18  USE itm_constants
19 
20 
21  IMPLICIT NONE
22 
23 
24 ! +++ i/o parameters:
25  REAL (R8), INTENT (IN) :: power_ar(1000)
26  REAL (R8), INTENT (IN) :: time_ar(1000)
27  REAL (R8), INTENT (OUT) :: power
28  REAL (R8), INTENT (IN) :: time
29 
30  INTEGER :: i
31 
32 !+++++++++++++++++++++++++++++++++++++++++
33 
34  DO i = 1, 999
35  IF (time_ar(i).LE.time .AND. time.LE.time_ar(i+1)) THEN
36  power = power_ar(i) + (power_ar(i+1)- power_ar(i))/(time_ar(i+1)-time_ar(i))*(time-time_ar(i))
37  !write(*,*) 'power from NBI', POWER, ' for time', time
38  goto 10
39  END IF
40 
41  IF (time_ar(i).GT.time_ar(i+1)) THEN
42  WRITE (*,*)'NONMONOTHONIC TIME HAS BEEN SPECIFIED FOR POWER SEQUENCE'
43  stop
44  END IF
45  END DO
46 
47 
48  10 RETURN
49 
50 
51  END SUBROUTINE fc2k_power_from_array
subroutine fc2k_power_from_array(POWER_AR, TIME_AR, TIME, POWER)