This repository has been archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Gauss-Radau points and a corresponding finite element.
- Loading branch information
Showing
3 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (C) 2015 Imperial College London and others. | ||
# | ||
# This file is part of FIAT (https://www.fenicsproject.org) | ||
# | ||
# SPDX-License-Identifier: LGPL-3.0-or-later | ||
# | ||
# Written by Robert C. Kirby ([email protected]), 2020 | ||
|
||
|
||
from FIAT import finite_element, polynomial_set, dual_set, functional, quadrature | ||
from FIAT.reference_element import LINE | ||
|
||
|
||
class GaussRadauDualSet(dual_set.DualSet): | ||
"""The dual basis for 1D discontinuous elements with nodes at the | ||
Gauss-Radau points.""" | ||
def __init__(self, ref_el, degree, right=True): | ||
# Do DG connectivity because it's bonkers to do one-sided assembly even | ||
# though we have an endpoint in the point set! | ||
entity_ids = {0: {0: [], 1: []}, | ||
1: {0: list(range(0, degree+1))}} | ||
lr = quadrature.RadauQuadratureLineRule(ref_el, degree+1, right) | ||
nodes = [functional.PointEvaluation(ref_el, x) for x in lr.pts] | ||
|
||
super(GaussRadauDualSet, self).__init__(nodes, ref_el, entity_ids) | ||
|
||
|
||
class GaussRadau(finite_element.CiarletElement): | ||
"""1D discontinuous element with nodes at the Gauss-Radau points.""" | ||
def __init__(self, ref_el, degree): | ||
if ref_el.shape != LINE: | ||
raise ValueError("Gauss-Radau elements are only defined in one dimension.") | ||
poly_set = polynomial_set.ONPolynomialSet(ref_el, degree) | ||
dual = GaussRadauDualSet(ref_el, degree) | ||
formdegree = ref_el.get_spatial_dimension() # n-form | ||
super(GaussRadau, self).__init__(poly_set, dual, degree, formdegree) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters