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
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))
41 IF (time_ar(i).GT.time_ar(i+1))
THEN
42 WRITE (*,*)
'NONMONOTHONIC TIME HAS BEEN SPECIFIED FOR POWER SEQUENCE'
subroutine fc2k_power_from_array(POWER_AR, TIME_AR, TIME, POWER)