Difference between revisions of "Applications/modflow"

From HPC
Jump to: navigation , search
(Created page with " MODFLOW 6 is an object-oriented program and framework developed to provide a platform for supporting multiple models and multiple types of models within the same simulation....")
 
m
 
Line 1: Line 1:
 +
__TOC__
  
 +
==Application Details==
  
MODFLOW 6 is an object-oriented program and framework developed to provide a platform for supporting multiple models and multiple types of models within the same simulation. This version of MODFLOW is labelled with a "6" because it is the sixth core version of MODFLOW to be released by the USGS (previous core versions were released in 1984, 1988, 1996, 2000, and 2005). In the new design, any number of models can be included in a simulation. These models can be independent of one another with no interaction, they can exchange information with one another, or they can be tightly coupled at the matrix level by adding them to the same numerical solution. The transfer of information between models is isolated to exchange objects, which allows models to be developed and used independently of one another. Within this new framework, a regional-scale groundwater model may be coupled with multiple local-scale groundwater models. Or, a surface-water flow model could be coupled to multiple groundwater flow models. The framework naturally allows for future extensions to include the simulation of solute transport.
+
* Description:  program and framework developed to provide a platform for supporting multiple models
 +
* Version: 6
 +
* Modules: modflow/6
 +
* Licence: Free, open-source
 +
 
 +
==Introduction==
 +
 
 +
 
 +
MODFLOW 6 is an object-oriented program and framework developed to provide a platform for supporting multiple models and multiple types of models within the same simulation. This version of MODFLOW is labelled with a "6" because it is the sixth core version of MODFLOW to be released by the USGS (previous core versions were released in 1984, 1988, 1996, 2000, and 2005). In the new design, any number of models can be included in a simulation. These models can be independent of one another with no interaction, exchange information with one another, or be tightly coupled at the matrix level by adding them to the same numerical solution. The transfer of information between models is isolated to exchange objects, allowing models to be developed and used independently. A regional-scale groundwater model may be coupled with multiple local-scale groundwater models within this new framework. Or, a surface-water flow model could be coupled to multiple groundwater flow models. The framework naturally allows for future extensions to include the simulation of solute transport.
 +
 
 +
==Batch submission==
 +
 
 +
<pre>
 +
#!/bin/bash
 +
#SBATCH -J MODFLOW6
 +
#SBATCH -n 1
 +
#SBATCH -o %j_log.log
 +
#SBATCH -e %j_error.err
 +
#SBATCH -p compute
 +
#SBATCH --exclusive
 +
 
 +
module add modflow/6.2.1
 +
 
 +
mf6
 +
 
 +
</pre>
 +
==Further Information==
 +
 
 +
*[https://www.usgs.gov/software/modflow-6-usgs-modular-hydrologic-model https://www.usgs.gov/software/modflow-6-usgs-modular-hydrologic-model]
 +
 
 +
{{Modulepagenav}}

Latest revision as of 16:14, 1 March 2023

Application Details

  • Description: program and framework developed to provide a platform for supporting multiple models
  • Version: 6
  • Modules: modflow/6
  • Licence: Free, open-source

Introduction

MODFLOW 6 is an object-oriented program and framework developed to provide a platform for supporting multiple models and multiple types of models within the same simulation. This version of MODFLOW is labelled with a "6" because it is the sixth core version of MODFLOW to be released by the USGS (previous core versions were released in 1984, 1988, 1996, 2000, and 2005). In the new design, any number of models can be included in a simulation. These models can be independent of one another with no interaction, exchange information with one another, or be tightly coupled at the matrix level by adding them to the same numerical solution. The transfer of information between models is isolated to exchange objects, allowing models to be developed and used independently. A regional-scale groundwater model may be coupled with multiple local-scale groundwater models within this new framework. Or, a surface-water flow model could be coupled to multiple groundwater flow models. The framework naturally allows for future extensions to include the simulation of solute transport.

Batch submission

#!/bin/bash
#SBATCH -J MODFLOW6
#SBATCH -n 1
#SBATCH -o %j_log.log
#SBATCH -e %j_error.err
#SBATCH -p compute
#SBATCH --exclusive

module add modflow/6.2.1

mf6

Further Information





Modules | Main Page | Further Topics