{% extends "base.html" %} {% import "helpers.html" as helper %} {% block title %}Publications{% endblock %} {% block stylesheets %}{% endblock %} {% block content %} {{ helper.wide_header() }}
{{ helper.navbar(navbar, link) }}

Publications describing SWIFT

SWIFT: A modern highly-parallel gravity and smoothed particle hydrodynamics solver for astrophysical and cosmological applications

  Schaller M. et al., MNRAS, May 2024, Vol. 530, Issue 2, pp. 2378-2419   (citations: {{ citations_release }})

SWIFT: SPH With Inter-dependent Fine-grained Tasking

  Schaller M. et al., Astrophysics Source Code Library, 2018, ascl:1805.020   (citations: {{ citations_ascl }})

SWIFT: Using Task-Based Parallelism, Fully Asynchronous Communication, and Graph Partition-Based Domain Decomposition for Strong Scaling on more than 100,000 Cores

  Schaller M. et al., PASC, 2016, Vol. 1, Article Id. 2   (citations: {{ citations_pasc }})


Publications using SWIFT

The following {{ num_papers }} publications have used SWIFT (directly or indirectly) to obtain their results.

They have jointly gathered {{ total_citations }} citations and have an h-index of {{ h_index }}.

{% set count = num_papers %} {% for card in cards|sort_cards %}

{{ count + 1 - loop.index }}) {{ card.title }}

{% if card.author_count %} {% if card.author_count > 1 %}   {{ card.first_author_norm }} et al., {% else %}   {{ card.first_author_norm }}, {% endif %} {% endif %} {{ card.bibstem }}, {{ card.year }} {% if card.bibstem != "arXiv" %} {% if card.volume %} , vol. {{ card.volume }} {% if card.issue and card.issue != nan %} , issue {{ card.issue }} {% endif %} {% endif %} {% endif %}   (citations: {{ card.citation_count }}) {% if card.abstract %}

  Abstract

{{ card.abstract }}

{% else %}

    No abstract

{% endif %}

{% endfor %}
{% endblock %}