Skip to content
Snippets Groups Projects
Commit 97b72b02 authored by Peters, Wouter's avatar Peters, Wouter
Browse files

rewired collection of obs into optimizer arrays

parent 45f2d517
No related branches found
No related tags found
No related merge requests found
...@@ -222,7 +222,7 @@ def SampleOneCycle(DaCycle,Samples,StateVector, ObservationOperator,lag): ...@@ -222,7 +222,7 @@ def SampleOneCycle(DaCycle,Samples,StateVector, ObservationOperator,lag):
# Read forecast model samples that were written to NetCDF files by each member, also add the obs to the statevector # Read forecast model samples that were written to NetCDF files by each member, also add the obs to the statevector
# Note that obs will only be added to the statevector is either this is the first step (restart=False), or lag==nlag # Note that obs will only be added to the statevector is either this is the first step (restart=False), or lag==nlag
if lag == nlag-1 or DaCycle['time.restart']==True : if lag == DaCycle['nlag']-1 or DaCycle['time.restart']==True :
silent = False silent = False
members = StateVector.EnsembleMembers[lag] members = StateVector.EnsembleMembers[lag]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment