Skip to content

Commit f1144c4

Browse files
committed
updated pflotran install and papers
1 parent fe6720a commit f1144c4

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

_bibliography/papers.bib

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ @article{li_evaluating_2025
77
altmetric={true},
88
dimensions={true},
99
google_scholar_id={5qfkUJPXOUwC},
10-
year = {2025},
10+
year = {2025},
11+
html = {https://www.sciencedirect.com/science/article/pii/S0022169425018785},
1112
title = {Evaluating Post-fire watershed response to varying burn severity and precipitation regimes using fully-distributed and integrated hydrologic models},
1213
issn = {0022-1694},
1314
url = {https://www.sciencedirect.com/science/article/pii/S0022169425018785},
@@ -399,6 +400,7 @@ @article{briody_groundwater_2016
399400
altmetric={true},
400401
dimensions={true},
401402
google_scholar_id={u-x6o8ySG0sC},
403+
html = {https://doi.org/10.1007/s10040-016-1365-3},
402404
title = {Groundwater flow, nutrient, and stable isotope dynamics in the parafluvial-hyporheic zone of the regulated Lower Colorado River (Texas, {USA}) over the course of a small flood},
403405
volume = {24},
404406
issn = {1435-0157},

_posts/2025-03-04-Compile-PFLOTRAN-on-CHPC.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ toc:
1212
sidebar: left
1313
---
1414

15+
*Last updated: 2025-12-10*
16+
1517
See this [documentation](https://www.pflotran.org/documentation/user_guide/how_to/installation/linux.html#linux-install) for installation on Linux machine.
1618

1719
## Setup environment
@@ -22,12 +24,12 @@ module load gcc/11.2.0 openmpi/4.1.4 cmake/3.26.0
2224

2325
## Install PETSc
2426

25-
Download Petsc from Bitbucket, and save it into directory `petsc_v3.20.2`, and checkout the latest version `3.20.2`.
27+
Download Petsc from Bitbucket, and save it into directory `petsc_v3.24.0`, and checkout the latest version `3.24.0`.
2628

2729
```bash
28-
git clone https://gitlab.com/petsc/petsc.git petsc_v3.20.2
29-
cd petsc_v3.20.2
30-
git checkout v3.20.2
30+
git clone https://gitlab.com/petsc/petsc.git petsc_v3.24.0
31+
cd petsc_v3.24.0
32+
git checkout v3.24.0
3133
```
3234

3335
Set current dir as `PETSC_DIR`, define `--PETSC_ARCH` to any name, and a subdir with the same name will be created under the `PETSC_DIR` (eg.`petsc_v3.20.2/notchpeak-gcc-8.5.0`)
@@ -42,7 +44,7 @@ export PETSC_ARCH=notchpeak-gcc-8.5.0
4244
- Use the recommended configuration. This will install a Fortran compiler, MPI, HDF5, and BLAS/LAPACK.
4345

4446
```bash
45-
./configure --COPTFLAGS='-O3' --CXXOPTFLAGS='-O3' --FOPTFLAGS='-O3 -Wno-unused-function -fallow-argument-mismatch' --with-debugging=no --download-mpich=yes --download-hdf5=yes --download-hdf5-fortran-bindings=yes --download-fblaslapack=yes --download-metis=yes --download-parmetis=yes
47+
./configure --CC=$CC --CXX=$CXX --FC=$FC --F77=$F77 --COPTFLAGS='-O3' --CXXOPTFLAGS='-O3' --FOPTFLAGS='-O3 -Wno-unused-function -fallow-argument-mismatch' --with-debugging=no --download-mpich=yes --download-hdf5=yes --download-hdf5-fortran-bindings=yes --download-fblaslapack=yes --download-metis=yes --download-parmetis=yes --download-hdf5-configure-arguments="--with-zlib=yes"
4648
```
4749

4850
- After configure, you will see something similar to the following message:

0 commit comments

Comments
 (0)