1
0
mirror of https://github.com/TREX-CoE/irpjast.git synced 2024-07-03 18:06:08 +02:00
irpjast/orders.irp.f

54 lines
963 B
FortranFixed
Raw Normal View History

2020-11-17 21:35:52 +01:00
BEGIN_PROVIDER [integer, naord]
implicit none
BEGIN_DOC
! Expansion order for f_en
END_DOC
naord = 5
END_PROVIDER
BEGIN_PROVIDER [integer, nbord]
implicit none
BEGIN_DOC
! Expansion order for f_ee
END_DOC
nbord = 5
END_PROVIDER
BEGIN_PROVIDER [integer, ncord]
implicit none
BEGIN_DOC
! Expansion order for f_een
END_DOC
ncord = 5
END_PROVIDER
BEGIN_PROVIDER [double precision, aord_vect, (naord)]
implicit none
BEGIN_DOC
! Vector of the `a' coefficients
END_DOC
do i = 1, naord
call random_number(aord_vect)
end do
END_PROVIDER
BEGIN_PROVIDER [double precision, bord_vect, (nbord)]
implicit none
BEGIN_DOC
! Vector of the `b' coefficients
END_DOC
do i = 1, nbord
call random_number(bord_vect)
end do
END_PROVIDER
BEGIN_PROVIDER [double precision, cord_vect, (ncord)]
implicit none
BEGIN_DOC
! Vector of the `c' coefficients
2020-11-17 21:35:52 +01:00
END_DOC
do i = 1, ncord
call random_number(cord_vect)
end do
END_PROVIDER