Skip to content

Commit

Permalink
Trying to get the dummy fortran components to work #97
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjbr123 committed Mar 1, 2024
1 parent 7602bb2 commit 7b141d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tests/components/surfacelayer/dummyfortran/dummy.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ subroutine initialise(y, x, state_a_m1, state_b_m1)
implicit none

! spaceshape
integer, intent(in) :: y, x
parameter, intent(in) :: y, x
! component states
real(kind=8), intent(inout), dimension(y, x) :: state_a_m1, state_b_m1

Expand All @@ -12,7 +12,7 @@ subroutine initialise(y, x, state_a_m1, state_b_m1)
end subroutine initialise

subroutine run(y, x, &
transfer_k, transfer_l, transfer_n, transfer_h &
transfer_k, transfer_l, transfer_n, transfer_h, &
driving_a, driving_b, driving_c, &
ancillary_c, &
state_a_m1, state_a_0, state_b_m1, state_b_0, &
Expand All @@ -22,7 +22,7 @@ subroutine run(y, x, &
implicit none

! spaceshape
integer, intent(in) :: y, x
parameter, intent(in) :: y, x
! from exchanger
real(kind=8), intent(in), dimension(y, x) :: &
transfer_k, transfer_l, transfer_n, transfer_h
Expand Down

0 comments on commit 7b141d4

Please sign in to comment.