Skip to content
Snippets Groups Projects
Commit aec2b4e3 authored by Marco De Lucia's avatar Marco De Lucia
Browse files

Fixed colnames(state_C) <- colnames(tmpfirstrun) in ReactTrans

parent fe1c3ad8
No related branches found
No related tags found
No related merge requests found
## Functions for dealing with surrogate simulations
### Marco De Lucia, delucia@gfz-potsdam.de, 2009-2018
### Time-stamp: "Last modified 2019-05-08 17:18:23 delucia"
### Time-stamp: "Last modified 2019-05-08 17:19:57 delucia"
##' Todo
......@@ -624,12 +624,12 @@ ReactTranspBalanceKin <- function(setup, init, maxtime, step=c("time","iter","fi
tmpfirstrun <- RunPQC(initsim)
msg("assuming homogeneous medium")
state_C <- matrix(rep(tmpfirstrun,n), byrow=TRUE, ncol=length(prop))
colnames(state_C) <- colnames(tmpfirstrun)
} else {
msg("given initial state")
msg("given initial state; assuming correct colnames")
state_C <- init
}
colnames(state_C) <- colnames(tmpfirstrun)
attr(state_C,"immobile") <- immobile
## we save with pe/pH
......
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