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

53 lines
1000 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
2020-11-26 16:12:33 +01:00
END_DOC
naord = 5
2020-11-17 21:35:52 +01:00
END_PROVIDER
BEGIN_PROVIDER [integer, nbord]
implicit none
BEGIN_DOC
! Expansion order for f_ee
2020-11-26 16:12:33 +01:00
END_DOC
nbord = 5
2020-11-17 21:35:52 +01:00
END_PROVIDER
BEGIN_PROVIDER [integer, ncord]
implicit none
BEGIN_DOC
! Expansion order for f_een
2020-11-26 16:12:33 +01:00
END_DOC
ncord = 5
2020-11-17 21:35:52 +01:00
END_PROVIDER
BEGIN_PROVIDER [double precision, aord_vect, (naord)]
implicit none
BEGIN_DOC
! Vector of the `a' coefficients
END_DOC
2020-11-26 16:12:33 +01:00
integer :: i
call random_number(aord_vect)
aord_vect = aord_vect*.1e-2
2020-11-17 21:35:52 +01:00
END_PROVIDER
BEGIN_PROVIDER [double precision, bord_vect, (nbord)]
implicit none
BEGIN_DOC
! Vector of the `b' coefficients
END_DOC
2020-11-26 16:12:33 +01:00
integer :: i
call random_number(bord_vect)
bord_vect = bord_vect*.1e-6
2020-11-17 21:35:52 +01:00
END_PROVIDER
2020-11-26 16:12:33 +01:00
BEGIN_PROVIDER [double precision, cord_vect, (0:ncord,0:ncord,ncord,nnuc)]
2020-11-17 21:35:52 +01:00
implicit none
BEGIN_DOC
! Vector of the `c' coefficients
2020-11-17 21:35:52 +01:00
END_DOC
2020-11-26 16:12:33 +01:00
call random_number(cord_vect)
cord_vect = cord_vect*.1e-4
2020-11-17 21:35:52 +01:00
END_PROVIDER