apply_laplace Module Subroutine

module subroutine apply_laplace(self, domain, variable)

Arguments

Type IntentOptional Attributes Name
class(type_ic_laplace), intent(in) :: self
type(type_domain), intent(in) :: domain
type(type_variable), intent(inout) :: variable

Called by

proc~~apply_laplace~~CalledByGraph proc~apply_laplace apply_laplace interface~apply_laplace type_ic_laplace%apply_laplace interface~apply_laplace->proc~apply_laplace

Source Code

    module subroutine apply_laplace(self, domain, variable)
        implicit none
        class(type_ic_laplace), intent(in) :: self
        type(type_domain), intent(in) :: domain
        type(type_variable), intent(inout) :: variable

        ! Your implementation for applying type_ic_uniform
        ! var%new(:) = self%value
        ! var%pre(:) = var%new(:)
    end subroutine apply_laplace