Skip to content

Commit 6673fe3

Browse files
author
Médéric RIBREUX
committedFeb 28, 2016
Add r.solute.transport algorithm
1 parent 92f8f21 commit 6673fe3

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
r.solute.transport
2+
Numerical calculation program for transient, confined and unconfined solute transport in two dimensions
3+
Raster (r.*)
4+
ParameterRaster|c|The initial concentration in [kg/m^3]|False
5+
ParameterRaster|phead|The piezometric head in [m]|False
6+
ParameterRaster|hc_x|The x-part of the hydraulic conductivity tensor in [m/s]|False
7+
ParameterRaster|hc_y|The y-part of the hydraulic conductivity tensor in [m/s]|False
8+
ParameterRaster|status|The status for each cell, = 0 - inactive cell, 1 - active cell, 2 - dirichlet- and 3 - transfer boundary condition|False
9+
ParameterRaster|diff_x|The x-part of the diffusion tensor in [m^2/s]|False
10+
ParameterRaster|diff_y|The y-part of the diffusion tensor in [m^2/s]|False
11+
ParameterRaster|q|Groundwater sources and sinks in [m^3/s]|True
12+
ParameterRaster|cin|Concentration sources and sinks bounded to a water source or sink in [kg/s]|True
13+
ParameterRaster|cs|Concentration of inner sources and inner sinks in [kg/s] (i.e. a chemical reaction)|False
14+
ParameterRaster|rd|Retardation factor [-]|False
15+
ParameterRaster|nf|Effective porosity [-]|False
16+
ParameterRaster|top|Top surface of the aquifer in [m]|False
17+
ParameterRaster|bottom|Bottom surface of the aquifer in [m]|False
18+
ParameterRaster|vx|Calculate and store the groundwater filter velocity vector part in x direction [m/s]|True
19+
ParameterRaster|vy|Calculate and store the groundwater filter velocity vector part in y direction [m/s]|True
20+
ParameterNumber|dtime|Calculation time (in seconds)|0.0|None|86400.0|True
21+
ParameterNumber|maxit|Maximum number of iteration used to solve the linear equation system|1|None|10000|True
22+
ParameterNumber|error|Error break criteria for iterative solver|0.0|None|0.000001|True
23+
ParameterSelection|solver|The type of solver which should solve the linear equation system|gauss;lu;jacobi;sor;bicgstab|4
24+
ParameterNumber|relax|The relaxation parameter used by the jacobi and sor solver for speedup or stabilizing|0.0|None|1.0|True
25+
ParameterNumber|al|The longditudinal dispersivity length. [m]|0.0|None|0.0|True
26+
ParameterNumber|at|The transversal dispersivity length. [m]|0.0|None|0.0|True
27+
ParameterNumber|loops|Use this number of time loops if the CFL flag is off. The timestep will become dt/loops.|0.0|None|1.0|True
28+
ParameterSelection|stab|Set the flow stabilizing scheme (full or exponential upwinding).|full;exp|0
29+
*ParameterBoolean|-c|Use the Courant-Friedrichs-Lewy criteria for time step calculation|False
30+
*ParameterBoolean|-f|Use a full filled quadratic linear equation system, default is a sparse linear equation system.|False
31+
OutputRaster|output|Solute Transport

0 commit comments

Comments
 (0)
Please sign in to comment.