Allocate memory to the flux variables
subroutine setup_scheme()
!< Allocate memory to the flux variables
implicit none
call dmsg(1, 'ausm', 'setup_scheme')
call alloc(F, 1, imx, 1, jmx-1, 1, kmx-1, 1, n_var, &
errmsg='Error: Unable to allocate memory for ' // &
'F - ausm.')
call alloc(G, 1, imx-1, 1, jmx, 1, kmx-1, 1, n_var, &
errmsg='Error: Unable to allocate memory for ' // &
'G - ausm.')
call alloc(H, 1, imx-1, 1, jmx-1, 1, kmx, 1, n_var, &
errmsg='Error: Unable to allocate memory for ' // &
'H - ausm.')
call alloc(residue, 1, imx-1, 1, jmx-1, 1, kmx-1, 1, n_var, &
errmsg='Error: Unable to allocate memory for ' // &
'residue - ausm.')
end subroutine setup_scheme