Skip to content

Commit

Permalink
Updates to site
Browse files Browse the repository at this point in the history
Updates to .yml file and dependecies. Addition of R&D award on about page
  • Loading branch information
ehinrichs committed May 3, 2024
1 parent d920431 commit 0c69c8c
Show file tree
Hide file tree
Showing 7 changed files with 31,196 additions and 16,427 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gatsby_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: enriikke/gatsby-gh-pages-action@v2
with:
access-token: ${{ secrets.ACCESS_TOKEN }}
Expand Down
10 changes: 8 additions & 2 deletions content/pages/about/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ excerpt: ok
maxWidth: ["none", "none", "80%"]
}}>

### Amanzi
<div style="clear: both;">
<a href="https://ess.science.energy.gov/amanzi-ats-team-wins-rd-100-award-for-environmental-simulation-code/" style="float: right; margin-left: 50px; margin-top: 50px;">
<img src="photo-gallery/thumbnails/RD100_2020_Winner_Logo_Color.png" alt="R&D 100" class="gallery-img" style="transition: transform 0.3s ease-in-out; height: 250px;" />
</a>

Amanzi provides a flexible and extensible parallel flow and reactive transport simulation capability for environmental applications. It includes general polyhedral mesh infrastructure, which leverages MSTK, advanced discretizations of process models, including traditional finite volume schemes, mimetic finite differences, and nonlinear finite volumes. In addition, it provides advanced nonlinear solvers, such as Nonlinear Krylov Acceleration (NKA) and Anderson Acceleration, and leverages Trilinos-ML and Hypre Algebraic Multigrid for scalable solvers. The reaction of contaminants and minerals carried by the flow through the surrounding rock and soil is modeled through a general software interface called Alquimia that allows Amanzi to interface with a variety of powerful geochemistry engines including PFLOTRAN and CrunchFlow. The code is parallel and leverages open-source parallel frameworks such as Trilinos, PETSc. Amanzi has been used to model contaminant migration at various DOE waste sites (e.g., Nevada National Security Site, and Savannah River), and is generally applicable to groundwater contaminant migration under partially saturated, nonisothermal conditions and its interaction with surface water.
<h3> Amanzi </h3>

<p>Amanzi provides a flexible and extensible parallel flow and reactive transport simulation capability for environmental applications. It includes general polyhedral mesh infrastructure, which leverages MSTK, advanced discretizations of process models, including traditional finite volume schemes, mimetic finite differences, and nonlinear finite volumes. In addition, it provides advanced nonlinear solvers, such as Nonlinear Krylov Acceleration (NKA) and Anderson Acceleration, and leverages Trilinos-ML and Hypre Algebraic Multigrid for scalable solvers. The reaction of contaminants and minerals carried by the flow through the surrounding rock and soil is modeled through a general software interface called Alquimia that allows Amanzi to interface with a variety of powerful geochemistry engines including PFLOTRAN and CrunchFlow. The code is parallel and leverages open-source parallel frameworks such as Trilinos, PETSc. Amanzi has been used to model contaminant migration at various DOE waste sites (e.g., Nevada National Security Site, and Savannah River), and is generally applicable to groundwater contaminant migration under partially saturated, nonisothermal conditions and its interaction with surface water.</p>
</div>

### Arcos and Meshing Workflows

Expand Down
46 changes: 4 additions & 42 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
require(`dotenv`).config()

module.exports = {
pathPrefix: "/master",
siteMetadata: {
pathPrefix: "/master",
title: `Amanzi-ATS`,
author: `Daniel Livingston, David Moulton`,
description: `Landing page for Amanzi-ATS`,
siteUrl: `https://amanzi.github.io`,
siteUrl: process.env.SITE_URL || `http://localhost`,
logo: `logo.png`,
copyright: `© 2020 Amanzi-ATS Contributing National Labs (LANL, LBNL, ORNL, PNNL)`,
headerLinks: [
Expand Down Expand Up @@ -38,43 +38,5 @@ module.exports = {
},
],
},
plugins: [
`gatsby-theme-flex`,
`gatsby-plugin-sharp`,
`gatsby-transformer-remark`,
`gatsby-plugin-typescript`,
`gatsby-image`,
`gatsby-plugin-sass`,
`gatsby`,
{
resolve: "gatsby-plugin-mdx",
plugins: [`gatsby-remark-images`, `gatsby-remark-videos`],
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: "gatsby-remark-embed-video",
options: {
width: 800,
},
},
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 800,
},
},
],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/assets/images`,
name: `${__dirname}/assets/images`,
},
},
],
}
plugins: [`gatsby-theme-flex`,],
}
Loading

0 comments on commit 0c69c8c

Please sign in to comment.