Skip to content
Snippets Groups Projects
Commit f5368f3c authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Add the new release paper to the 'Publications' page

parent ce6097b0
Branches
No related tags found
No related merge requests found
...@@ -4,12 +4,15 @@ import sys ...@@ -4,12 +4,15 @@ import sys
# Query papers citing the two SWIFT ADS entries # Query papers citing the two SWIFT ADS entries
query = ADSQueryWrapper(sys.argv[1]) query = ADSQueryWrapper(sys.argv[1])
query_data = query.get("citations(2016pasc.conf....2S) or citations(2018ascl.soft05020S)", fl="title,bibcode,first_author_norm,date,year,author_count,bibstem,abstract,volume,issue,page,citation_count", rows=1000) query_data = query.get("citations(2016pasc.conf....2S) or citations(2018ascl.soft05020S) or citations(2023arXiv230513380S)", fl="title,bibcode,first_author_norm,date,year,author_count,bibstem,abstract,volume,issue,page,citation_count", rows=1000)
paper_list = query_data.papers paper_list = query_data.papers
total_citations = 0 total_citations = 0
# Process the data to make the title a string and not an array of strings # Process the data to make the title a string and not an array of strings
for paper in paper_list: for paper in paper_list:
if paper.bibcode == "2023arXiv230513380S":
continue
paper.title = paper.title[0] paper.title = paper.title[0]
paper.bibstem = paper.bibstem[0] paper.bibstem = paper.bibstem[0]
if hasattr(paper, "page"): if hasattr(paper, "page"):
......
...@@ -14,6 +14,10 @@ ...@@ -14,6 +14,10 @@
</div> </div>
<div class="card-text"> <div class="card-text">
<h4><a href="https://ui.adsabs.harvard.edu/abs/2023arXiv230513380S/abstract">SWIFT: A modern highly-parallel gravity and smoothed particle hydrodynamics
solver for astrophysical and cosmological applications</a> </h4>
<p>&emsp; Schaller M. et al., <i>arXiv</i>, 2023, 2305.13380
<h4><a href="https://ui.adsabs.harvard.edu/abs/2016pasc.conf....2S/abstract">SWIFT: Using Task-Based Parallelism, Fully Asynchronous Communication, and Graph Partition-Based Domain <h4><a href="https://ui.adsabs.harvard.edu/abs/2016pasc.conf....2S/abstract">SWIFT: Using Task-Based Parallelism, Fully Asynchronous Communication, and Graph Partition-Based Domain
Decomposition for Strong Scaling on more than 100,000 Cores </a> </h4> Decomposition for Strong Scaling on more than 100,000 Cores </a> </h4>
<p>&emsp; Schaller M. et al., <i>PASC</i>, 2016, vol. 1 <p>&emsp; Schaller M. et al., <i>PASC</i>, 2016, vol. 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment