View source: R/run_isorropia.R
run_isorropia | R Documentation |
Function to run the ISORROPIA II model and return the model's input and output in a friendly format.
run_isorropia(
df,
directory_isorropia,
problem_type = "forward",
verbose = FALSE
)
df |
Input data frame/tibble that is to be modelled with ISORROPIA II. |
directory_isorropia |
Directory where ISORROPIA II's programme is
located. The programme can either be the complied source ( |
problem_type |
Problem type for ISORROPIA II to solve.
|
verbose |
Should the function give messages? |
Nested tibble with a single row.
Stuart K. Grange
## Not run:
# Load demo data
data_demo <- read_isorropia_demo_data()
# Run the ISORROPIA II model with demo data using a complied version of
# isorropia
run_isorropia(
data_demo,
directory_isorropia = "~/isorropia/source",
verbose = TRUE
)
# Run ISORROPIA II with an executable file on a Windows system
run_isorropia(
data_demo,
directory_isorropia = "C:/isorropia/ISO2_1Bin",
verbose = TRUE
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.