From fb00b4e427e9c8322e94027535090206ef2b40b8 Mon Sep 17 00:00:00 2001 From: lkugler <lukas.kugler@gmail.com> Date: Tue, 22 Jun 2021 11:44:23 +0200 Subject: [PATCH] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa86ba5..0f2cfb9 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,13 @@ This code runs an Ensemble Data Assimilation system with the software packages D - It handles dependencies using SLURM without '`sleep` loops in the bash script'. Functions return a SLURM ID which can be used to trigger the start of another function (interface by [brentp/slurmpy](https://github.com/brentp/slurmpy)). +- How does it work? + - There are two kinds of code/scripts: One that is run immediately and one that is run later on. + - The first one instructs the cluster (SLURM) to do the things you tell it - in the right order - using the right input. + - The latter kind of code actually does the things. It is not run right away, but when SLURM says "it's your turn now" - which depends on the available resources on the shared cluster. + - Can I use it for real weather? - - Yes, but you need to [convert your observations into DART format.](https://dart.ucar.edu/pages/Observations.html#obs_real) + - Yes, but you need to [convert your observations into DART format.](https://docs.dart.ucar.edu) ### A possible workflow: [`scheduler.py`](https://github.com/lkugler/DART-WRF/blob/master/scheduler.py) @@ -89,6 +94,7 @@ clusterB.userdir = '/home/pathB/myuser/' ### References This workflow was created following the [DART-WRF Tutorial](http://www.image.ucar.edu/wrfdart/tutorial/). +Read the DART documentation: [docs.dart.ucar.edu](https://docs.dart.ucar.edu) DART is available at github: [@NCAR/DART](https://github.com/NCAR/DART) ### License -- GitLab