50  module subroutine rhs_maker_sumab_fctry(object)
 
   51    class(rhs_maker_sumab_t), 
allocatable, 
intent(inout) :: object
 
   53    if (
allocated(object)) 
then 
   65  end subroutine rhs_maker_sumab_fctry
 
   70  module subroutine rhs_maker_ext_fctry(object)
 
   71    class(rhs_maker_ext_t), 
allocatable, 
intent(inout) :: object
 
   73    if (
allocated(object)) 
then 
   85  end subroutine rhs_maker_ext_fctry
 
   90  module subroutine rhs_maker_bdf_fctry(object)
 
   91    class(rhs_maker_bdf_t), 
allocatable, 
intent(inout) :: object
 
   93    if (
allocated(object)) 
then 
  105  end subroutine rhs_maker_bdf_fctry
 
  110  module subroutine rhs_maker_oifs_fctry(object)
 
  111    class(rhs_maker_oifs_t), 
allocatable, 
intent(inout) :: object
 
  113    if (
allocated(object)) 
then 
  125  end subroutine rhs_maker_oifs_fctry
 
  127end submodule rhs_maker_fctry
 
integer, parameter neko_bcknd_sx
 
integer, parameter neko_bcknd_device
 
Routines to generate the right-hand sides for the convection-diffusion equation. Employs the EXT/BDF ...