4
1
mirror of https://github.com/pfloos/quack synced 2024-06-02 11:25:28 +02:00
quack/src/test/init_test.f90

22 lines
436 B
Fortran
Raw Normal View History

2023-11-11 16:16:57 +01:00
subroutine init_test(doRtest,doUtest,doGtest)
implicit none
! Input variables
logical,intent(in) :: doRtest
logical,intent(in) :: doUtest
logical,intent(in) :: doGtest
! Local variables
! Output variables
if(doRtest) open(unit=11,file='test/Rtest.dat')
if(doUtest) open(unit=12,file='test/Utest.dat')
if(doGtest) open(unit=13,file='test/Gtest.dat')
end subroutine