Merge branch 'master' into reconnection
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
commit
3be65db3b2
@ -918,21 +918,19 @@ module user_problem
|
||||
!
|
||||
! Arguments:
|
||||
!
|
||||
! pdata - the pointer to a data block;
|
||||
! t, dt - the time and time increment;
|
||||
! du - the array of variable increment;
|
||||
! pdata - the pointer to a data block;
|
||||
!
|
||||
!===============================================================================
|
||||
!
|
||||
subroutine update_user_sources(pdata, t, dt, du)
|
||||
subroutine update_user_sources(t, dt, pdata)
|
||||
|
||||
use blocks, only : block_data
|
||||
|
||||
implicit none
|
||||
|
||||
type(block_data), pointer , intent(inout) :: pdata
|
||||
real(kind=8) , intent(in) :: t, dt
|
||||
real(kind=8), dimension(:,:,:,:), intent(inout) :: du
|
||||
real(kind=8) , intent(in) :: t, dt
|
||||
type(block_data), pointer, intent(inout) :: pdata
|
||||
|
||||
!-------------------------------------------------------------------------------
|
||||
!
|
||||
|
Loading…
x
Reference in New Issue
Block a user