-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.Rmd
68 lines (55 loc) · 2.8 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# The {RMODFLOW} R package<br><small><font color="#999">Pre- and post-processing of MODFLOW files</font></small>
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/RMODFLOW.svg)](https://CRAN.R-project.org/package=RMODFLOW)
<!-- badges: end -->
The {[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} R package provides a set
of tools for groundwater flow modelling with
[MODFLOW](https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs).
The functionality is targeted at feature-parity with that of the
[ModelMuse](https://www.usgs.gov/software/modelmuse-a-graphical-user-interface-groundwater-models)
GUI and friends, albeit restricted to the
[MODFLOW-2005](https://www.usgs.gov/software/modflow-2005-usgs-three-dimensional-finite-difference-ground-water-model)
family of codes. Related developments are the
{[RMT3DMS](https://rogiersbart.github.io/RMT3DMS/)} package for solute transport
modelling, and {[RMODPATH](https://github.com/cneyens/RMODPATH)} for particle
tracking.
# Install
You can install the latest version of
{[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} with any of the following:
```{r eval = FALSE}
renv::install("rogiersbart/RMODFLOW")
pak::pkg_install("rogiersbart/RMODFLOW")
remotes::install_github("rogiersbart/RMODFLOW")
```
If you don't have {[renv](https://rstudio.github.io/renv/)},
{[pak](https://pak.r-lib.org/)}, or {[remotes](https://remotes.r-lib.org/)}
installed, try this instead:
```{r eval = FALSE}
install.packages("remotes")
remotes::install_github("rogiersbart/RMODFLOW")
```
# Use
To get started, have a look at the [introduction to
{RMODFLOW}](https://rogiersbart.github.io/RMODFLOW/docs/articles/RMODFLOW.html).
A series of articles is available if you want to dive deeper into the {RMODFLOW}
functionality:
- [Boundary conditions](https://rogiersbart.github.io/RMODFLOW/articles/boundary_conditions.html)
- [Structure of input data](https://rogiersbart.github.io/RMODFLOW/articles/input_data_structure.html)
- [Handling MODFLOW output](https://rogiersbart.github.io/RMODFLOW/articles/output.html)
- [MODFLOW parameters](https://rogiersbart.github.io/RMODFLOW/articles/parameters.html)
- [Plotting in RMODFLOW](https://rogiersbart.github.io/RMODFLOW/articles/plotting.html)
- [Spatial functions](https://rogiersbart.github.io/RMODFLOW/articles/spatial.html)
- [Top-level functions](https://rogiersbart.github.io/RMODFLOW/articles/top_level.html)