is_periodic_star Function

private pure function is_periodic_star(this, dimen)

Type Bound

star

Arguments

Type IntentOptional Attributes Name
class(star), intent(in) :: this
integer, intent(in), optional :: dimen

Return Value logical


Contents

Source Code


Source Code

    logical pure function is_periodic_star(this, dimen)
        ! this is always false.. the star geometry can't be periodic
        class(star), intent(in) :: this
        integer, intent(in), optional :: dimen
        debug_function_name("is_periodic_star")
        unused_var(this)
        ASSERT(.not. present(dimen))

        is_periodic_star = .false.

    end function is_periodic_star