Plot a MT3D ucn file object
# S3 method for ucn rmt_plot(ucn, btn, i = NULL, j = NULL, k = NULL, l = NULL, ntrans = NULL, ...)
ucn |
|
---|---|
btn |
|
i | row number to plot |
j | column number to plot |
k | layer number to plot |
l | time step number to plot (index for 4th dimension); defaults to plotting the final time step. See details. |
ntrans | integer specifying the transport time step to plot. See details. |
... | additional parameters passed to |
ggplot2 object or layer
There are two ways to specify which time step to plot:
The l
argument can be specified which represents the dimension index. This can be smaller than the total number of transport time steps since output may not be written for all steps.
The second option is to specify ntrans
which is the total transport time step number. Since output at every time step is not always written, a specified ntrans value might not be available in the array.
If no output is written for the specified time step, as controlled by the btn object, an error is thrown.