Skip to content

Commit

Permalink
A bunch of new papers
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Mar 13, 2018
1 parent 3cf27a5 commit 6fd9ff1
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/source/_static/bibliography.bib
Expand Up @@ -56,6 +56,18 @@ @Misc{Homolya2017a
url = {http://arxiv.org/abs/1711.02473}
}

@Misc{Gibson2018,
author = {Thomas H. Gibson and Lawrence Mitchell and David
A. Ham and Colin J. Cotter},
title = {{A domain-specific language for the hybridization
and static condensation of finite element methods}},
year = 2018,
archiveprefix ={arXiv},
eprint = {1802.00303},
primaryclass = {cs.MS},
url = {https://arxiv.org/abs/1802.00303}
}

@Article{Kirby2017,
author = {Robert C. Kirby and Lawrence Mitchell},
title = {{Solver composition across the PDE/linear algebra
Expand Down
49 changes: 48 additions & 1 deletion docs/source/_static/firedrake-apps.bib
Expand Up @@ -32,6 +32,18 @@ @Misc{Barral2016
url = {http://arxiv.org/abs/1610.09874},
}

@Misc{Bauer2018,
author = {Werner Bauer and Colin J. Cotter},
title = {{Energy-enstrophy conserving compatible finite
element schemes for the shallow water equations on
rotating domains with boundaries}},
year = 2018,
archiveprefix ={arXiv},
eprint = {1801.00691},
primaryclass = {math.NA},
url = {https://arxiv.org/abs/1801.00691}
}

@Misc{Bendall2017,
author = {Bendall, Thomas M and Cotter, Colin J},
title = {{Statistical properties of an enstrophy conserving
Expand Down Expand Up @@ -108,6 +120,18 @@ @Article{Chang2017a
doi = {10.1016/j.cma.2017.03.022},
}

@Misc{Chang2018,
author = {J. Chang and M. S. Fabian and M. G. Knepley and
R. T. Mills},
title = {{Comparative study of finite element methods using
the Time-Accuracy-Size (TAS) spectrum analysis}},
year = 2018,
archiveprefix ={arXiv},
primaryclass = {cs.MS},
eprint = {1802.07832},
url = {https://arxiv.org/abs/1802.07832}
}

@PhdThesis{Chang2017b,
author = {Justin Chang},
title = {Structure-preserving high performance computational
Expand Down Expand Up @@ -296,7 +320,6 @@ @Misc{McRae2016
url = {http://arxiv.org/abs/1612.08077}
}


@Misc{Mapakshi2017,
author = {N. K. Mapakshi and J. Chang and K. B. Nakshatrala},
title = {A scalable variational inequality approach for flow
Expand All @@ -308,6 +331,19 @@ @Misc{Mapakshi2017
primaryclass = {cs.ME}
}


@Article{McCormack2018,
author = {K. A. McCormack and M. A. Hesse},
title = {{Modeling the poroelastic response to megathrust
earthquakes: A look at the 2012 Mw 7.6 Costa Rican
event}},
journal = {Advances in Water Resources},
year = 2018,
volume = 114,
pages = {236-248},
doi = {10.1016/j.advwatres.2018.02.014}
}

@Article{Natale2016,
author = {Andrea Natale and Jemma Shipton and Colin J. Cotter},
title = {Compatible finite element spaces for geophysical
Expand Down Expand Up @@ -370,6 +406,17 @@ @Misc{Paganini2017
primaryclass = {math.NA}
}

@Misc{Pimanov2018,
author = {V. Pimanov and I. Oseledets},
title = {{Robust topology optimization using a posteriori
error estimator for the finite element method}},
year = 2018,
archiveprefix ={arXiv},
eprint = {1712.03017},
primaryclass = {math.NA},
url = {https://arxiv.org/abs/1712.03017}
}

@InProceedings{Salwa2016,
author = {Salwa, Tomasz and Bokhove, Onno and Kelmanson, Mark
A.},
Expand Down
2 changes: 2 additions & 0 deletions firedrake/slate/slac/compiler.py
Expand Up @@ -16,6 +16,7 @@
"""
from coffee import base as ast

from firedrake_citations import Citations
from firedrake.tsfc_interface import SplitKernel, KernelInfo
from firedrake.slate.slac.kernel_builder import LocalKernelBuilder
from firedrake import op2
Expand Down Expand Up @@ -52,6 +53,7 @@ def compile_expression(slate_expr, tsfc_parameters=None):
Returns: A `tuple` containing a `SplitKernel(idx, kinfo)`
"""
Citations().register("Gibson2018")
if not isinstance(slate_expr, slate.TensorBase):
raise ValueError("Expecting a `TensorBase` object, not %s" % type(slate_expr))

Expand Down
14 changes: 14 additions & 0 deletions firedrake_citations/__init__.py
Expand Up @@ -250,3 +250,17 @@ def print_at_exit(cls):
url = {http://arxiv.org/abs/1711.02473}
}
""")

Citations().add("Gibson2018", """
@Misc{Gibson2018,
author = {Thomas H. Gibson and Lawrence Mitchell and David
A. Ham and Colin J. Cotter},
title = {{A domain-specific language for the hybridization
and static condensation of finite element methods}},
year = 2018,
archiveprefix ={arXiv},
eprint = {1802.00303},
primaryclass = {cs.MS},
url = {https://arxiv.org/abs/1802.00303}
}
""")

0 comments on commit 6fd9ff1

Please sign in to comment.