10
0
mirror of https://gitlab.com/scemama/eplf synced 2024-09-06 19:54:44 +02:00
eplf/src/test_1d.irp.f

19 lines
290 B
FortranFixed
Raw Normal View History

program debug
PROVIDE ao_prim_num_max
2009-06-15 11:33:16 +02:00
!read(*,*) eplf_gamma
!TOUCH eplf_gamma
call run()
end
subroutine run
implicit none
point(1) = 0.
point(2) = 0.
integer :: i
2010-05-05 13:08:36 +02:00
do i=0,40
point(3) = real(i)/10.
TOUCH point
2010-05-05 13:08:36 +02:00
print *, point(3), eplf_value_p, eplf_up_up, eplf_up_dn
enddo
end