1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
module tableaux
implicit none
real(kind=8),dimension(:,:),allocatable :: A
integer Nx,Ny
interface
subroutine allocateTab(maillex,mailley)
implicit none
integer,intent(in) :: maillex,mailleY
end subroutine allocateTab
subroutine deallocatetab
implicit none
end subroutine deallocatetab
end interface
end module tableaux
subroutine allocateTab(maillex,mailley)
use tableaux,only : Nx,Ny,A
implicit none
integer,intent(in) :: maillex,mailleY
!
Nx=MailleX
Ny=MailleY
allocate(A(Nx,Ny))
!
return
!
end subroutine allocateTab
subroutine deallocatetab
use tableaux,only :A
implicit none
!
deallocate(A)
!
return
end subroutine deallocatetab |
Partager