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

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

parent 6914c303
No related branches found
No related tags found
No related merge requests found
## Functions for dealing with surrogate simulations ## Functions for dealing with surrogate simulations
### Marco De Lucia, delucia@gfz-potsdam.de, 2009-2018 ### Marco De Lucia, delucia@gfz-potsdam.de, 2009-2018
### Time-stamp: "Last modified 2018-08-14 20:59:02 delucia" ### Time-stamp: "Last modified 2019-05-08 17:18:23 delucia"
##' Todo ##' Todo
...@@ -321,12 +321,12 @@ ReactTranspBalanceEq <- function(setup, init, maxtime, step=c("time","iter","fix ...@@ -321,12 +321,12 @@ ReactTranspBalanceEq <- function(setup, init, maxtime, step=c("time","iter","fix
msg("assuming homogeneous medium") msg("assuming homogeneous medium")
msg("Names gathered after first run:", paste(colnames(tmpfirstrun), collapse=", ")) msg("Names gathered after first run:", paste(colnames(tmpfirstrun), collapse=", "))
state_C <- matrix(rep(tmpfirstrun,n), byrow=TRUE, ncol=length(prop)) state_C <- matrix(rep(tmpfirstrun,n), byrow=TRUE, ncol=length(prop))
colnames(state_C) <- colnames(tmpfirstrun)
} else { } else {
msg("given initial state") msg("given initial state; assuming correct colnames")
state_C <- init state_C <- init
} }
colnames(state_C) <- colnames(tmpfirstrun)
attr(state_C,"immobile") <- immobile attr(state_C,"immobile") <- immobile
## ssC <<- state_C ## ssC <<- state_C
......
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