# input
input_filename <- "input_example.csv"
# redox options:
redox_flag <- 0 # -3, -2, -1, 0, or 1 (see EQ3 documentation for more info)
redox_aux <- "Fe+3" # ignored unless redox_flag is 1. Input species, e.g. "Fe+3"
default_logfO2 <- -6 # what is the default logfO2 if a redox value can't be found?
# aqueous block options
exclude <- c("Year", "Area", "Temperature") # which columns in input file to exclude from aqueous block?
suppress <- c("N2,AQ", "CN-", "S2-2","N2H5+","N2O2-2") # which species to suppress in aqueous block?
# charge balance options
charge_balance_on <- "none" # "none" for no charge balance. Otherwise, "H+" or "Na+", etc.
# EQ3_Batch options
suppress_missing <- TRUE # suppress the formation of an aqueous species if it is missing a value in the input file?
verbose <- 1 # 2 for all messages, 1 for errors or warnings only, 0 for silent
csv_filename <- "input_processed.csv" # filename of input summary?
create_join <- TRUE # join all forms of output together into one csv?
filename_join <- "final_report.csv" # name of final joined output
# AquaMine options
run_AquaMine <- TRUE # Run AquaMine after EQ3 output files are generated?
AM_output_type <- "log_activity" # Can be "molality", "log_molality", "log_gamma", or "log_activity"
# MineralMine options
run_MineralMine <- TRUE # Run MineralMine after EQ3 output files are generated?
MM_output_type <- "affinity" # Can be "logQoverK" or "affinity"
# RedoxMine options
run_RedoxMine <- TRUE # Run RedoxMine after EQ3 output files are generated?
RM_output_type <- "Eh" # Can be "Eh", "pe", "logfO2", or "Ah"
# MiscMine options
run_MiscMine <- TRUE # Run MiscMine after EQ3 output files are generated? Mines ionic strength and charge balance results.
#db <- "tde" # which thermo database to use? Default is 'jus'.
source("/Users/graysonboyer/Batch_EQ3_demo/scripts/preprocess_for_EQ3.r")
[1] "Warning: no 'logfO2' column found. Attempting to find a 'O2,AQ' column to estimate logfO2 at sample temperature and pressure..." [1] "Warning: non-numeric O2,AQ value in sample Crater Hills Geyser. Resorting to using Log fO2 (log bars) with a value of -6" [1] "Done! Took 1.3 seconds."
source("/Users/graysonboyer/Batch_EQ3_demo/scripts/runEQ3Batch.r")
calling EQ3 on Ambergris.3i using jus calling EQ3 on Bison.Pool.3i using jus calling EQ3 on Crater.Hills.Geyser.3i using jus calling EQ3 on Gas.Crack.3i using jus calling EQ3 on MLS.Source.3i using jus calling EQ3 on Snail.3i using jus calling EQ3 on Spray.Geyser.Source.3i using jus
[1] "runEQ3Batch finished! Took 3 seconds."
if(run_AquaMine){source("/Users/graysonboyer/Batch_EQ3_demo/scripts/AquaMine.r")}
[1] "AquaMine finished! Took 1.4 seconds."
if(run_MineralMine){source("/Users/graysonboyer/Batch_EQ3_demo/scripts/MineralMine.r")}
[1] "MineralMine finished! Took 0.4 seconds."
if(run_RedoxMine){source("/Users/graysonboyer/Batch_EQ3_demo/scripts/RedoxMine.r")}
[1] "RedoxMine finished! Took 0.2 seconds."
if(run_MiscMine){source("/Users/graysonboyer/Batch_EQ3_demo/scripts/MiscMine.r")}
[1] "MiscMine finished! Took 0.2 seconds."
if(create_join){source("/Users/graysonboyer/Batch_EQ3_demo/scripts/DataJoin.r")}
[1] "Join finished! Took 0.1 seconds."
head(master_df, 3)
Sample | Year_NA | Area_ | H+_pH | Temperature_degC | HCO3-_Molality | O2,AQ_Molality | HS-_Molality | SiO2,AQ_Molality | METHANE,AQ_Molality | ⋯ | O2_AQ/H2O | IS (molal) | stoichiometric IS (molal) | Sigma(mz) cations | Sigma(mz) anions | Total charge | Mean charge | Charge imbalance | %CI of total | %CI of mean |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Bison Pool | 2014 | YNP | 7.640 | 92.2 | 0.005690 | 9.38e-06 | 3.49e-06 | 0.00627 | 0 | ⋯ | 0.631 | 0.0139775 | 0.0140618 | 0.01378783 | -0.01378922 | 0.02757705 | 0.01378853 | -1.386903e-06 | -0.0050 | -0.0101 |
Spray Geyser Source | 2012 | YNP | 8.021 | 92.9 | 0.005410 | 3.13e-06 | 3.62e-06 | 0.00503 | 0 | ⋯ | 0.594 | 0.0129728 | 0.0130779 | 0.01272892 | -0.01271861 | 0.02544754 | 0.01272377 | 1.031011e-05 | 0.0405 | 0.0810 |
Crater Hills Geyser | 2012 | YNP | 3.327 | 89.0 | 0.000117 | 0.00e+00 | 1.74e-05 | 0.01440 | 0 | ⋯ | NA | 0.0375123 | 0.0420697 | 0.03367785 | -0.03290374 | 0.06658159 | 0.03329079 | 7.741091e-04 | 1.1626 | 2.3253 |