From e4091cc4c05011723e922a59b26e0260ea09f2b1 Mon Sep 17 00:00:00 2001 From: weihe <amvdw95@gmail.com> Date: Mon, 24 Aug 2015 13:36:55 +0000 Subject: [PATCH] removed argument from add_model_data_mismatch --- da/stilt/pipeline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/da/stilt/pipeline.py b/da/stilt/pipeline.py index f3c1c49..5e517c1 100755 --- a/da/stilt/pipeline.py +++ b/da/stilt/pipeline.py @@ -320,9 +320,9 @@ def sample_step(dacycle, samples, statevector, obsoperator, lag, advance=False): # Add model-data mismatch to all samples, this *might* use output from the ensemble in the future?? - samples.add_model_data_mismatch(dacycle.dasystem['obs.sites.rc'],dacycle['co.filter']) + samples.add_model_data_mismatch(dacycle.dasystem['obs.sites.rc']) - nprocs=2 + nprocs=8 procs=[] out_q = mp.Queue() for proc in range(nprocs): @@ -345,7 +345,7 @@ def sample_step(dacycle, samples, statevector, obsoperator, lag, advance=False): resultdict.update(out_q.get()) for proc in procs: - proc.join() + proc.join() # Read forecast model samples that were written to NetCDF files by each member. Add them to the exisiting # Observation object for each sample loop. This data fill be written to file in the output folder for each sample cycle. -- GitLab