imk_save Subroutine

public subroutine imk_save(lev)

Save function values so that difference can be computed

Arguments

Type IntentOptional AttributesName
class(pf_level_t), intent(inout) :: lev

Level to save on


Contents

Source Code


Source Code

  subroutine imk_save(lev)
    class(pf_level_t), intent(inout) :: lev  !!  Level to save on

    integer :: m

    do m = 1, lev%nnodes
       call lev%pF(m,1)%copy(lev%F(m,1))
    end do
  end subroutine imk_save