Skip to content
Snippets Groups Projects
Commit c262c4c6 authored by Ruben Heinrich's avatar Ruben Heinrich
Browse files

[docs] Updating documentation

parent 05fecad6
No related branches found
No related tags found
1 merge request!2Basic import and export functionality
...@@ -7,16 +7,16 @@ ...@@ -7,16 +7,16 @@
guess_structure(xml_node, xpath_expr, subclasses_names = character()) guess_structure(xml_node, xpath_expr, subclasses_names = character())
} }
\arguments{ \arguments{
\item{xml_node}{An XML node (of class xml2::xml_node)} \item{xml_node}{xml2::xml_node: XML node}
\item{xpath_expr}{An XPath expression (for subclass differentiation)} \item{xpath_expr}{string: XPath expression (for subclass differentiation)}
\item{subclasses_names}{Optional: A character vector containing the names of \item{subclasses_names}{Optional: character: Names of r2ogs6 subclasses
r2ogs6 subclasses (r2ogs6 classes without a method for input_add)} (r2ogs6 classes without a OGS6$add method)}
} }
\description{ \description{
Guesses the R representation of an XML node and adds it to Guesses the R representation of an XML node and adds it to
parameter list parameter list. This is a recursive function.
ASSUMPTIONS: ASSUMPTIONS:
1) Leaf nodes will have EITHER a value OR attributes (and will not be missing 1) Leaf nodes will have EITHER a value OR attributes (and will not be missing
both, e.g. '<a/>'). both, e.g. '<a/>').
......
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/prj_time_loop.R
\name{r2ogs6_time_stepping}
\alias{r2ogs6_time_stepping}
\title{r2ogs6_time_stepping}
\usage{
r2ogs6_time_stepping(
type,
t_initial = NULL,
t_end = NULL,
timesteps = NULL,
initial_dt = NULL,
minimum_dt = NULL,
maximum_dt = NULL,
number_iterations = NULL,
multiplier = NULL,
dt_guess = NULL,
dt_min = NULL,
dt_max = NULL,
rel_dt_min = NULL,
rel_dt_max = NULL,
tol = NULL
)
}
\arguments{
\item{type}{string:}
\item{t_initial}{Optional: string | double:}
\item{t_end}{Optional: string | double:}
\item{timesteps}{Optional: list:}
\item{initial_dt}{Optional: string | double:}
\item{minimum_dt}{Optional: string | double:}
\item{maximum_dt}{Optional: string | double:}
\item{number_iterations}{Optional: string | numeric:}
\item{multiplier}{Optional: string | numeric:}
\item{dt_guess}{Optional: string | double:}
\item{dt_min}{Optional: string | double:}
\item{dt_max}{Optional: string | double:}
\item{rel_dt_min}{Optional: string | double:}
\item{rel_dt_max}{Optional: string | double:}
\item{tol}{Optional: string | double:}
}
\description{
tag: time_stepping
}
...@@ -22,7 +22,7 @@ r2ogs6_tl_process( ...@@ -22,7 +22,7 @@ r2ogs6_tl_process(
\item{time_discretization}{vector:} \item{time_discretization}{vector:}
\item{time_stepping}{list:} \item{time_stepping}{r2ogs6_time_stepping:}
\item{compensate_non_equilibrium_initial_residuum}{string: Optional: Either \item{compensate_non_equilibrium_initial_residuum}{string: Optional: Either
"true" or "false"} "true" or "false"}
......
...@@ -10,6 +10,7 @@ read_in_output(ogs6_obj) ...@@ -10,6 +10,7 @@ read_in_output(ogs6_obj)
\item{ogs6_obj}{A OGS6 class object} \item{ogs6_obj}{A OGS6 class object}
} }
\description{ \description{
After a OGS6 simulation was run, reads in the generated .vtu files as new input for After a OGS6 simulation was run, reads in the generated .vtu
files as new input for
the .prj file the .prj file
} }
...@@ -14,5 +14,6 @@ run_simulation(ogs6_obj, iter_n = 1, output_to_log_file = TRUE) ...@@ -14,5 +14,6 @@ run_simulation(ogs6_obj, iter_n = 1, output_to_log_file = TRUE)
\item{output_to_log_file}{Should the output be written to a log file?} \item{output_to_log_file}{Should the output be written to a log file?}
} }
\description{ \description{
Calls OGS6 object validator functions, exports all necessary files and starts OpenGeoSys6 Calls OGS6 object validator functions, exports all necessary
files and starts OpenGeoSys6
} }
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{validate_is_dir_path}
\alias{validate_is_dir_path}
\title{validate_is_dir_path}
\usage{
validate_is_dir_path(path)
}
\arguments{
\item{path}{string: A path}
}
\description{
Checks if a given path ends on '/'
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment