Source code for pycif.plugins.models.lagrangian.run
from logging import warning
[docs]
def run(self, runsubdir, mode, workdir, ddi, nbproc=1, do_simu=True, **kwargs):
"""Empty run method for model FLEXPART
"""
warning("Empty run method for Lagrangian model")
# Resetting observation flag for updating obs.txt
self.iniobs[ddi] = False
self.reset_obs[ddi] = True
# For samples, load all smaples at once as footprints are the same
if not hasattr(self, "process_sample_species"):
self.process_sample_species = {}
self.process_sample_species[ddi] = []