PecanProject / pecan

The Predictive Ecosystem Analyzer (PEcAn) is an integrated ecological bioinformatics toolbox.
www.pecanproject.org
Other
202 stars 235 forks source link

DALEC Ensemble analysis hangs indefinitely #772

Closed ashiklom closed 8 years ago

ashiklom commented 8 years ago

PEcAn seems to get stuck on the ensemble analysis step. @bcow and I have been running moderately large (200-1000) ensembles of DALEC (e.g. 1000001436 -- 200 member, 1000001432 -- 1000 member), and while the model runs finish in just a few minutes, the job hangs seemingly indefinitely on the "ENSEMBLE" step.

ashiklom commented 8 years ago

FYI, this is not an issue with SIPNET -- I tested with a 500 member ensemble 1000001437 and it worked swimmingly.

serbinsh commented 8 years ago

@ashiklom Going back to the "too many open files" issue, that is why one of my DALEC runs stalled at the ensemble step indefinitely. Is it possible this is your issue?

ashiklom commented 8 years ago

@serbinsh Definitely possible. Seems like it would be worth sitting down and performing some optimization of core PEcAn functions at some point. Might be a good opportunity to rethink some of their control flow too, as we did with write.configs.

serbinsh commented 8 years ago

Cool. Yeah, for example here is the DALEC running I was referring to:

R version 3.2.3 (2015-12-10) -- "Wooden Christmas-Tree"
Copyright (C) 2015 The R Foundation for Statistical Computing
Platform: x86_64-redhat-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> #!/usr/bin/env Rscript
> #-------------------------------------------------------------------------------
> # Copyright (c) 2012 University of Illinois, NCSA.
> # All rights reserved. This program and the accompanying materials
> # are made available under the terms of the 
> # University of Illinois/NCSA Open Source License
> # which accompanies this distribution, and is available at
> # http://opensource.ncsa.illinois.edu/license.html
> #-------------------------------------------------------------------------------
> 
> # ----------------------------------------------------------------------
> # Load required libraries
> # ----------------------------------------------------------------------
> library(PEcAn.all)
Loading required package: PEcAn.DB
Loading required package: DBI
Loading required package: PEcAn.utils
Loading required package: abind
Loading required package: plyr
Loading required package: XML
Loading required package: ggplot2
Loading required package: randtoolbox
Loading required package: rngWELL
This is randtoolbox. For overview, type 'help("randtoolbox")'.
Loading required package: RCurl
Loading required package: bitops
Loading required package: PEcAn.settings
Loading required package: lubridate

Attaching package: 'lubridate'

The following object is masked from 'package:plyr':

    here

Loading required package: PEcAn.MA
Loading required package: lattice
Loading required package: MASS
Loading required package: PEcAn.uncertainty
Loading required package: PEcAn.priors
Loading required package: gridExtra
Loading required package: grid
Loading required package: PEcAn.data.atmosphere
Loading required package: ncdf4
Loading required package: udunits2
Loading required package: data.table

Attaching package: 'data.table'

The following objects are masked from 'package:lubridate':

    hour, mday, month, quarter, wday, week, yday, year

Loading required package: REddyProc
Loading required package: PEcAn.data.land
Loading required package: PEcAn.data.remote
Loading required package: PEcAn.assim.batch
> library(RCurl)
> 
> #--------------------------------------------------------------------------------#
> # Functions used to write STATUS used by history
> #--------------------------------------------------------------------------------#
> status.start <- function(name) {
+   if (exists("settings")) {
+     cat(paste(name,
+               format(Sys.time(), "%F %T"), sep="\t"),
+         file=file.path(settings$outdir, "STATUS"), append=TRUE)
+   }
+ }
> status.end <- function(status="DONE") {
+   if (exists("settings")) {
+     cat(paste("",
+               format(Sys.time(), "%F %T"),
+               status,
+               "\n", sep="\t"),
+         file=file.path(settings$outdir, "STATUS"), append=TRUE)
+   }
+ }
> status.skip <- function(name) {
+   if (exists("settings")) {
+     cat(paste(name,
+               format(Sys.time(), "%F %T"),
+               "",
+               format(Sys.time(), "%F %T"),
+               "SKIPPED",
+               "\n", sep="\t"),
+         file=file.path(settings$outdir, "STATUS"), append=TRUE)
+   }
+ }
> status.check <- function(name) {
+   if (!exists("settings")) return (0)
+   status.file=file.path(settings$outdir, "STATUS")
+   if (!file.exists(status.file)){
+     return (0)
+   }
+   status.data <- read.table(status.file, row.names=1, header=FALSE, sep="\t", quote="", fill=TRUE)
+   if (! name %in% row.names(status.data)) {
+     return (0)
+   }
+   status.data[name,]
+   if (is.na(status.data[name, 3])) {
+     logger.warn("UNKNOWN STATUS FOR", name)
+     return (0)
+   }
+   if (status.data[name, 3] == "DONE") {
+     return (1)
+   }
+   if (status.data[name, 3] == "ERROR") {
+     return (-1)
+   }
+   return (0)
+ }
> kill.tunnel <- function() {
+   if (exists("settings") && !is.null(settings$run$host$tunnel)) {
+     pidfile <- file.path(dirname(settings$run$host$tunnel), "pid")
+     pid <- readLines(pidfile)
+     print(paste("Killing tunnel with PID", pid))
+     tools::pskill(pid)
+     file.remove(pidfile)
+   }
+ }
> 
> # make sure always to call status.end
> options(warn=1)
> options(error=quote({
+   status.end("ERROR")
+   kill.tunnel()
+   if (!interactive()) {
+     q()
+   }
+ }))
> 
> #options(warning.expression=status.end("ERROR"))
> 
> 
> # ----------------------------------------------------------------------
> # PEcAn Workflow
> # ----------------------------------------------------------------------
> # Open and read in settings file for PEcAn run.
> args <- commandArgs(trailingOnly = TRUE)
> if (is.na(args[1])){
+   settings <- read.settings("pecan.xml")
+ } else {
+   settings.file = args[1]
+   settings <- read.settings(settings.file)
+ }
2016-04-02 11:44:55 INFO   [read.settings] : 
   Loading inpufile= pecan.xml 
Loading required package: RPostgreSQL
2016-04-02 11:44:55 INFO   [check.database] : 
   Successfully connected to database : bety bety localhost bety PostgreSQL 
   true 
2016-04-02 11:44:55 DEBUG  [check.settings] : 
   Writing all runs/configurations to database. 
2016-04-02 11:44:55 WARN   [check.bety.version] : 
   Last migration 20151014182146 is more recent than expected 
   20141009160121. This could result in PEcAn not working as expected. 
2016-04-02 11:44:55 INFO   [check.settings] : 
   No start date passed to ensemble - using the run date ( ). 
2016-04-02 11:44:55 INFO   [check.settings] : 
   No end date passed to ensemble - using the run date ( ). 
2016-04-02 11:44:55 INFO   [check.settings] : 
   No start date passed to sensitivity.analysis - using the ensemble date ( 
   ). 
2016-04-02 11:44:55 INFO   [check.settings] : 
   No end date passed to sensitivity.analysis - using the ensemble date ( 
   ). 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting meta.analysis threshold to 1.2 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting meta.analysis update to only update if no previous meta analysis 
   was found 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting model type to DALEC 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting model revision to Quaife Evergreen RSE08 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Option to delete raw model output not set or not logical. Will keep all 
   model output. 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting model binary to /data/software/dalec_EnKF_pub//dalec_seqMH 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting site name to Metolius-first young aged pine (US-Me5) 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting site lat to 44.4372 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Setting site lon to -121.567 
2016-04-02 11:44:55 INFO   [check.settings] : 
   output folder = /data/Model_Output/pecan.output/PEcAn_2000000138 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Storing pft dalec.pondersoa_pine in 
   /data/Model_Output/pecan.output/PEcAn_2000000138/pft/dalec.pondersoa_pine 
2016-04-02 11:44:55 INFO   [check.settings] : 
   Storing pft dalec.pondersoa_pine in 
   /data/Model_Output/pecan.output/PEcAn_2000000138/pft/dalec.pondersoa_pine 
2016-04-02 11:44:55 WARN   [read.settings] : 
   File already exists [ 
   /data/Model_Output/pecan.output/PEcAn_2000000138/pecan.xml ] file will 
   be overwritten 
> 
> # start from scratch if no continue is passed in
> if (length(which(commandArgs() == "--continue")) == 0) {
+   file.remove(file.path(settings$outdir, "STATUS"))
+ }
Warning in file.remove(file.path(settings$outdir, "STATUS")) :
  cannot remove file '/data/Model_Output/pecan.output/PEcAn_2000000138/STATUS', reason 'No such file or directory'
[1] FALSE
>   
> # Do conversions
> needsave <- FALSE
> for(i in 1:length(settings$run$inputs)) {
+   input <- settings$run$inputs[[i]]
+   if (is.null(input)) next
+   
+   input.tag <- names(settings$run$input)[i]
+   
+   # fia database
+   if ((input['input'] == 'fia') && (status.check("FIA2ED") == 0)) {
+     status.start("FIA2ED")
+     fia.to.psscss(settings)
+     status.end()
+     needsave <- TRUE
+   }
+   
+   # met conversion
+   if(input.tag == 'met') {
+     name <- ifelse(is.null(settings$browndog), "MET Process", "BrownDog")
+     if (is.null(input$path) && (status.check(name) == 0)) {
+       status.start(name)
+       result <- PEcAn.data.atmosphere::met.process(
+         site       = settings$run$site, 
+         input_met  = settings$run$inputs$met,
+         start_date = settings$run$start.date,
+         end_date   = settings$run$end.date,
+         model      = settings$model$type,
+         host       = settings$run$host,
+         dbparms    = settings$database$bety, 
+         dir        = settings$run$dbfiles,
+         browndog   = settings$browndog)
+       settings$run$inputs[[i]][['path']] <- result
+       status.end()
+       needsave <- TRUE
+     }
+   }
+ }
> if (needsave) {
+   saveXML(listToXml(settings, "pecan"), file=file.path(settings$outdir, 'pecan.METProcess.xml'))  
+ } else if (file.exists(file.path(settings$outdir, 'pecan.METProcess.xml'))) {
+   settings <- read.settings(file.path(settings$outdir, 'pecan.METProcess.xml'))
+ }
> 
> 
> # Query the trait database for data and priors
> if (status.check("TRAIT") == 0){
+   status.start("TRAIT")
+   settings$pfts <- get.trait.data(settings$pfts, settings$model$type, settings$run$dbfiles, settings$database$bety, settings$meta.analysis$update)
+   saveXML(listToXml(settings, "pecan"), file=file.path(settings$outdir, 'pecan.TRAIT.xml'))
+   status.end()
+ } else if (file.exists(file.path(settings$outdir, 'pecan.TRAIT.xml'))) {
+   settings <- read.settings(file.path(settings$outdir, 'pecan.TRAIT.xml'))
+ }
[1] "---------------------------------------------------------"
[1] "leaf_turnover_rate"
[1] "Median leaf_turnover_rate : 0.426"
[1] "---------------------------------------------------------"
2016-04-02 11:44:56 INFO   [FUN] : 
   Summary of Prior distributions for: dalec.pondersoa_pine 
2016-04-02 11:44:56 INFO   [FUN] : 
   distn parama paramb n 
2016-04-02 11:44:56 INFO   [FUN] : 
   autotrophic_respiration_fraction beta 8.4229 9.3356 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   leaf_allocation_fraction beta 8.9103 18.9848 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   litter_decomposition_to_SOM exp 157176.2000 0.0000 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   litter_respiration_rate gamma 0.3265 3.9822 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   wood_turnover_rate gamma 0.0782 0.1123 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   som_respiration_rate exp 261565.0000 0.0000 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   root_allocation_fraction beta 15.2563 19.7635 0 
2016-04-02 11:44:56 INFO   [FUN] : 
   root_turnover_rate unif 0.0000 10.0000 NA 
2016-04-02 11:44:56 INFO   [FUN] : 
   SLA weibull 2.0600 19.0000 125 
2016-04-02 11:44:56 INFO   [FUN] : 
   leaf_turnover_rate unif 0.0400 1.0000 NA 
2016-04-02 11:44:56 INFO   [FUN] : 
   number of observations per trait for dalec.pondersoa_pine 
2016-04-02 11:44:56 INFO   [FUN] : 
   4 observations of leaf_turnover_rate 
2016-04-02 11:44:56 INFO   [FUN] : 
   /data/Model_Output/pecan.output/dbfiles/posterior/2000000482 
   trait.data.Rdata 
2016-04-02 11:44:56 DEBUG  [FUN] : 
   Checking if trait data has changed 
2016-04-02 11:44:56 INFO   [FUN] : 
   /data/Model_Output/pecan.output/dbfiles/posterior/2000000482 
   prior.distns.Rdata 
2016-04-02 11:44:56 DEBUG  [FUN] : 
   Checking if priors have changed 
2016-04-02 11:44:56 INFO   [FUN] : 
   /data/Model_Output/pecan.output/dbfiles/posterior/2000000482 species.csv 
2016-04-02 11:44:56 DEBUG  [FUN] : 
   Checking if species have changed 
2016-04-02 11:44:56 INFO   [FUN] : 
   Reusing existing files from posterior 2000000482 for 
   dalec.pondersoa_pine 
> 
>   
> # Run the PEcAn meta.analysis
> if('meta.analysis' %in% names(settings)) {
+   if (status.check("META") == 0){
+     status.start("META")
+     run.meta.analysis(settings$pfts, settings$meta.analysis$iter, settings$meta.analysis$random.effects, settings$meta.analysis$threshold, settings$run$dbfiles, settings$database$bety)
+     status.end()
+   }
+ }
Loading required package: coda
2016-04-02 11:44:56 INFO   [FUN] : 
   ------------------------------------------------------------------- 
2016-04-02 11:44:56 INFO   [FUN] : 
   Running meta.analysis for PFT: dalec.pondersoa_pine 
2016-04-02 11:44:56 INFO   [FUN] : 
   ------------------------------------------------------------------- 
2016-04-02 11:44:56 INFO   [FUN] : 
   OK!  leaf_turnover_rate data and prior are consistent: 
2016-04-02 11:44:56 INFO   [FUN] : 
   leaf_turnover_rate P[X<x] = 0.397135416666667 
Each meta-analysis will be run with: 
3000 total iterations,
4 chains, 
a burnin of 1500 samples,
, 
thus the total number of samples will be 6000
################################################
------------------------------------------------
starting meta-analysis for:

 leaf_turnover_rate 

------------------------------------------------
NO ERROR STATS PROVIDED, DROPPING RANDOM EFFECTS
prior for leaf_turnover_rate (using R parameterization):
unif(0.04, 1)
data max: 0.42125 
data min: 0.42125 
mean: 0.421 
n: 1
stem plot of data points
no estimates of SD for leaf_turnover_rate
Loading required package: rjags
Linked to JAGS 4.0.0
Loaded modules: basemod,bugs
Read 28 items
Compiling model graph
   Resolving undeclared variables
   Allocating nodes
Graph information:
   Observed stochastic nodes: 1
   Unobserved stochastic nodes: 3
   Total graph size: 19

Initializing model

Iterations = 1002:4000
Thinning interval = 2 
Number of chains = 4 
Sample size per chain = 1500 

1. Empirical mean and standard deviation for each variable,
   plus standard error of the mean:

         Mean    SD Naive SE Time-series SE
beta.o 0.4381 0.157 0.002027       0.002674
sd.y   1.0648 8.442 0.108982       0.110690

2. Quantiles for each variable:

          2.5%     25%    50%    75%  97.5%
beta.o 0.11323 0.38318 0.4225 0.4712 0.8789
sd.y   0.01295 0.05325 0.1645 0.5531 5.5635

2016-04-02 11:44:57 INFO   [FUN] : 
   OK!  leaf_turnover_rate posterior and prior are consistent: 
2016-04-02 11:44:57 INFO   [FUN] : 
   leaf_turnover_rate P[X<x] = 0.398410400003477 
2016-04-02 11:44:57 INFO   [pecan.ma.summary] : 
   JAGS model converged for dalec.pondersoa_pine leaf_turnover_rate GD 
   MPSRF = 1.001 
2016-04-02 11:44:58 INFO   [FUN] : 
   Assuming get.trait copied results already 
>   
> # Write model specific configs
> if (status.check("CONFIG") == 0){
+   status.start("CONFIG")
+   settings <- run.write.configs(settings, write=settings$database$bety$write, ens.sample.method=settings$ensemble$method)
+   saveXML(listToXml(settings, "pecan"), file=file.path(settings$outdir, 'pecan.CONFIGS.xml'))
+   status.end()
+ } else if (file.exists(file.path(settings$outdir, 'pecan.CONFIGS.xml'))) {
+   settings <- read.settings(file.path(settings$outdir, 'pecan.CONFIGS.xml'))
+ }
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   Selected PFT(s): dalec.pondersoa_pine dalec.pondersoa_pine 
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   PFT dalec.pondersoa_pine has MCMC samples for: leaf_turnover_rate 
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   PFT dalec.pondersoa_pine will use prior distributions for: 
   autotrophic_respiration_fraction leaf_allocation_fraction 
   litter_decomposition_to_SOM litter_respiration_rate wood_turnover_rate 
   som_respiration_rate root_allocation_fraction root_turnover_rate SLA 
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   using 5004 samples per trait 
[1] "get.sample beta"
[1] "get.sample beta"
[1] "get.sample exp"
[1] "get.sample gamma"
[1] "get.sample gamma"
[1] "get.sample exp"
[1] "get.sample beta"
[1] "get.sample unif"
[1] "get.sample weibull"
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   PFT dalec.pondersoa_pine has MCMC samples for: leaf_turnover_rate 
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   PFT dalec.pondersoa_pine will use prior distributions for: 
   autotrophic_respiration_fraction leaf_allocation_fraction 
   litter_decomposition_to_SOM litter_respiration_rate wood_turnover_rate 
   som_respiration_rate root_allocation_fraction root_turnover_rate SLA 
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   using 5004 samples per trait 
[1] "get.sample beta"
[1] "get.sample beta"
[1] "get.sample exp"
[1] "get.sample gamma"
[1] "get.sample gamma"
[1] "get.sample exp"
[1] "get.sample beta"
[1] "get.sample unif"
[1] "get.sample weibull"
2016-04-02 11:44:58 INFO   [get.parameter.samples] : 
   Selected Quantiles: 
   '0.001','0.023','0.159','0.5','0.841','0.977','0.999' 
2016-04-02 11:44:58 INFO   [get.ensemble.samples] : 
   No sampling method supplied, defaulting to uniform random sampling 
2016-04-02 11:44:58 INFO   [get.ensemble.samples] : 
   Using uniform random sampling 
Loading required package: PEcAn.DALEC
2016-04-02 11:44:58 INFO   [run.write.configs] : 
   Selected Quantiles: 
   '0.001','0.023','0.159','0.5','0.841','0.977','0.999' 
2016-04-02 11:44:58 INFO   [run.write.configs] : 
   ----- Writing model run config files ---- 
2016-04-02 11:44:58 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010516
2016-04-02 11:44:58 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010517
2016-04-02 11:44:59 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010518
2016-04-02 11:44:59 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010519
2016-04-02 11:44:59 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010520
2016-04-02 11:44:59 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010521
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010522
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010523
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010524
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010525
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010526
2016-04-02 11:45:00 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010527
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010528
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010529
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010530
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010531
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010532
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010533
2016-04-02 11:45:01 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010534
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010535
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010536
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010537
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010538
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010539
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010540
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010541
2016-04-02 11:45:02 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010542
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010543
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010544
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010545
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010546
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010547
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010548
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010549
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010550
2016-04-02 11:45:03 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010551
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010552
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010553
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010554
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010555
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010556
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010557
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010558
2016-04-02 11:45:04 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010559
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010560
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010561
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010562
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010563
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010564
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010565
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010566
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010567
2016-04-02 11:45:05 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010568
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010569
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010570
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010571
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010572
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010573
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010574
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010575
2016-04-02 11:45:06 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010576
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010577
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010578
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010579
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010580
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010581
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010582
2016-04-02 11:45:07 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010583
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010584
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010585
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010586
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010587
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010588
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010589
2016-04-02 11:45:08 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010590
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010591
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010592
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010593
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010594
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010595
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010596
2016-04-02 11:45:09 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010597
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010598
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010599
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010600
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010601
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010602
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010603
2016-04-02 11:45:10 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010604
2016-04-02 11:45:11 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010605
2016-04-02 11:45:11 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010606
2016-04-02 11:45:11 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010607
2016-04-02 11:45:11 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010608
2016-04-02 11:45:11 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010609
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010610
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010611
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010612
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010613
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010614
2016-04-02 11:45:12 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010615
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010616
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010617
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010618
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010619
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010620
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010621
2016-04-02 11:45:13 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010622
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010623
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010624
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010625
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010626
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010627
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010628
2016-04-02 11:45:14 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010629
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010630
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010631
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010632
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010633
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010634
2016-04-02 11:45:15 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010635
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010636
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010637
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010638
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010639
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010640
2016-04-02 11:45:16 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010641
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010642
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010643
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010644
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010645
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010646
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010647
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010648
2016-04-02 11:45:17 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010649
2016-04-02 11:45:18 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010650
2016-04-02 11:45:18 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010651
2016-04-02 11:45:18 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010652
2016-04-02 11:45:18 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010653
2016-04-02 11:45:18 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010654
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010655
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010656
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010657
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010658
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010659
2016-04-02 11:45:19 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010660
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010661
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010662
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010663
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010664
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010665
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010666
2016-04-02 11:45:20 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010667
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010668
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010669
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010670
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010671
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010672
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010673
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010674
2016-04-02 11:45:21 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010675
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010676
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010677
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010678
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010679
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010680
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010681
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010682
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010683
2016-04-02 11:45:22 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010684
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010685
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010686
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010687
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010688
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010689
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010690
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010691
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010692
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010693
2016-04-02 11:45:23 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010694
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010695
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010696
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010697
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010698
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010699
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010700
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010701
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010702
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010703
2016-04-02 11:45:24 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010704
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010705
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010706
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010707
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010708
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010709
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010710
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010711
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010712
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010713
2016-04-02 11:45:25 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010714
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010715
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010716
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010717
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010718
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010719
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010720
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010721
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010722
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010723
2016-04-02 11:45:26 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010724
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010725
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010726
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010727
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010728
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010729
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010730
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010731
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010732
2016-04-02 11:45:27 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010733
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010734
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010735
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010736
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010737
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010738
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010739
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010740
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010741
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010742
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010743
2016-04-02 11:45:28 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010744
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010745
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010746
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010747
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010748
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010749
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010750
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010751
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010752
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010753
2016-04-02 11:45:29 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010754
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010755
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010756
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010757
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010758
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010759
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010760
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010761
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010762
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010763
2016-04-02 11:45:30 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010764
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010765
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010766
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010767
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010768
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010769
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010770
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010771
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010772
2016-04-02 11:45:31 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010773
2016-04-02 11:45:32 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010774
2016-04-02 11:45:32 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010775
2016-04-02 11:45:32 INFO   [write.config.DALEC] : 
   t2 t3 t1 t8 t7 t9 t4 t7 SLA t5 
[1] 2000010776
2016-04-02 11:45:32 INFO   [run.write.configs] : 
   ###### Finished writing model run config files ##### 
2016-04-02 11:45:32 INFO   [run.write.configs] : 
   config files samples in 
   /data/Model_Output/pecan.output/PEcAn_2000000138/run 
2016-04-02 11:45:32 INFO   [run.write.configs] : 
   parameter values for runs in 
   /data/Model_Output/pecan.output/PEcAn_2000000138/samples.RData 
>     
> if ((length(which(commandArgs() == "--advanced")) != 0) && (status.check("ADVANCED") == 0)) {
+   status.start("ADVANCED")
+   q();
+ }
> 
> # Start ecosystem model runs
> if (status.check("MODEL") == 0) {
+   status.start("MODEL")
+   start.model.runs(settings, settings$database$bety$write)
+   status.end()
+ }
2016-04-02 11:45:32 INFO   [start.model.runs] : 
   ------------------------------------------------------------------- 
2016-04-02 11:45:32 INFO   [start.model.runs] : 
   Starting model runs DALEC 
2016-04-02 11:45:32 INFO   [start.model.runs] : 
   ------------------------------------------------------------------- 

  |                                                                            
  |                                                                      |   0%[1] "46536.modex.bnl.gov"
[1] "46537.modex.bnl.gov"
[1] "46538.modex.bnl.gov"
[1] "46539.modex.bnl.gov"
[1] "46540.modex.bnl.gov"
[1] "46541.modex.bnl.gov"
[1] "46542.modex.bnl.gov"
[1] "46543.modex.bnl.gov"
[1] "46544.modex.bnl.gov"
[1] "46545.modex.bnl.gov"
[1] "46546.modex.bnl.gov"
[1] "46547.modex.bnl.gov"
[1] "46548.modex.bnl.gov"
[1] "46549.modex.bnl.gov"
[1] "46550.modex.bnl.gov"
[1] "46551.modex.bnl.gov"
[1] "46552.modex.bnl.gov"
[1] "46553.modex.bnl.gov"
[1] "46554.modex.bnl.gov"
[1] "46555.modex.bnl.gov"
[1] "46556.modex.bnl.gov"
[1] "46557.modex.bnl.gov"
[1] "46558.modex.bnl.gov"
[1] "46559.modex.bnl.gov"
[1] "46560.modex.bnl.gov"
[1] "46561.modex.bnl.gov"
[1] "46562.modex.bnl.gov"
[1] "46563.modex.bnl.gov"
[1] "46564.modex.bnl.gov"
[1] "46565.modex.bnl.gov"
[1] "46566.modex.bnl.gov"
[1] "46567.modex.bnl.gov"
[1] "46568.modex.bnl.gov"
[1] "46569.modex.bnl.gov"
[1] "46570.modex.bnl.gov"
[1] "46571.modex.bnl.gov"
[1] "46572.modex.bnl.gov"
[1] "46573.modex.bnl.gov"
[1] "46574.modex.bnl.gov"
[1] "46575.modex.bnl.gov"
[1] "46576.modex.bnl.gov"
[1] "46577.modex.bnl.gov"
[1] "46578.modex.bnl.gov"
[1] "46579.modex.bnl.gov"
[1] "46580.modex.bnl.gov"
[1] "46581.modex.bnl.gov"
[1] "46582.modex.bnl.gov"
[1] "46583.modex.bnl.gov"
[1] "46584.modex.bnl.gov"
[1] "46585.modex.bnl.gov"
[1] "46586.modex.bnl.gov"
[1] "46587.modex.bnl.gov"
[1] "46588.modex.bnl.gov"
[1] "46589.modex.bnl.gov"
[1] "46590.modex.bnl.gov"
[1] "46591.modex.bnl.gov"
[1] "46592.modex.bnl.gov"
[1] "46593.modex.bnl.gov"
[1] "46594.modex.bnl.gov"
[1] "46595.modex.bnl.gov"
[1] "46596.modex.bnl.gov"
[1] "46597.modex.bnl.gov"
[1] "46598.modex.bnl.gov"
[1] "46599.modex.bnl.gov"
[1] "46600.modex.bnl.gov"
[1] "46601.modex.bnl.gov"
[1] "46602.modex.bnl.gov"
[1] "46603.modex.bnl.gov"
[1] "46604.modex.bnl.gov"
[1] "46605.modex.bnl.gov"
[1] "46606.modex.bnl.gov"
[1] "46607.modex.bnl.gov"
[1] "46608.modex.bnl.gov"
[1] "46609.modex.bnl.gov"
[1] "46610.modex.bnl.gov"
[1] "46611.modex.bnl.gov"
[1] "46612.modex.bnl.gov"
[1] "46613.modex.bnl.gov"
[1] "46614.modex.bnl.gov"
[1] "46615.modex.bnl.gov"
[1] "46616.modex.bnl.gov"
[1] "46617.modex.bnl.gov"
[1] "46618.modex.bnl.gov"
[1] "46619.modex.bnl.gov"
[1] "46620.modex.bnl.gov"
[1] "46621.modex.bnl.gov"
[1] "46622.modex.bnl.gov"
[1] "46623.modex.bnl.gov"
[1] "46624.modex.bnl.gov"
[1] "46625.modex.bnl.gov"
[1] "46626.modex.bnl.gov"
[1] "46627.modex.bnl.gov"
[1] "46628.modex.bnl.gov"
[1] "46629.modex.bnl.gov"
[1] "46630.modex.bnl.gov"
[1] "46631.modex.bnl.gov"
[1] "46632.modex.bnl.gov"
[1] "46633.modex.bnl.gov"
[1] "46634.modex.bnl.gov"
[1] "46635.modex.bnl.gov"
[1] "46636.modex.bnl.gov"
[1] "46637.modex.bnl.gov"
[1] "46638.modex.bnl.gov"
[1] "46639.modex.bnl.gov"
[1] "46640.modex.bnl.gov"
[1] "46641.modex.bnl.gov"
[1] "46642.modex.bnl.gov"
[1] "46643.modex.bnl.gov"
[1] "46644.modex.bnl.gov"
[1] "46645.modex.bnl.gov"
[1] "46646.modex.bnl.gov"
[1] "46647.modex.bnl.gov"
[1] "46648.modex.bnl.gov"
[1] "46649.modex.bnl.gov"
[1] "46650.modex.bnl.gov"
[1] "46651.modex.bnl.gov"
[1] "46652.modex.bnl.gov"
[1] "46653.modex.bnl.gov"
[1] "46654.modex.bnl.gov"
[1] "46655.modex.bnl.gov"
[1] "46656.modex.bnl.gov"
[1] "46657.modex.bnl.gov"
[1] "46658.modex.bnl.gov"
[1] "46659.modex.bnl.gov"
[1] "46660.modex.bnl.gov"
[1] "46661.modex.bnl.gov"
[1] "46662.modex.bnl.gov"
[1] "46663.modex.bnl.gov"
[1] "46664.modex.bnl.gov"
[1] "46665.modex.bnl.gov"
[1] "46666.modex.bnl.gov"
[1] "46667.modex.bnl.gov"
[1] "46668.modex.bnl.gov"
[1] "46669.modex.bnl.gov"
[1] "46670.modex.bnl.gov"
[1] "46671.modex.bnl.gov"
[1] "46672.modex.bnl.gov"
[1] "46673.modex.bnl.gov"
[1] "46674.modex.bnl.gov"
[1] "46675.modex.bnl.gov"
[1] "46676.modex.bnl.gov"
[1] "46677.modex.bnl.gov"
[1] "46678.modex.bnl.gov"
[1] "46679.modex.bnl.gov"
[1] "46680.modex.bnl.gov"
[1] "46681.modex.bnl.gov"
[1] "46682.modex.bnl.gov"
[1] "46683.modex.bnl.gov"
[1] "46684.modex.bnl.gov"
[1] "46685.modex.bnl.gov"
[1] "46686.modex.bnl.gov"
[1] "46687.modex.bnl.gov"
[1] "46688.modex.bnl.gov"
[1] "46689.modex.bnl.gov"
[1] "46690.modex.bnl.gov"
[1] "46691.modex.bnl.gov"
[1] "46692.modex.bnl.gov"
[1] "46693.modex.bnl.gov"
[1] "46694.modex.bnl.gov"
[1] "46695.modex.bnl.gov"
[1] "46696.modex.bnl.gov"
[1] "46697.modex.bnl.gov"
[1] "46698.modex.bnl.gov"
[1] "46699.modex.bnl.gov"
[1] "46700.modex.bnl.gov"
[1] "46701.modex.bnl.gov"
[1] "46702.modex.bnl.gov"
[1] "46703.modex.bnl.gov"
[1] "46704.modex.bnl.gov"
[1] "46705.modex.bnl.gov"
[1] "46706.modex.bnl.gov"
[1] "46707.modex.bnl.gov"
[1] "46708.modex.bnl.gov"
[1] "46709.modex.bnl.gov"
[1] "46710.modex.bnl.gov"
[1] "46711.modex.bnl.gov"
[1] "46712.modex.bnl.gov"
[1] "46713.modex.bnl.gov"
[1] "46714.modex.bnl.gov"
[1] "46715.modex.bnl.gov"
[1] "46716.modex.bnl.gov"
[1] "46717.modex.bnl.gov"
[1] "46718.modex.bnl.gov"
[1] "46719.modex.bnl.gov"
[1] "46720.modex.bnl.gov"
[1] "46721.modex.bnl.gov"
[1] "46722.modex.bnl.gov"
[1] "46723.modex.bnl.gov"
[1] "46724.modex.bnl.gov"
[1] "46725.modex.bnl.gov"
[1] "46726.modex.bnl.gov"
[1] "46727.modex.bnl.gov"
[1] "46728.modex.bnl.gov"
[1] "46729.modex.bnl.gov"
[1] "46730.modex.bnl.gov"
[1] "46731.modex.bnl.gov"
[1] "46732.modex.bnl.gov"
[1] "46733.modex.bnl.gov"
[1] "46734.modex.bnl.gov"
[1] "46735.modex.bnl.gov"
[1] "46736.modex.bnl.gov"
[1] "46737.modex.bnl.gov"
[1] "46738.modex.bnl.gov"
[1] "46739.modex.bnl.gov"
[1] "46740.modex.bnl.gov"
[1] "46741.modex.bnl.gov"
[1] "46742.modex.bnl.gov"
[1] "46743.modex.bnl.gov"
[1] "46744.modex.bnl.gov"
[1] "46745.modex.bnl.gov"
[1] "46746.modex.bnl.gov"
[1] "46747.modex.bnl.gov"
[1] "46748.modex.bnl.gov"
[1] "46749.modex.bnl.gov"
[1] "46750.modex.bnl.gov"
[1] "46751.modex.bnl.gov"
[1] "46752.modex.bnl.gov"
[1] "46753.modex.bnl.gov"
[1] "46754.modex.bnl.gov"
[1] "46755.modex.bnl.gov"
[1] "46756.modex.bnl.gov"
[1] "46757.modex.bnl.gov"
[1] "46758.modex.bnl.gov"
[1] "46759.modex.bnl.gov"
[1] "46760.modex.bnl.gov"
[1] "46761.modex.bnl.gov"
[1] "46762.modex.bnl.gov"
[1] "46763.modex.bnl.gov"
[1] "46764.modex.bnl.gov"
[1] "46765.modex.bnl.gov"
[1] "46766.modex.bnl.gov"
[1] "46767.modex.bnl.gov"
[1] "46768.modex.bnl.gov"
[1] "46769.modex.bnl.gov"
[1] "46770.modex.bnl.gov"
[1] "46771.modex.bnl.gov"
[1] "46772.modex.bnl.gov"
[1] "46773.modex.bnl.gov"
[1] "46774.modex.bnl.gov"
[1] "46775.modex.bnl.gov"
[1] "46776.modex.bnl.gov"
[1] "46777.modex.bnl.gov"
[1] "46778.modex.bnl.gov"
[1] "46779.modex.bnl.gov"
[1] "46780.modex.bnl.gov"
[1] "46781.modex.bnl.gov"
[1] "46782.modex.bnl.gov"
[1] "46783.modex.bnl.gov"
[1] "46784.modex.bnl.gov"
[1] "46785.modex.bnl.gov"
[1] "46786.modex.bnl.gov"
[1] "46787.modex.bnl.gov"
[1] "46788.modex.bnl.gov"
[1] "46789.modex.bnl.gov"
[1] "46790.modex.bnl.gov"
[1] "46791.modex.bnl.gov"
[1] "46792.modex.bnl.gov"
[1] "46793.modex.bnl.gov"
[1] "46794.modex.bnl.gov"
[1] "46795.modex.bnl.gov"
[1] "46796.modex.bnl.gov"

2016-04-02 11:45:45 DEBUG  [start.model.runs] : 
   Waiting for the following jobs: 46536.modex.bnl.gov 46537.modex.bnl.gov 
   46538.modex.bnl.gov 46539.modex.bnl.gov 46540.modex.bnl.gov 
   46541.modex.bnl.gov 46542.modex.bnl.gov 46543.modex.bnl.gov 
   46544.modex.bnl.gov 46545.modex.bnl.gov 46546.modex.bnl.gov 
   46547.modex.bnl.gov 46548.modex.bnl.gov 46549.modex.bnl.gov 
   46550.modex.bnl.gov 46551.modex.bnl.gov 46552.modex.bnl.gov 
   46553.modex.bnl.gov 46554.modex.bnl.gov 46555.modex.bnl.gov 
   46556.modex.bnl.gov 46557.modex.bnl.gov 46558.modex.bnl.gov 
   46559.modex.bnl.gov 46560.modex.bnl.gov 46561.modex.bnl.gov 
   46562.modex.bnl.gov 46563.modex.bnl.gov 46564.modex.bnl.gov 
   46565.modex.bnl.gov 46566.modex.bnl.gov 46567.modex.bnl.gov 
   46568.modex.bnl.gov 46569.modex.bnl.gov 46570.modex.bnl.gov 
   46571.modex.bnl.gov 46572.modex.bnl.gov 46573.modex.bnl.gov 
   46574.modex.bnl.gov 46575.modex.bnl.gov 46576.modex.bnl.gov 
   46577.modex.bnl.gov 46578.modex.bnl.gov 46579.modex.bnl.gov 
   46580.modex.bnl.gov 46581.modex.bnl.gov 46582.modex.bnl.gov 
   46583.modex.bnl.gov 46584.modex.bnl.gov 46585.modex.bnl.gov 
   46586.modex.bnl.gov 46587.modex.bnl.gov 46588.modex.bnl.gov 
   46589.modex.bnl.gov 46590.modex.bnl.gov 46591.modex.bnl.gov 
   46592.modex.bnl.gov 46593.modex.bnl.gov 46594.modex.bnl.gov 
   46595.modex.bnl.gov 46596.modex.bnl.gov 46597.modex.bnl.gov 
   46598.modex.bnl.gov 46599.modex.bnl.gov 46600.modex.bnl.gov 
   46601.modex.bnl.gov 46602.modex.bnl.gov 46603.modex.bnl.gov 
   46604.modex.bnl.gov 46605.modex.bnl.gov 46606.modex.bnl.gov 
   46607.modex.bnl.gov 46608.modex.bnl.gov 46609.modex.bnl.gov 
   46610.modex.bnl.gov 46611.modex.bnl.gov 46612.modex.bnl.gov 
   46613.modex.bnl.gov 46614.modex.bnl.gov 46615.modex.bnl.gov 
   46616.modex.bnl.gov 46617.modex.bnl.gov 46618.modex.bnl.gov 
   46619.modex.bnl.gov 46620.modex.bnl.gov 46621.modex.bnl.gov 
   46622.modex.bnl.gov 46623.modex.bnl.gov 46624.modex.bnl.gov 
   46625.modex.bnl.gov 46626.modex.bnl.gov 46627.modex.bnl.gov 
   46628.modex.bnl.gov 46629.modex.bnl.gov 46630.modex.bnl.gov 
   46631.modex.bnl.gov 46632.modex.bnl.gov 46633.modex.bnl.gov 
   46634.modex.bnl.gov 46635.modex.bnl.gov 46636.modex.bnl.gov 
   46637.modex.bnl.gov 46638.modex.bnl.gov 46639.modex.bnl.gov 
   46640.modex.bnl.gov 46641.modex.bnl.gov 46642.modex.bnl.gov 
   46643.modex.bnl.gov 46644.modex.bnl.gov 46645.modex.bnl.gov 
   46646.modex.bnl.gov 46647.modex.bnl.gov 46648.modex.bnl.gov 
   46649.modex.bnl.gov 46650.modex.bnl.gov 46651.modex.bnl.gov 
   46652.modex.bnl.gov 46653.modex.bnl.gov 46654.modex.bnl.gov 
   46655.modex.bnl.gov 46656.modex.bnl.gov 46657.modex.bnl.gov 
   46658.modex.bnl.gov 46659.modex.bnl.gov 46660.modex.bnl.gov 
   46661.modex.bnl.gov 46662.modex.bnl.gov 46663.modex.bnl.gov 
   46664.modex.bnl.gov 46665.modex.bnl.gov 46666.modex.bnl.gov 
   46667.modex.bnl.gov 46668.modex.bnl.gov 46669.modex.bnl.gov 
   46670.modex.bnl.gov 46671.modex.bnl.gov 46672.modex.bnl.gov 
   46673.modex.bnl.gov 46674.modex.bnl.gov 46675.modex.bnl.gov 
   46676.modex.bnl.gov 46677.modex.bnl.gov 46678.modex.bnl.gov 
   46679.modex.bnl.gov 46680.modex.bnl.gov 46681.modex.bnl.gov 
   46682.modex.bnl.gov 46683.modex.bnl.gov 46684.modex.bnl.gov 
   46685.modex.bnl.gov 46686.modex.bnl.gov 46687.modex.bnl.gov 
   46688.modex.bnl.gov 46689.modex.bnl.gov 46690.modex.bnl.gov 
   46691.modex.bnl.gov 46692.modex.bnl.gov 46693.modex.bnl.gov 
   46694.modex.bnl.gov 46695.modex.bnl.gov 46696.modex.bnl.gov 
   46697.modex.bnl.gov 46698.modex.bnl.gov 46699.modex.bnl.gov 
   46700.modex.bnl.gov 46701.modex.bnl.gov 46702.modex.bnl.gov 
   46703.modex.bnl.gov 46704.modex.bnl.gov 46705.modex.bnl.gov 
   46706.modex.bnl.gov 46707.modex.bnl.gov 46708.modex.bnl.gov 
   46709.modex.bnl.gov 46710.modex.bnl.gov 46711.modex.bnl.gov 
   46712.modex.bnl.gov 46713.modex.bnl.gov 46714.modex.bnl.gov 
   46715.modex.bnl.gov 46716.modex.bnl.gov 46717.modex.bnl.gov 
   46718.modex.bnl.gov 46719.modex.bnl.gov 46720.modex.bnl.gov 
   46721.modex.bnl.gov 46722.modex.bnl.gov 46723.modex.bnl.gov 
   46724.modex.bnl.gov 46725.modex.bnl.gov 46726.modex.bnl.gov 
   46727.modex.bnl.gov 46728.modex.bnl.gov 46729.modex.bnl.gov 
   46730.modex.bnl.gov 46731.modex.bnl.gov 46732.modex.bnl.gov 
   46733.modex.bnl.gov 46734.modex.bnl.gov 46735.modex.bnl.gov 
   46736.modex.bnl.gov 46737.modex.bnl.gov 46738.modex.bnl.gov 
   46739.modex.bnl.gov 46740.modex.bnl.gov 46741.modex.bnl.gov 
   46742.modex.bnl.gov 46743.modex.bnl.gov 46744.modex.bnl.gov 
   46745.modex.bnl.gov 46746.modex.bnl.gov 46747.modex.bnl.gov 
   46748.modex.bnl.gov 46749.modex.bnl.gov 46750.modex.bnl.gov 
   46751.modex.bnl.gov 46752.modex.bnl.gov 46753.modex.bnl.gov 
   46754.modex.bnl.gov 46755.modex.bnl.gov 46756.modex.bnl.gov 
   46757.modex.bnl.gov 46758.modex.bnl.gov 46759.modex.bnl.gov 
   46760.modex.bnl.gov 46761.modex.bnl.gov 46762.modex.bnl.gov 
   46763.modex.bnl.gov 46764.modex.bnl.gov 46765.modex.bnl.gov 
   46766.modex.bnl.gov 46767.modex.bnl.gov 46768.modex.bnl.gov 
   46769.modex.bnl.gov 46770.modex.bnl.gov 46771.modex.bnl.gov 
   46772.modex.bnl.gov 46773.modex.bnl.gov 46774.modex.bnl.gov 
   46775.modex.bnl.gov 46776.modex.bnl.gov 46777.modex.bnl.gov 
   46778.modex.bnl.gov 46779.modex.bnl.gov 46780.modex.bnl.gov 
   46781.modex.bnl.gov 46782.modex.bnl.gov 46783.modex.bnl.gov 
   46784.modex.bnl.gov 46785.modex.bnl.gov 46786.modex.bnl.gov 
   46787.modex.bnl.gov 46788.modex.bnl.gov 46789.modex.bnl.gov 
   46790.modex.bnl.gov 46791.modex.bnl.gov 46792.modex.bnl.gov 
   46793.modex.bnl.gov 46794.modex.bnl.gov 46795.modex.bnl.gov 
   46796.modex.bnl.gov 
qstat: Unknown Job Id Error 46536.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46536.modex.bnl.gov for run 2000010516 finished 
qstat: Unknown Job Id Error 46537.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46537.modex.bnl.gov for run 2000010517 finished 

  |                                                                            
  |=                                                                     |   1%qstat: Unknown Job Id Error 46538.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46538.modex.bnl.gov for run 2000010518 finished 
qstat: Unknown Job Id Error 46539.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46539.modex.bnl.gov for run 2000010519 finished 

  |                                                                            
  |=                                                                     |   2%qstat: Unknown Job Id Error 46540.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46540.modex.bnl.gov for run 2000010520 finished 
qstat: Unknown Job Id Error 46541.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46541.modex.bnl.gov for run 2000010521 finished 

  |                                                                            
  |==                                                                    |   2%qstat: Unknown Job Id Error 46542.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46542.modex.bnl.gov for run 2000010522 finished 

  |                                                                            
  |==                                                                    |   3%qstat: Unknown Job Id Error 46543.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46543.modex.bnl.gov for run 2000010523 finished 
qstat: Unknown Job Id Error 46544.modex.bnl.gov
2016-04-02 12:07:43 DEBUG  [start.model.runs] : 
   Job 46544.modex.bnl.gov for run 2000010524 finished 
qstat: Unknown Job Id Error 46551.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46551.modex.bnl.gov for run 2000010531 finished 

  |                                                                            
  |===                                                                   |   4%qstat: Unknown Job Id Error 46552.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46552.modex.bnl.gov for run 2000010532 finished 
qstat: Unknown Job Id Error 46553.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46553.modex.bnl.gov for run 2000010533 finished 

  |                                                                            
  |===                                                                   |   5%qstat: Unknown Job Id Error 46554.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46554.modex.bnl.gov for run 2000010534 finished 
qstat: Unknown Job Id Error 46555.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46555.modex.bnl.gov for run 2000010535 finished 

  |                                                                            
  |====                                                                  |   5%qstat: Unknown Job Id Error 46556.modex.bnl.gov
2016-04-02 12:08:02 DEBUG  [start.model.runs] : 
   Job 46556.modex.bnl.gov for run 2000010536 finished 

  |                                                                            
  |====                                                                  |   6%qstat: Unknown Job Id Error 46545.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46545.modex.bnl.gov for run 2000010525 finished 
qstat: Unknown Job Id Error 46546.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46546.modex.bnl.gov for run 2000010526 finished 

  |                                                                            
  |=====                                                                 |   7%qstat: Unknown Job Id Error 46547.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46547.modex.bnl.gov for run 2000010527 finished 
qstat: Unknown Job Id Error 46548.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46548.modex.bnl.gov for run 2000010528 finished 
qstat: Unknown Job Id Error 46549.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46549.modex.bnl.gov for run 2000010529 finished 

  |                                                                            
  |=====                                                                 |   8%qstat: Unknown Job Id Error 46550.modex.bnl.gov
2016-04-02 12:08:19 DEBUG  [start.model.runs] : 
   Job 46550.modex.bnl.gov for run 2000010530 finished 

  |                                                                            
  |======                                                                |   8%qstat: Unknown Job Id Error 46557.modex.bnl.gov
2016-04-02 12:08:37 DEBUG  [start.model.runs] : 
   Job 46557.modex.bnl.gov for run 2000010537 finished 
qstat: Unknown Job Id Error 46558.modex.bnl.gov
2016-04-02 12:08:37 DEBUG  [start.model.runs] : 
   Job 46558.modex.bnl.gov for run 2000010538 finished 

  |                                                                            
  |======                                                                |   9%qstat: Unknown Job Id Error 46559.modex.bnl.gov
2016-04-02 12:08:37 DEBUG  [start.model.runs] : 
   Job 46559.modex.bnl.gov for run 2000010539 finished 
qstat: Unknown Job Id Error 46560.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46560.modex.bnl.gov for run 2000010540 finished 

  |                                                                            
  |=======                                                               |  10%qstat: Unknown Job Id Error 46561.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46561.modex.bnl.gov for run 2000010541 finished 
qstat: Unknown Job Id Error 46562.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46562.modex.bnl.gov for run 2000010542 finished 
qstat: Unknown Job Id Error 46563.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46563.modex.bnl.gov for run 2000010543 finished 

  |                                                                            
  |========                                                              |  11%qstat: Unknown Job Id Error 46564.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46564.modex.bnl.gov for run 2000010544 finished 
qstat: Unknown Job Id Error 46565.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46565.modex.bnl.gov for run 2000010545 finished 
qstat: Unknown Job Id Error 46566.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46566.modex.bnl.gov for run 2000010546 finished 

  |                                                                            
  |========                                                              |  12%qstat: Unknown Job Id Error 46567.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46567.modex.bnl.gov for run 2000010547 finished 

  |                                                                            
  |=========                                                             |  12%qstat: Unknown Job Id Error 46568.modex.bnl.gov
2016-04-02 12:08:38 DEBUG  [start.model.runs] : 
   Job 46568.modex.bnl.gov for run 2000010548 finished 

  |                                                                            
  |=========                                                             |  13%qstat: Unknown Job Id Error 46569.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46569.modex.bnl.gov for run 2000010549 finished 
qstat: Unknown Job Id Error 46570.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46570.modex.bnl.gov for run 2000010550 finished 
qstat: Unknown Job Id Error 46571.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46571.modex.bnl.gov for run 2000010551 finished 

  |                                                                            
  |==========                                                            |  14%qstat: Unknown Job Id Error 46572.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46572.modex.bnl.gov for run 2000010552 finished 
qstat: Unknown Job Id Error 46573.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46573.modex.bnl.gov for run 2000010553 finished 

  |                                                                            
  |==========                                                            |  15%qstat: Unknown Job Id Error 46574.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46574.modex.bnl.gov for run 2000010554 finished 
qstat: Unknown Job Id Error 46575.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46575.modex.bnl.gov for run 2000010555 finished 

  |                                                                            
  |===========                                                           |  15%qstat: Unknown Job Id Error 46576.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46576.modex.bnl.gov for run 2000010556 finished 

  |                                                                            
  |===========                                                           |  16%qstat: Unknown Job Id Error 46577.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46577.modex.bnl.gov for run 2000010557 finished 
qstat: Unknown Job Id Error 46578.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46578.modex.bnl.gov for run 2000010558 finished 

  |                                                                            
  |============                                                          |  16%qstat: Unknown Job Id Error 46579.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46579.modex.bnl.gov for run 2000010559 finished 

  |                                                                            
  |============                                                          |  17%qstat: Unknown Job Id Error 46580.modex.bnl.gov
2016-04-02 12:08:57 DEBUG  [start.model.runs] : 
   Job 46580.modex.bnl.gov for run 2000010560 finished 
qstat: Unknown Job Id Error 46581.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46581.modex.bnl.gov for run 2000010561 finished 

  |                                                                            
  |============                                                          |  18%qstat: Unknown Job Id Error 46582.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46582.modex.bnl.gov for run 2000010562 finished 

  |                                                                            
  |=============                                                         |  18%qstat: Unknown Job Id Error 46583.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46583.modex.bnl.gov for run 2000010563 finished 
qstat: Unknown Job Id Error 46584.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46584.modex.bnl.gov for run 2000010564 finished 

  |                                                                            
  |=============                                                         |  19%qstat: Unknown Job Id Error 46585.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46585.modex.bnl.gov for run 2000010565 finished 
qstat: Unknown Job Id Error 46586.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46586.modex.bnl.gov for run 2000010566 finished 

  |                                                                            
  |==============                                                        |  20%qstat: Unknown Job Id Error 46587.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46587.modex.bnl.gov for run 2000010567 finished 
qstat: Unknown Job Id Error 46588.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46588.modex.bnl.gov for run 2000010568 finished 
qstat: Unknown Job Id Error 46589.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46589.modex.bnl.gov for run 2000010569 finished 

  |                                                                            
  |==============                                                        |  21%qstat: Unknown Job Id Error 46590.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46590.modex.bnl.gov for run 2000010570 finished 

  |                                                                            
  |===============                                                       |  21%qstat: Unknown Job Id Error 46591.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46591.modex.bnl.gov for run 2000010571 finished 
qstat: Unknown Job Id Error 46592.modex.bnl.gov
2016-04-02 12:09:33 DEBUG  [start.model.runs] : 
   Job 46592.modex.bnl.gov for run 2000010572 finished 

  |                                                                            
  |===============                                                       |  22%qstat: Unknown Job Id Error 46593.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46593.modex.bnl.gov for run 2000010573 finished 

  |                                                                            
  |================                                                      |  22%qstat: Unknown Job Id Error 46594.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46594.modex.bnl.gov for run 2000010574 finished 

  |                                                                            
  |================                                                      |  23%qstat: Unknown Job Id Error 46595.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46595.modex.bnl.gov for run 2000010575 finished 
qstat: Unknown Job Id Error 46596.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46596.modex.bnl.gov for run 2000010576 finished 
qstat: Unknown Job Id Error 46597.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46597.modex.bnl.gov for run 2000010577 finished 

  |                                                                            
  |=================                                                     |  24%qstat: Unknown Job Id Error 46598.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46598.modex.bnl.gov for run 2000010578 finished 
qstat: Unknown Job Id Error 46599.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46599.modex.bnl.gov for run 2000010579 finished 

  |                                                                            
  |=================                                                     |  25%qstat: Unknown Job Id Error 46600.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46600.modex.bnl.gov for run 2000010580 finished 
qstat: Unknown Job Id Error 46601.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46601.modex.bnl.gov for run 2000010581 finished 

  |                                                                            
  |==================                                                    |  25%qstat: Unknown Job Id Error 46602.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46602.modex.bnl.gov for run 2000010582 finished 

  |                                                                            
  |==================                                                    |  26%qstat: Unknown Job Id Error 46603.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46603.modex.bnl.gov for run 2000010583 finished 
qstat: Unknown Job Id Error 46604.modex.bnl.gov
2016-04-02 12:10:08 DEBUG  [start.model.runs] : 
   Job 46604.modex.bnl.gov for run 2000010584 finished 

  |                                                                            
  |===================                                                   |  26%qstat: Unknown Job Id Error 46605.modex.bnl.gov
2016-04-02 12:10:41 DEBUG  [start.model.runs] : 
   Job 46605.modex.bnl.gov for run 2000010585 finished 

  |                                                                            
  |===================                                                   |  27%qstat: Unknown Job Id Error 46606.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46606.modex.bnl.gov for run 2000010586 finished 
qstat: Unknown Job Id Error 46607.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46607.modex.bnl.gov for run 2000010587 finished 

  |                                                                            
  |===================                                                   |  28%qstat: Unknown Job Id Error 46608.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46608.modex.bnl.gov for run 2000010588 finished 

  |                                                                            
  |====================                                                  |  28%qstat: Unknown Job Id Error 46609.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46609.modex.bnl.gov for run 2000010589 finished 
qstat: Unknown Job Id Error 46610.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46610.modex.bnl.gov for run 2000010590 finished 

  |                                                                            
  |====================                                                  |  29%qstat: Unknown Job Id Error 46611.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46611.modex.bnl.gov for run 2000010591 finished 
qstat: Unknown Job Id Error 46612.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46612.modex.bnl.gov for run 2000010592 finished 

  |                                                                            
  |=====================                                                 |  30%qstat: Unknown Job Id Error 46613.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46613.modex.bnl.gov for run 2000010593 finished 
qstat: Unknown Job Id Error 46614.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46614.modex.bnl.gov for run 2000010594 finished 
qstat: Unknown Job Id Error 46615.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46615.modex.bnl.gov for run 2000010595 finished 

  |                                                                            
  |=====================                                                 |  31%qstat: Unknown Job Id Error 46616.modex.bnl.gov
2016-04-02 12:10:44 DEBUG  [start.model.runs] : 
   Job 46616.modex.bnl.gov for run 2000010596 finished 

  |                                                                            
  |======================                                                |  31%qstat: Unknown Job Id Error 46617.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46617.modex.bnl.gov for run 2000010597 finished 
qstat: Unknown Job Id Error 46618.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46618.modex.bnl.gov for run 2000010598 finished 

  |                                                                            
  |======================                                                |  32%qstat: Unknown Job Id Error 46619.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46619.modex.bnl.gov for run 2000010599 finished 

  |                                                                            
  |=======================                                               |  32%qstat: Unknown Job Id Error 46620.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46620.modex.bnl.gov for run 2000010600 finished 

  |                                                                            
  |=======================                                               |  33%qstat: Unknown Job Id Error 46621.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46621.modex.bnl.gov for run 2000010601 finished 
qstat: Unknown Job Id Error 46622.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46622.modex.bnl.gov for run 2000010602 finished 
qstat: Unknown Job Id Error 46623.modex.bnl.gov
2016-04-02 12:11:01 DEBUG  [start.model.runs] : 
   Job 46623.modex.bnl.gov for run 2000010603 finished 

  |                                                                            
  |========================                                              |  34%qstat: Unknown Job Id Error 46624.modex.bnl.gov
2016-04-02 12:11:02 DEBUG  [start.model.runs] : 
   Job 46624.modex.bnl.gov for run 2000010604 finished 
qstat: Unknown Job Id Error 46625.modex.bnl.gov
2016-04-02 12:11:02 DEBUG  [start.model.runs] : 
   Job 46625.modex.bnl.gov for run 2000010605 finished 
qstat: Unknown Job Id Error 46626.modex.bnl.gov
2016-04-02 12:11:02 DEBUG  [start.model.runs] : 
   Job 46626.modex.bnl.gov for run 2000010606 finished 

  |                                                                            
  |========================                                              |  35%qstat: Unknown Job Id Error 46627.modex.bnl.gov
2016-04-02 12:11:02 DEBUG  [start.model.runs] : 
   Job 46627.modex.bnl.gov for run 2000010607 finished 

  |                                                                            
  |=========================                                             |  35%qstat: Unknown Job Id Error 46628.modex.bnl.gov
2016-04-02 12:11:02 DEBUG  [start.model.runs] : 
   Job 46628.modex.bnl.gov for run 2000010608 finished 

  |                                                                            
  |=========================                                             |  36%qstat: Unknown Job Id Error 46629.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46629.modex.bnl.gov for run 2000010609 finished 
qstat: Unknown Job Id Error 46630.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46630.modex.bnl.gov for run 2000010610 finished 
qstat: Unknown Job Id Error 46631.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46631.modex.bnl.gov for run 2000010611 finished 

  |                                                                            
  |==========================                                            |  37%qstat: Unknown Job Id Error 46632.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46632.modex.bnl.gov for run 2000010612 finished 
qstat: Unknown Job Id Error 46633.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46633.modex.bnl.gov for run 2000010613 finished 

  |                                                                            
  |==========================                                            |  38%qstat: Unknown Job Id Error 46634.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46634.modex.bnl.gov for run 2000010614 finished 

  |                                                                            
  |===========================                                           |  38%qstat: Unknown Job Id Error 46635.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46635.modex.bnl.gov for run 2000010615 finished 
qstat: Unknown Job Id Error 46636.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46636.modex.bnl.gov for run 2000010616 finished 

  |                                                                            
  |===========================                                           |  39%qstat: Unknown Job Id Error 46637.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46637.modex.bnl.gov for run 2000010617 finished 
qstat: Unknown Job Id Error 46638.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46638.modex.bnl.gov for run 2000010618 finished 

  |                                                                            
  |============================                                          |  39%qstat: Unknown Job Id Error 46639.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46639.modex.bnl.gov for run 2000010619 finished 

  |                                                                            
  |============================                                          |  40%qstat: Unknown Job Id Error 46640.modex.bnl.gov
2016-04-02 12:11:34 DEBUG  [start.model.runs] : 
   Job 46640.modex.bnl.gov for run 2000010620 finished 
qstat: Unknown Job Id Error 46641.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46641.modex.bnl.gov for run 2000010621 finished 

  |                                                                            
  |============================                                          |  41%qstat: Unknown Job Id Error 46642.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46642.modex.bnl.gov for run 2000010622 finished 

  |                                                                            
  |=============================                                         |  41%qstat: Unknown Job Id Error 46643.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46643.modex.bnl.gov for run 2000010623 finished 
qstat: Unknown Job Id Error 46644.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46644.modex.bnl.gov for run 2000010624 finished 

  |                                                                            
  |=============================                                         |  42%qstat: Unknown Job Id Error 46645.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46645.modex.bnl.gov for run 2000010625 finished 

  |                                                                            
  |==============================                                        |  42%qstat: Unknown Job Id Error 46646.modex.bnl.gov
2016-04-02 12:12:05 DEBUG  [start.model.runs] : 
   Job 46646.modex.bnl.gov for run 2000010626 finished 

  |                                                                            
  |==============================                                        |  43%qstat: Unknown Job Id Error 46647.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46647.modex.bnl.gov for run 2000010627 finished 
qstat: Unknown Job Id Error 46648.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46648.modex.bnl.gov for run 2000010628 finished 
qstat: Unknown Job Id Error 46649.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46649.modex.bnl.gov for run 2000010629 finished 

  |                                                                            
  |===============================                                       |  44%qstat: Unknown Job Id Error 46650.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46650.modex.bnl.gov for run 2000010630 finished 
qstat: Unknown Job Id Error 46651.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46651.modex.bnl.gov for run 2000010631 finished 
qstat: Unknown Job Id Error 46652.modex.bnl.gov
2016-04-02 12:12:06 DEBUG  [start.model.runs] : 
   Job 46652.modex.bnl.gov for run 2000010632 finished 

  |                                                                            
  |===============================                                       |  45%qstat: Unknown Job Id Error 46659.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46659.modex.bnl.gov for run 2000010639 finished 

  |                                                                            
  |================================                                      |  45%qstat: Unknown Job Id Error 46660.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46660.modex.bnl.gov for run 2000010640 finished 

  |                                                                            
  |================================                                      |  46%qstat: Unknown Job Id Error 46661.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46661.modex.bnl.gov for run 2000010641 finished 
qstat: Unknown Job Id Error 46662.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46662.modex.bnl.gov for run 2000010642 finished 
qstat: Unknown Job Id Error 46663.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46663.modex.bnl.gov for run 2000010643 finished 

  |                                                                            
  |=================================                                     |  47%qstat: Unknown Job Id Error 46664.modex.bnl.gov
2016-04-02 12:12:37 DEBUG  [start.model.runs] : 
   Job 46664.modex.bnl.gov for run 2000010644 finished 
qstat: Unknown Job Id Error 46653.modex.bnl.gov
2016-04-02 12:12:51 DEBUG  [start.model.runs] : 
   Job 46653.modex.bnl.gov for run 2000010633 finished 

  |                                                                            
  |=================================                                     |  48%qstat: Unknown Job Id Error 46654.modex.bnl.gov
2016-04-02 12:12:51 DEBUG  [start.model.runs] : 
   Job 46654.modex.bnl.gov for run 2000010634 finished 

  |                                                                            
  |==================================                                    |  48%qstat: Unknown Job Id Error 46655.modex.bnl.gov
2016-04-02 12:12:51 DEBUG  [start.model.runs] : 
   Job 46655.modex.bnl.gov for run 2000010635 finished 
qstat: Unknown Job Id Error 46656.modex.bnl.gov
2016-04-02 12:12:52 DEBUG  [start.model.runs] : 
   Job 46656.modex.bnl.gov for run 2000010636 finished 

  |                                                                            
  |==================================                                    |  49%qstat: Unknown Job Id Error 46657.modex.bnl.gov
2016-04-02 12:12:52 DEBUG  [start.model.runs] : 
   Job 46657.modex.bnl.gov for run 2000010637 finished 
qstat: Unknown Job Id Error 46658.modex.bnl.gov
2016-04-02 12:12:52 DEBUG  [start.model.runs] : 
   Job 46658.modex.bnl.gov for run 2000010638 finished 

  |                                                                            
  |===================================                                   |  49%qstat: Unknown Job Id Error 46665.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46665.modex.bnl.gov for run 2000010645 finished 

  |                                                                            
  |===================================                                   |  50%qstat: Unknown Job Id Error 46666.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46666.modex.bnl.gov for run 2000010646 finished 
qstat: Unknown Job Id Error 46667.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46667.modex.bnl.gov for run 2000010647 finished 

  |                                                                            
  |===================================                                   |  51%qstat: Unknown Job Id Error 46668.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46668.modex.bnl.gov for run 2000010648 finished 

  |                                                                            
  |====================================                                  |  51%qstat: Unknown Job Id Error 46669.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46669.modex.bnl.gov for run 2000010649 finished 
qstat: Unknown Job Id Error 46670.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46670.modex.bnl.gov for run 2000010650 finished 

  |                                                                            
  |====================================                                  |  52%qstat: Unknown Job Id Error 46671.modex.bnl.gov
2016-04-02 12:13:21 DEBUG  [start.model.runs] : 
   Job 46671.modex.bnl.gov for run 2000010651 finished 
qstat: Unknown Job Id Error 46672.modex.bnl.gov
2016-04-02 12:13:22 DEBUG  [start.model.runs] : 
   Job 46672.modex.bnl.gov for run 2000010652 finished 

  |                                                                            
  |=====================================                                 |  52%qstat: Unknown Job Id Error 46673.modex.bnl.gov
2016-04-02 12:13:22 DEBUG  [start.model.runs] : 
   Job 46673.modex.bnl.gov for run 2000010653 finished 

  |                                                                            
  |=====================================                                 |  53%qstat: Unknown Job Id Error 46674.modex.bnl.gov
2016-04-02 12:13:22 DEBUG  [start.model.runs] : 
   Job 46674.modex.bnl.gov for run 2000010654 finished 
qstat: Unknown Job Id Error 46675.modex.bnl.gov
2016-04-02 12:13:22 DEBUG  [start.model.runs] : 
   Job 46675.modex.bnl.gov for run 2000010655 finished 

  |                                                                            
  |======================================                                |  54%qstat: Unknown Job Id Error 46676.modex.bnl.gov
2016-04-02 12:13:22 DEBUG  [start.model.runs] : 
   Job 46676.modex.bnl.gov for run 2000010656 finished 
qstat: Unknown Job Id Error 46677.modex.bnl.gov
2016-04-02 12:13:50 DEBUG  [start.model.runs] : 
   Job 46677.modex.bnl.gov for run 2000010657 finished 
qstat: Unknown Job Id Error 46678.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46678.modex.bnl.gov for run 2000010658 finished 

  |                                                                            
  |======================================                                |  55%qstat: Unknown Job Id Error 46679.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46679.modex.bnl.gov for run 2000010659 finished 

  |                                                                            
  |=======================================                               |  55%qstat: Unknown Job Id Error 46680.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46680.modex.bnl.gov for run 2000010660 finished 

  |                                                                            
  |=======================================                               |  56%qstat: Unknown Job Id Error 46681.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46681.modex.bnl.gov for run 2000010661 finished 
qstat: Unknown Job Id Error 46682.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46682.modex.bnl.gov for run 2000010662 finished 
qstat: Unknown Job Id Error 46683.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46683.modex.bnl.gov for run 2000010663 finished 

  |                                                                            
  |========================================                              |  57%qstat: Unknown Job Id Error 46684.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46684.modex.bnl.gov for run 2000010664 finished 
qstat: Unknown Job Id Error 46685.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46685.modex.bnl.gov for run 2000010665 finished 
qstat: Unknown Job Id Error 46686.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46686.modex.bnl.gov for run 2000010666 finished 

  |                                                                            
  |========================================                              |  58%qstat: Unknown Job Id Error 46687.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46687.modex.bnl.gov for run 2000010667 finished 

  |                                                                            
  |=========================================                             |  58%qstat: Unknown Job Id Error 46688.modex.bnl.gov
2016-04-02 12:13:51 DEBUG  [start.model.runs] : 
   Job 46688.modex.bnl.gov for run 2000010668 finished 

  |                                                                            
  |=========================================                             |  59%qstat: Unknown Job Id Error 46689.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46689.modex.bnl.gov for run 2000010669 finished 
qstat: Unknown Job Id Error 46690.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46690.modex.bnl.gov for run 2000010670 finished 

  |                                                                            
  |==========================================                            |  59%qstat: Unknown Job Id Error 46691.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46691.modex.bnl.gov for run 2000010671 finished 

  |                                                                            
  |==========================================                            |  60%qstat: Unknown Job Id Error 46692.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46692.modex.bnl.gov for run 2000010672 finished 
qstat: Unknown Job Id Error 46693.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46693.modex.bnl.gov for run 2000010673 finished 

  |                                                                            
  |==========================================                            |  61%qstat: Unknown Job Id Error 46694.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46694.modex.bnl.gov for run 2000010674 finished 

  |                                                                            
  |===========================================                           |  61%qstat: Unknown Job Id Error 46695.modex.bnl.gov
2016-04-02 12:14:05 DEBUG  [start.model.runs] : 
   Job 46695.modex.bnl.gov for run 2000010675 finished 
qstat: Unknown Job Id Error 46696.modex.bnl.gov
2016-04-02 12:14:06 DEBUG  [start.model.runs] : 
   Job 46696.modex.bnl.gov for run 2000010676 finished 

  |                                                                            
  |===========================================                           |  62%qstat: Unknown Job Id Error 46697.modex.bnl.gov
2016-04-02 12:14:06 DEBUG  [start.model.runs] : 
   Job 46697.modex.bnl.gov for run 2000010677 finished 
qstat: Unknown Job Id Error 46698.modex.bnl.gov
2016-04-02 12:14:06 DEBUG  [start.model.runs] : 
   Job 46698.modex.bnl.gov for run 2000010678 finished 

  |                                                                            
  |============================================                          |  62%qstat: Unknown Job Id Error 46699.modex.bnl.gov
2016-04-02 12:14:06 DEBUG  [start.model.runs] : 
   Job 46699.modex.bnl.gov for run 2000010679 finished 

  |                                                                            
  |============================================                          |  63%qstat: Unknown Job Id Error 46700.modex.bnl.gov
2016-04-02 12:14:06 DEBUG  [start.model.runs] : 
   Job 46700.modex.bnl.gov for run 2000010680 finished 
qstat: Unknown Job Id Error 46701.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46701.modex.bnl.gov for run 2000010681 finished 

  |                                                                            
  |=============================================                         |  64%qstat: Unknown Job Id Error 46702.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46702.modex.bnl.gov for run 2000010682 finished 
qstat: Unknown Job Id Error 46703.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46703.modex.bnl.gov for run 2000010683 finished 
qstat: Unknown Job Id Error 46704.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46704.modex.bnl.gov for run 2000010684 finished 

  |                                                                            
  |=============================================                         |  65%qstat: Unknown Job Id Error 46705.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46705.modex.bnl.gov for run 2000010685 finished 

  |                                                                            
  |==============================================                        |  65%qstat: Unknown Job Id Error 46706.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46706.modex.bnl.gov for run 2000010686 finished 

  |                                                                            
  |==============================================                        |  66%qstat: Unknown Job Id Error 46707.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46707.modex.bnl.gov for run 2000010687 finished 
qstat: Unknown Job Id Error 46708.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46708.modex.bnl.gov for run 2000010688 finished 
qstat: Unknown Job Id Error 46709.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46709.modex.bnl.gov for run 2000010689 finished 

  |                                                                            
  |===============================================                       |  67%qstat: Unknown Job Id Error 46710.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46710.modex.bnl.gov for run 2000010690 finished 
qstat: Unknown Job Id Error 46711.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46711.modex.bnl.gov for run 2000010691 finished 
qstat: Unknown Job Id Error 46712.modex.bnl.gov
2016-04-02 12:14:46 DEBUG  [start.model.runs] : 
   Job 46712.modex.bnl.gov for run 2000010692 finished 

  |                                                                            
  |===============================================                       |  68%qstat: Unknown Job Id Error 46713.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46713.modex.bnl.gov for run 2000010693 finished 

  |                                                                            
  |================================================                      |  68%qstat: Unknown Job Id Error 46714.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46714.modex.bnl.gov for run 2000010694 finished 

  |                                                                            
  |================================================                      |  69%qstat: Unknown Job Id Error 46715.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46715.modex.bnl.gov for run 2000010695 finished 
qstat: Unknown Job Id Error 46716.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46716.modex.bnl.gov for run 2000010696 finished 

  |                                                                            
  |=================================================                     |  69%qstat: Unknown Job Id Error 46717.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46717.modex.bnl.gov for run 2000010697 finished 

  |                                                                            
  |=================================================                     |  70%qstat: Unknown Job Id Error 46718.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46718.modex.bnl.gov for run 2000010698 finished 
qstat: Unknown Job Id Error 46719.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46719.modex.bnl.gov for run 2000010699 finished 
qstat: Unknown Job Id Error 46720.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46720.modex.bnl.gov for run 2000010700 finished 

  |                                                                            
  |==================================================                    |  71%qstat: Unknown Job Id Error 46721.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46721.modex.bnl.gov for run 2000010701 finished 
qstat: Unknown Job Id Error 46722.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46722.modex.bnl.gov for run 2000010702 finished 

  |                                                                            
  |==================================================                    |  72%qstat: Unknown Job Id Error 46723.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46723.modex.bnl.gov for run 2000010703 finished 
qstat: Unknown Job Id Error 46724.modex.bnl.gov
2016-04-02 12:15:13 DEBUG  [start.model.runs] : 
   Job 46724.modex.bnl.gov for run 2000010704 finished 

  |                                                                            
  |===================================================                   |  72%qstat: Unknown Job Id Error 46725.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46725.modex.bnl.gov for run 2000010705 finished 

  |                                                                            
  |===================================================                   |  73%qstat: Unknown Job Id Error 46726.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46726.modex.bnl.gov for run 2000010706 finished 
qstat: Unknown Job Id Error 46727.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46727.modex.bnl.gov for run 2000010707 finished 

  |                                                                            
  |===================================================                   |  74%qstat: Unknown Job Id Error 46728.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46728.modex.bnl.gov for run 2000010708 finished 

  |                                                                            
  |====================================================                  |  74%qstat: Unknown Job Id Error 46729.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46729.modex.bnl.gov for run 2000010709 finished 
qstat: Unknown Job Id Error 46730.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46730.modex.bnl.gov for run 2000010710 finished 

  |                                                                            
  |====================================================                  |  75%qstat: Unknown Job Id Error 46731.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46731.modex.bnl.gov for run 2000010711 finished 

  |                                                                            
  |=====================================================                 |  75%qstat: Unknown Job Id Error 46732.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46732.modex.bnl.gov for run 2000010712 finished 
qstat: Unknown Job Id Error 46733.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46733.modex.bnl.gov for run 2000010713 finished 

  |                                                                            
  |=====================================================                 |  76%qstat: Unknown Job Id Error 46734.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46734.modex.bnl.gov for run 2000010714 finished 
qstat: Unknown Job Id Error 46735.modex.bnl.gov
2016-04-02 12:15:51 DEBUG  [start.model.runs] : 
   Job 46735.modex.bnl.gov for run 2000010715 finished 

  |                                                                            
  |======================================================                |  77%qstat: Unknown Job Id Error 46736.modex.bnl.gov
2016-04-02 12:15:52 DEBUG  [start.model.runs] : 
   Job 46736.modex.bnl.gov for run 2000010716 finished 
qstat: Unknown Job Id Error 46737.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46737.modex.bnl.gov for run 2000010717 finished 
qstat: Unknown Job Id Error 46738.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46738.modex.bnl.gov for run 2000010718 finished 

  |                                                                            
  |======================================================                |  78%qstat: Unknown Job Id Error 46739.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46739.modex.bnl.gov for run 2000010719 finished 

  |                                                                            
  |=======================================================               |  78%qstat: Unknown Job Id Error 46740.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46740.modex.bnl.gov for run 2000010720 finished 

  |                                                                            
  |=======================================================               |  79%qstat: Unknown Job Id Error 46741.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46741.modex.bnl.gov for run 2000010721 finished 
qstat: Unknown Job Id Error 46742.modex.bnl.gov
2016-04-02 12:16:28 DEBUG  [start.model.runs] : 
   Job 46742.modex.bnl.gov for run 2000010722 finished 

  |                                                                            
  |========================================================              |  79%qstat: Unknown Job Id Error 46743.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46743.modex.bnl.gov for run 2000010723 finished 

  |                                                                            
  |========================================================              |  80%qstat: Unknown Job Id Error 46744.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46744.modex.bnl.gov for run 2000010724 finished 
qstat: Unknown Job Id Error 46745.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46745.modex.bnl.gov for run 2000010725 finished 
qstat: Unknown Job Id Error 46746.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46746.modex.bnl.gov for run 2000010726 finished 

  |                                                                            
  |=========================================================             |  81%qstat: Unknown Job Id Error 46747.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46747.modex.bnl.gov for run 2000010727 finished 
qstat: Unknown Job Id Error 46748.modex.bnl.gov
2016-04-02 12:16:29 DEBUG  [start.model.runs] : 
   Job 46748.modex.bnl.gov for run 2000010728 finished 

  |                                                                            
  |=========================================================             |  82%qstat: Unknown Job Id Error 46749.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46749.modex.bnl.gov for run 2000010729 finished 
qstat: Unknown Job Id Error 46750.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46750.modex.bnl.gov for run 2000010730 finished 

  |                                                                            
  |==========================================================            |  82%qstat: Unknown Job Id Error 46751.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46751.modex.bnl.gov for run 2000010731 finished 

  |                                                                            
  |==========================================================            |  83%qstat: Unknown Job Id Error 46752.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46752.modex.bnl.gov for run 2000010732 finished 
qstat: Unknown Job Id Error 46753.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46753.modex.bnl.gov for run 2000010733 finished 

  |                                                                            
  |==========================================================            |  84%qstat: Unknown Job Id Error 46754.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46754.modex.bnl.gov for run 2000010734 finished 

  |                                                                            
  |===========================================================           |  84%qstat: Unknown Job Id Error 46755.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46755.modex.bnl.gov for run 2000010735 finished 
qstat: Unknown Job Id Error 46756.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46756.modex.bnl.gov for run 2000010736 finished 

  |                                                                            
  |===========================================================           |  85%qstat: Unknown Job Id Error 46757.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46757.modex.bnl.gov for run 2000010737 finished 

  |                                                                            
  |============================================================          |  85%qstat: Unknown Job Id Error 46758.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46758.modex.bnl.gov for run 2000010738 finished 
qstat: Unknown Job Id Error 46759.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46759.modex.bnl.gov for run 2000010739 finished 

  |                                                                            
  |============================================================          |  86%qstat: Unknown Job Id Error 46760.modex.bnl.gov
2016-04-02 12:16:41 DEBUG  [start.model.runs] : 
   Job 46760.modex.bnl.gov for run 2000010740 finished 
qstat: Unknown Job Id Error 46761.modex.bnl.gov
2016-04-02 12:17:15 DEBUG  [start.model.runs] : 
   Job 46761.modex.bnl.gov for run 2000010741 finished 

  |                                                                            
  |=============================================================         |  87%qstat: Unknown Job Id Error 46762.modex.bnl.gov
2016-04-02 12:17:15 DEBUG  [start.model.runs] : 
   Job 46762.modex.bnl.gov for run 2000010742 finished 
qstat: Unknown Job Id Error 46763.modex.bnl.gov
2016-04-02 12:17:15 DEBUG  [start.model.runs] : 
   Job 46763.modex.bnl.gov for run 2000010743 finished 
qstat: Unknown Job Id Error 46764.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46764.modex.bnl.gov for run 2000010744 finished 

  |                                                                            
  |=============================================================         |  88%qstat: Unknown Job Id Error 46765.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46765.modex.bnl.gov for run 2000010745 finished 

  |                                                                            
  |==============================================================        |  88%qstat: Unknown Job Id Error 46766.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46766.modex.bnl.gov for run 2000010746 finished 

  |                                                                            
  |==============================================================        |  89%qstat: Unknown Job Id Error 46767.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46767.modex.bnl.gov for run 2000010747 finished 
qstat: Unknown Job Id Error 46768.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46768.modex.bnl.gov for run 2000010748 finished 
qstat: Unknown Job Id Error 46769.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46769.modex.bnl.gov for run 2000010749 finished 

  |                                                                            
  |===============================================================       |  90%qstat: Unknown Job Id Error 46770.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46770.modex.bnl.gov for run 2000010750 finished 
qstat: Unknown Job Id Error 46771.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46771.modex.bnl.gov for run 2000010751 finished 
qstat: Unknown Job Id Error 46772.modex.bnl.gov
2016-04-02 12:17:16 DEBUG  [start.model.runs] : 
   Job 46772.modex.bnl.gov for run 2000010752 finished 

  |                                                                            
  |================================================================      |  91%qstat: Unknown Job Id Error 46773.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46773.modex.bnl.gov for run 2000010753 finished 
qstat: Unknown Job Id Error 46774.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46774.modex.bnl.gov for run 2000010754 finished 

  |                                                                            
  |================================================================      |  92%qstat: Unknown Job Id Error 46775.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46775.modex.bnl.gov for run 2000010755 finished 
qstat: Unknown Job Id Error 46776.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46776.modex.bnl.gov for run 2000010756 finished 

  |                                                                            
  |=================================================================     |  92%qstat: Unknown Job Id Error 46777.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46777.modex.bnl.gov for run 2000010757 finished 

  |                                                                            
  |=================================================================     |  93%qstat: Unknown Job Id Error 46778.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46778.modex.bnl.gov for run 2000010758 finished 
qstat: Unknown Job Id Error 46779.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46779.modex.bnl.gov for run 2000010759 finished 
qstat: Unknown Job Id Error 46780.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46780.modex.bnl.gov for run 2000010760 finished 

  |                                                                            
  |==================================================================    |  94%qstat: Unknown Job Id Error 46781.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46781.modex.bnl.gov for run 2000010761 finished 
qstat: Unknown Job Id Error 46782.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46782.modex.bnl.gov for run 2000010762 finished 

  |                                                                            
  |==================================================================    |  95%qstat: Unknown Job Id Error 46783.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46783.modex.bnl.gov for run 2000010763 finished 

  |                                                                            
  |===================================================================   |  95%qstat: Unknown Job Id Error 46784.modex.bnl.gov
2016-04-02 12:17:49 DEBUG  [start.model.runs] : 
   Job 46784.modex.bnl.gov for run 2000010764 finished 
qstat: Unknown Job Id Error 46785.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46785.modex.bnl.gov for run 2000010765 finished 

  |                                                                            
  |===================================================================   |  96%qstat: Unknown Job Id Error 46786.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46786.modex.bnl.gov for run 2000010766 finished 
qstat: Unknown Job Id Error 46787.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46787.modex.bnl.gov for run 2000010767 finished 

  |                                                                            
  |====================================================================  |  97%qstat: Unknown Job Id Error 46788.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46788.modex.bnl.gov for run 2000010768 finished 
qstat: Unknown Job Id Error 46789.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46789.modex.bnl.gov for run 2000010769 finished 
qstat: Unknown Job Id Error 46790.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46790.modex.bnl.gov for run 2000010770 finished 

  |                                                                            
  |====================================================================  |  98%qstat: Unknown Job Id Error 46791.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46791.modex.bnl.gov for run 2000010771 finished 

  |                                                                            
  |===================================================================== |  98%qstat: Unknown Job Id Error 46792.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46792.modex.bnl.gov for run 2000010772 finished 
qstat: Unknown Job Id Error 46793.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46793.modex.bnl.gov for run 2000010773 finished 

  |                                                                            
  |===================================================================== |  99%qstat: Unknown Job Id Error 46794.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46794.modex.bnl.gov for run 2000010774 finished 
qstat: Unknown Job Id Error 46795.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46795.modex.bnl.gov for run 2000010775 finished 

  |                                                                            
  |======================================================================| 100%qstat: Unknown Job Id Error 46796.modex.bnl.gov
2016-04-02 12:18:21 DEBUG  [start.model.runs] : 
   Job 46796.modex.bnl.gov for run 2000010776 finished 
> 
> # Get results of model runs
> if (status.check("OUTPUT") == 0) {
+   status.start("OUTPUT")
+   get.results(settings)
+   status.end()
+ }
2016-04-02 12:18:21 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010517 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:22 INFO   [read.output] : 
   NPP Mean: 10000 Median: 10000 
2016-04-02 12:18:22 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010518 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:22 INFO   [read.output] : 
   NPP Mean: 8880 Median: 8880 
2016-04-02 12:18:22 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010519 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:22 INFO   [read.output] : 
   NPP Mean: 7550 Median: 7550 
2016-04-02 12:18:22 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:22 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:22 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010520 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:22 INFO   [read.output] : 
   NPP Mean: 4500 Median: 4500 
2016-04-02 12:18:22 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010521 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 3120 Median: 3120 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010522 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 1980 Median: 1980 
2016-04-02 12:18:23 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait 
   autotrophic_respiration_fraction 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010523 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 5010 Median: 5010 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010524 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 5370 Median: 5370 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010525 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 5750 Median: 5750 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010526 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 6180 Median: 6180 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010527 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 6250 Median: 6250 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010528 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:23 INFO   [read.output] : 
   NPP Mean: 6310 Median: 6310 
2016-04-02 12:18:23 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait leaf_allocation_fraction 
2016-04-02 12:18:23 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010529 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010530 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010531 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010532 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010533 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010534 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait litter_decomposition_to_SOM 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010535 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:24 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:24 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010536 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010537 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010538 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010539 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010540 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6370 Median: 6370 
2016-04-02 12:18:25 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait litter_respiration_rate 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010541 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010542 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010543 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:25 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:25 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010544 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010545 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010546 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait wood_turnover_rate 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010547 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010548 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010549 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:26 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:26 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010550 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010551 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010552 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait som_respiration_rate 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010553 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010554 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010555 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010556 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:27 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:27 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010557 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010558 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait root_allocation_fraction 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010559 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010560 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010561 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010562 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010563 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:28 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:28 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010564 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:29 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait root_turnover_rate 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010565 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 453 Median: 453 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010566 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 2830 Median: 2830 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010567 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 5210 Median: 5210 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010568 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 6250 Median: 6250 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010569 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 6310 Median: 6310 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010570 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:29 INFO   [read.output] : 
   NPP Mean: 6340 Median: 6340 
2016-04-02 12:18:29 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait SLA 
2016-04-02 12:18:29 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010571 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 6110 Median: 6110 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010572 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 6100 Median: 6100 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010573 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 6050 Median: 6050 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010516 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010574 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 5980 Median: 5980 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010575 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 5840 Median: 5840 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010576 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 5790 Median: 5790 
2016-04-02 12:18:30 INFO   [read.sa.output] : 
   reading sensitivity analysis output for model run at 0.135 2.275 15.866 
   50 84.134 97.725 99.865 quantiles of trait leaf_turnover_rate 
2016-04-02 12:18:30 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010577 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010577 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:30 INFO   [read.output] : 
   NPP Mean: 3990 Median: 3990 
2016-04-02 12:18:30 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010578 
2016-04-02 12:18:30 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010578 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 6650 Median: 6650 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010579 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010579 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010580 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010580 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 7670 Median: 7670 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010581 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010581 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 5100 Median: 5100 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010582 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010582 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 3950 Median: 3950 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010583 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010583 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 6230 Median: 6230 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010584 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010584 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 7270 Median: 7270 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010585 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010585 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:31 INFO   [read.output] : 
   NPP Mean: 7040 Median: 7040 
2016-04-02 12:18:31 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010586 
2016-04-02 12:18:31 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010586 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 5030 Median: 5030 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010587 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010587 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 5890 Median: 5890 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010588 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010588 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 4330 Median: 4330 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010589 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010589 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 7970 Median: 7970 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010590 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010590 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 4210 Median: 4210 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010591 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010591 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 7180 Median: 7180 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010592 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010592 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 6360 Median: 6360 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010593 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010593 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:32 INFO   [read.output] : 
   NPP Mean: 1430 Median: 1430 
2016-04-02 12:18:32 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010594 
2016-04-02 12:18:32 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010594 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 4380 Median: 4380 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010595 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010595 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 5530 Median: 5530 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010596 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010596 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 7280 Median: 7280 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010597 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010597 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 6440 Median: 6440 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010598 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010598 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 5960 Median: 5960 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010599 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010599 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 4240 Median: 4240 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010600 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010600 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 5760 Median: 5760 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010601 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010601 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:33 INFO   [read.output] : 
   NPP Mean: 6930 Median: 6930 
2016-04-02 12:18:33 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010602 
2016-04-02 12:18:33 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010602 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 4050 Median: 4050 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010603 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010603 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 684 Median: 684 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010604 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010604 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 7340 Median: 7340 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010605 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010605 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 4510 Median: 4510 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010606 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010606 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 6330 Median: 6330 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010607 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010607 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 3430 Median: 3430 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010608 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010608 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 4930 Median: 4930 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010609 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010609 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:34 INFO   [read.output] : 
   NPP Mean: 6820 Median: 6820 
2016-04-02 12:18:34 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010610 
2016-04-02 12:18:34 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010610 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 5390 Median: 5390 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010611 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010611 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 6420 Median: 6420 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010612 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010612 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 6030 Median: 6030 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010613 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010613 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 6730 Median: 6730 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010614 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010614 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 8230 Median: 8230 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010615 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010615 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 6590 Median: 6590 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010616 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010616 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 2220 Median: 2220 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010617 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010617 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:35 INFO   [read.output] : 
   NPP Mean: 5340 Median: 5340 
2016-04-02 12:18:35 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010618 
2016-04-02 12:18:35 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010618 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 5240 Median: 5240 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010619 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010619 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 1380 Median: 1380 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010620 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010620 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 7120 Median: 7120 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010621 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010621 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 5370 Median: 5370 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010622 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010622 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 8840 Median: 8840 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010623 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010623 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010624 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010624 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 5680 Median: 5680 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010625 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010625 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:36 INFO   [read.output] : 
   NPP Mean: 7760 Median: 7760 
2016-04-02 12:18:36 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010626 
2016-04-02 12:18:36 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010626 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 6010 Median: 6010 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010627 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010627 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 4880 Median: 4880 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010628 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010628 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 4230 Median: 4230 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010629 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010629 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 5690 Median: 5690 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010630 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010630 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 2200 Median: 2200 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010631 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010631 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 7170 Median: 7170 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010632 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010632 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 8920 Median: 8920 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010633 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010633 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:37 INFO   [read.output] : 
   NPP Mean: 4370 Median: 4370 
2016-04-02 12:18:37 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010634 
2016-04-02 12:18:37 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010634 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 3390 Median: 3390 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010635 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010635 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 5830 Median: 5830 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010636 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010636 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 6230 Median: 6230 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010637 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010637 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 4390 Median: 4390 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010638 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010638 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 4730 Median: 4730 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010639 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010639 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 7050 Median: 7050 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010640 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010640 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 2570 Median: 2570 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010641 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010641 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:38 INFO   [read.output] : 
   NPP Mean: 7230 Median: 7230 
2016-04-02 12:18:38 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010642 
2016-04-02 12:18:38 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010642 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 7740 Median: 7740 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010643 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010643 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 7200 Median: 7200 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010644 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010644 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 3950 Median: 3950 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010645 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010645 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 7710 Median: 7710 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010646 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010646 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 5490 Median: 5490 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010647 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010647 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 7630 Median: 7630 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010648 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010648 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:39 INFO   [read.output] : 
   NPP Mean: 3140 Median: 3140 
2016-04-02 12:18:39 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010649 
2016-04-02 12:18:39 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010649 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 6170 Median: 6170 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010650 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010650 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 4410 Median: 4410 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010651 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010651 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 5000 Median: 5000 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010652 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010652 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 7650 Median: 7650 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010653 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010653 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 7590 Median: 7590 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010654 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010654 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 6770 Median: 6770 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010655 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010655 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 5900 Median: 5900 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010656 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010656 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:40 INFO   [read.output] : 
   NPP Mean: 5700 Median: 5700 
2016-04-02 12:18:40 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010657 
2016-04-02 12:18:40 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010657 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 6620 Median: 6620 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010658 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010658 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 4150 Median: 4150 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010659 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010659 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 5550 Median: 5550 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010660 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010660 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 4610 Median: 4610 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010661 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010661 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 5080 Median: 5080 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010662 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010662 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 2150 Median: 2150 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010663 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010663 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:41 INFO   [read.output] : 
   NPP Mean: 8560 Median: 8560 
2016-04-02 12:18:41 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010664 
2016-04-02 12:18:41 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010664 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 6810 Median: 6810 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010665 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010665 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 2970 Median: 2970 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010666 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010666 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 2570 Median: 2570 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010667 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010667 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 4600 Median: 4600 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010668 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010668 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 4300 Median: 4300 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010669 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010669 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 3310 Median: 3310 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010670 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010670 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 3660 Median: 3660 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010671 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010671 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:42 INFO   [read.output] : 
   NPP Mean: 3870 Median: 3870 
2016-04-02 12:18:42 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010672 
2016-04-02 12:18:42 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010672 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 7100 Median: 7100 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010673 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010673 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 6000 Median: 6000 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010674 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010674 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 6200 Median: 6200 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010675 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010675 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 3890 Median: 3890 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010676 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010676 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 6230 Median: 6230 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010677 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010677 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 6900 Median: 6900 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010678 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010678 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:43 INFO   [read.output] : 
   NPP Mean: 4540 Median: 4540 
2016-04-02 12:18:43 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010679 
2016-04-02 12:18:43 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010679 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 4550 Median: 4550 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010680 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010680 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 4770 Median: 4770 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010681 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010681 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 4150 Median: 4150 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010682 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010682 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 6940 Median: 6940 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010683 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010683 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 5140 Median: 5140 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010684 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010684 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 4950 Median: 4950 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010685 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010685 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 5590 Median: 5590 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010686 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010686 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:44 INFO   [read.output] : 
   NPP Mean: 5710 Median: 5710 
2016-04-02 12:18:44 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010687 
2016-04-02 12:18:44 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010687 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 7180 Median: 7180 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010688 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010688 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 7890 Median: 7890 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010689 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010689 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 3230 Median: 3230 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010690 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010690 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 8610 Median: 8610 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010691 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010691 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 6180 Median: 6180 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010692 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010692 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 5830 Median: 5830 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010693 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010693 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 6310 Median: 6310 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010694 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010694 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:45 INFO   [read.output] : 
   NPP Mean: 7160 Median: 7160 
2016-04-02 12:18:45 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010695 
2016-04-02 12:18:45 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010695 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 5390 Median: 5390 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010696 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010696 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 5130 Median: 5130 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010697 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010697 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 2770 Median: 2770 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010698 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010698 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 7540 Median: 7540 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010699 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010699 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 7700 Median: 7700 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010700 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010700 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 6200 Median: 6200 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010701 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010701 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 6440 Median: 6440 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010702 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010702 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:46 INFO   [read.output] : 
   NPP Mean: 5950 Median: 5950 
2016-04-02 12:18:46 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010703 
2016-04-02 12:18:46 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010703 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 6710 Median: 6710 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010704 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010704 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 6880 Median: 6880 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010705 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010705 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 7060 Median: 7060 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010706 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010706 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 6620 Median: 6620 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010707 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010707 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 1340 Median: 1340 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010708 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010708 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 8770 Median: 8770 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010709 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010709 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 5950 Median: 5950 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010710 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010710 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:47 INFO   [read.output] : 
   NPP Mean: 6440 Median: 6440 
2016-04-02 12:18:47 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010711 
2016-04-02 12:18:47 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010711 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 3730 Median: 3730 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010712 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010712 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 1330 Median: 1330 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010713 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010713 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 5550 Median: 5550 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010714 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010714 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 7890 Median: 7890 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010715 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010715 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 7530 Median: 7530 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010716 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010716 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 7610 Median: 7610 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010717 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010717 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 9350 Median: 9350 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010718 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010718 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 6600 Median: 6600 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010719 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010719 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:48 INFO   [read.output] : 
   NPP Mean: 6100 Median: 6100 
2016-04-02 12:18:48 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010720 
2016-04-02 12:18:48 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010720 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 4420 Median: 4420 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010721 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010721 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 7700 Median: 7700 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010722 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010722 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 4470 Median: 4470 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010723 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010723 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 8550 Median: 8550 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010724 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010724 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 5510 Median: 5510 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010725 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010725 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 7200 Median: 7200 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010726 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010726 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 6440 Median: 6440 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010727 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010727 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:49 INFO   [read.output] : 
   NPP Mean: 5530 Median: 5530 
2016-04-02 12:18:49 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010728 
2016-04-02 12:18:49 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010728 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 4680 Median: 4680 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010729 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010729 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 5440 Median: 5440 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010730 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010730 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 1830 Median: 1830 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010731 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010731 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 5650 Median: 5650 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010732 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010732 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 5500 Median: 5500 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010733 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010733 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 5520 Median: 5520 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010734 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010734 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 5730 Median: 5730 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010735 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010735 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:50 INFO   [read.output] : 
   NPP Mean: 4940 Median: 4940 
2016-04-02 12:18:50 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010736 
2016-04-02 12:18:50 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010736 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 7500 Median: 7500 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010737 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010737 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 6550 Median: 6550 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010738 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010738 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 6970 Median: 6970 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010739 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010739 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 4950 Median: 4950 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010740 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010740 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 8000 Median: 8000 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010741 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010741 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 4480 Median: 4480 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010742 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010742 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 9120 Median: 9120 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010743 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010743 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:51 INFO   [read.output] : 
   NPP Mean: 4550 Median: 4550 
2016-04-02 12:18:51 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010744 
2016-04-02 12:18:51 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010744 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 5940 Median: 5940 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010745 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010745 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 5880 Median: 5880 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010746 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010746 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 4720 Median: 4720 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010747 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010747 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 4840 Median: 4840 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010748 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010748 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 8880 Median: 8880 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010749 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010749 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 6530 Median: 6530 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010750 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010750 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 1660 Median: 1660 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010751 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010751 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 8630 Median: 8630 
2016-04-02 12:18:52 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010752 
2016-04-02 12:18:52 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010752 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:52 INFO   [read.output] : 
   NPP Mean: 6910 Median: 6910 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010753 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010753 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 5240 Median: 5240 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010754 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010754 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 6950 Median: 6950 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010755 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010755 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 5750 Median: 5750 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010756 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010756 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 7890 Median: 7890 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010757 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010757 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 5600 Median: 5600 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010758 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010758 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 6680 Median: 6680 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010759 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010759 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 3090 Median: 3090 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010760 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010760 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:53 INFO   [read.output] : 
   NPP Mean: 9060 Median: 9060 
2016-04-02 12:18:53 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010761 
2016-04-02 12:18:53 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010761 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 5950 Median: 5950 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010762 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010762 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 5060 Median: 5060 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010763 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010763 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 6800 Median: 6800 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010764 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010764 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 7510 Median: 7510 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010765 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010765 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 5350 Median: 5350 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010766 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010766 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 4600 Median: 4600 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010767 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010767 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 2550 Median: 2550 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010768 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010768 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:54 INFO   [read.output] : 
   NPP Mean: 4640 Median: 4640 
2016-04-02 12:18:54 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010769 
2016-04-02 12:18:54 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010769 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 8250 Median: 8250 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010770 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010770 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 6630 Median: 6630 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010771 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010771 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 4600 Median: 4600 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010772 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010772 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 8290 Median: 8290 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010773 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010773 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 3460 Median: 3460 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010774 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010774 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 5170 Median: 5170 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010775 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010775 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 6040 Median: 6040 
2016-04-02 12:18:55 INFO   [read.ensemble.output] : 
   reading ensemble output from run id: 2000010776 
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010776 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:55 INFO   [read.output] : 
   NPP Mean: 3620 Median: 3620 
> 
> # Run ensemble analysis on model output. 
> if (status.check("ENSEMBLE") == 0) {
+   status.start("ENSEMBLE")
+   run.ensemble.analysis(TRUE)    
+   status.end()
+ }
[1] "----- Variable: NPP"
[1] "----- Running ensemble analysis for site:  Metolius-first young aged pine (US-Me5)"
[1] "----- Done!"
[1] " "
[1] "-----------------------------------------------"
[1] " "
[1] " "
[1] "------ Generating ensemble time-series plot ------"
[1] "----- Variable: NPP"
[1] "----- Reading ensemble output ------"
[1] 2000010577
2016-04-02 12:18:55 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010577 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 3990 Median: 3990 
[1] 2000010578
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010578 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 6650 Median: 6650 
[1] 2000010579
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010579 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
[1] 2000010580
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010580 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 7670 Median: 7670 
[1] 2000010581
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010581 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 5100 Median: 5100 
[1] 2000010582
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010582 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 3950 Median: 3950 
[1] 2000010583
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010583 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:56 INFO   [read.output] : 
   NPP Mean: 6230 Median: 6230 
[1] 2000010584
2016-04-02 12:18:56 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010584 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 7270 Median: 7270 
[1] 2000010585
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010585 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 7040 Median: 7040 
[1] 2000010586
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010586 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 5030 Median: 5030 
[1] 2000010587
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010587 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 5890 Median: 5890 
[1] 2000010588
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010588 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 4330 Median: 4330 
[1] 2000010589
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010589 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 7970 Median: 7970 
[1] 2000010590
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010590 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 4210 Median: 4210 
[1] 2000010591
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010591 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:57 INFO   [read.output] : 
   NPP Mean: 7180 Median: 7180 
[1] 2000010592
2016-04-02 12:18:57 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010592 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 6360 Median: 6360 
[1] 2000010593
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010593 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 1430 Median: 1430 
[1] 2000010594
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010594 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 4380 Median: 4380 
[1] 2000010595
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010595 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 5530 Median: 5530 
[1] 2000010596
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010596 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 7280 Median: 7280 
[1] 2000010597
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010597 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 6440 Median: 6440 
[1] 2000010598
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010598 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 5960 Median: 5960 
[1] 2000010599
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010599 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:58 INFO   [read.output] : 
   NPP Mean: 4240 Median: 4240 
[1] 2000010600
2016-04-02 12:18:58 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010600 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 5760 Median: 5760 
[1] 2000010601
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010601 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 6930 Median: 6930 
[1] 2000010602
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010602 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 4050 Median: 4050 
[1] 2000010603
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010603 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 684 Median: 684 
[1] 2000010604
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010604 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 7340 Median: 7340 
[1] 2000010605
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010605 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 4510 Median: 4510 
[1] 2000010606
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010606 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 6330 Median: 6330 
[1] 2000010607
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010607 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:18:59 INFO   [read.output] : 
   NPP Mean: 3430 Median: 3430 
[1] 2000010608
2016-04-02 12:18:59 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010608 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 4930 Median: 4930 
[1] 2000010609
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010609 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 6820 Median: 6820 
[1] 2000010610
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010610 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 5390 Median: 5390 
[1] 2000010611
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010611 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 6420 Median: 6420 
[1] 2000010612
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010612 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 6030 Median: 6030 
[1] 2000010613
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010613 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 6730 Median: 6730 
[1] 2000010614
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010614 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 8230 Median: 8230 
[1] 2000010615
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010615 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:00 INFO   [read.output] : 
   NPP Mean: 6590 Median: 6590 
[1] 2000010616
2016-04-02 12:19:00 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010616 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 2220 Median: 2220 
[1] 2000010617
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010617 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 5340 Median: 5340 
[1] 2000010618
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010618 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 5240 Median: 5240 
[1] 2000010619
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010619 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 1380 Median: 1380 
[1] 2000010620
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010620 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 7120 Median: 7120 
[1] 2000010621
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010621 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 5370 Median: 5370 
[1] 2000010622
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010622 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 8840 Median: 8840 
[1] 2000010623
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010623 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 6020 Median: 6020 
[1] 2000010624
2016-04-02 12:19:01 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010624 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:01 INFO   [read.output] : 
   NPP Mean: 5680 Median: 5680 
[1] 2000010625
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010625 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 7760 Median: 7760 
[1] 2000010626
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010626 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 6010 Median: 6010 
[1] 2000010627
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010627 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 4880 Median: 4880 
[1] 2000010628
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010628 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 4230 Median: 4230 
[1] 2000010629
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010629 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 5690 Median: 5690 
[1] 2000010630
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010630 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 2200 Median: 2200 
[1] 2000010631
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010631 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 7170 Median: 7170 
[1] 2000010632
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010632 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:02 INFO   [read.output] : 
   NPP Mean: 8920 Median: 8920 
[1] 2000010633
2016-04-02 12:19:02 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010633 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 4370 Median: 4370 
[1] 2000010634
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010634 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 3390 Median: 3390 
[1] 2000010635
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010635 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 5830 Median: 5830 
[1] 2000010636
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010636 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 6230 Median: 6230 
[1] 2000010637
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010637 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 4390 Median: 4390 
[1] 2000010638
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010638 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 4730 Median: 4730 
[1] 2000010639
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010639 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 7050 Median: 7050 
[1] 2000010640
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010640 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:03 INFO   [read.output] : 
   NPP Mean: 2570 Median: 2570 
[1] 2000010641
2016-04-02 12:19:03 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010641 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:04 INFO   [read.output] : 
   NPP Mean: 7230 Median: 7230 
[1] 2000010642
2016-04-02 12:19:04 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010642 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:04 INFO   [read.output] : 
   NPP Mean: 7740 Median: 7740 
[1] 2000010643
2016-04-02 12:19:04 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010643 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:04 INFO   [read.output] : 
   NPP Mean: 7200 Median: 7200 
[1] 2000010644
2016-04-02 12:19:04 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010644 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:04 INFO   [read.output] : 
   NPP Mean: 3950 Median: 3950 
[1] 2000010645
2016-04-02 12:19:04 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010645 
   including files 2000.nc 2001.nc 2002.nc 
2016-04-02 12:19:04 INFO   [read.output] : 
   NPP Mean: 7710 Median: 7710 
[1] 2000010646
2016-04-02 12:19:04 INFO   [read.output] : 
   Reading output for Years: 2000 - 2002 in directory: 
   /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010646 
   including files 2000.nc 2001.nc 2002.nc 
Error in R_nc4_open: Too many open files
Error in nc_open(ncfile) : 
  Error in nc_open trying to open file /data/Model_Output/pecan.output/PEcAn_2000000138/out/2000010646/2001.nc
Calls: run.ensemble.analysis ... ensemble.ts -> read.ensemble.ts -> read.output -> nc_open
Error during wrapup: cannot open the connection
Execution halted
Error: failed to load sRGB colorspace file
Error during wrapup: cannot open the connection
Execution halted
sh: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: Error 24
serbinsh commented 8 years ago

Its possible this is related to #775