Skip to content
Snippets Groups Projects
Commit b1d66b86 authored by Franck Pérignon's avatar Franck Pérignon
Browse files

fix again ...

parent 192a9242
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ class Analytic(Operator): ...@@ -15,7 +15,7 @@ class Analytic(Operator):
@debug @debug
def __init__(self, variables, resolutions, formula=None, method=None, def __init__(self, variables, resolutions, formula=None, method=None,
**other_config): ghosts=None, **other_config):
""" """
Create an operator using an analytic formula to compute field(s). Create an operator using an analytic formula to compute field(s).
@param formula : the formula to be applied @param formula : the formula to be applied
...@@ -45,6 +45,7 @@ class Analytic(Operator): ...@@ -45,6 +45,7 @@ class Analytic(Operator):
self.resolutions = resolutions self.resolutions = resolutions
self.config = other_config self.config = other_config
self.output = self.variables self.output = self.variables
self.ghosts = ghosts
@debug @debug
def setUp(self): def setUp(self):
...@@ -56,7 +57,8 @@ class Analytic(Operator): ...@@ -56,7 +57,8 @@ class Analytic(Operator):
for v in self.variables: for v in self.variables:
# the topology for v ... # the topology for v ...
topo = self.domain.getOrCreateTopology(self.domain.dimension, topo = self.domain.getOrCreateTopology(self.domain.dimension,
self.resolutions[v]) self.resolutions[v],
ghosts=self.ghosts)
# ... and the corresponding discrete field # ... and the corresponding discrete field
self.discreteFields[v] = v.discretize(topo) self.discreteFields[v] = v.discretize(topo)
......
...@@ -148,8 +148,9 @@ class Problem(object): ...@@ -148,8 +148,9 @@ class Problem(object):
self.simulation.printState() self.simulation.printState()
for op in self.operators: for op in self.operators:
op.apply(self.simulation) op.apply(self.simulation)
testdump = \
self.simulation.currentIteration % self.dumpFreq is 0
self.simulation.advance() self.simulation.advance()
testdump = self.simulation.currentIteration % self.dumpFreq
if self._doDump and testdump: if self._doDump and testdump:
self.dump() self.dump()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment