Skip to content
Snippets Groups Projects
Commit 211c34e9 authored by lkugler's avatar lkugler
Browse files

.

parent e6fa502f
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python3
"""
Generate observation files from an experiment
"""
import datetime as dt
from dartwrf.workflows import WorkFlows
w = WorkFlows(exp_config='nature.py', server_config='jet.py')
obs_times = [dt.datetime(2008,7,30,12), dt.datetime(2008,7,30,12,1),
dt.datetime(2008,7,30,12,30), dt.datetime(2008,7,30,12,31),
dt.datetime(2008,7,30,13), dt.datetime(2008,7,30,13,1),
dt.datetime(2008,7,30,13,30), dt.datetime(2008,7,30,13,31),
dt.datetime(2008,7,30,14), dt.datetime(2008,7,30,14,1),]
w.generate_obsseq_out(obs_times)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment