Skip to content

Commit f02cc38

Browse files
authored
Update wrf-workflow.md
1 parent b62959b commit f02cc38

File tree

1 file changed

+12
-17
lines changed

1 file changed

+12
-17
lines changed

doc/wrf-workflow.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Look at file tree for a feeling of modules. <https://github.com/wrf-model/WRF>
77

8-
- Interesting directories related to the codes:
8+
- Interesting directories related to the Fortran codes:
99
- dyn_em/
1010
- phys/
1111

@@ -20,45 +20,41 @@ Look at file tree for a feeling of modules. <https://github.com/wrf-model/WRF>
2020
![image](img/WRF-flowchart.png)
2121

2222
WPS (preprocessing) programs to be run every simulation
23+
2324
- ungrib.exe
2425
- metgrid.exe
2526

2627
WRF programs to be run every simulation
28+
2729
- real.exe
2830
- wrf.exe
2931

30-
3132
## Personal workflow script of different parts
3233

33-
Script
34+
### Workflow consisting of several bash scripts.
3435

3536
```mermaid
3637
flowchart LR
37-
Download --> Preprocess --> Development --> Test --> D["Deployment and maintenance"] --> Requirements
38-
39-
40-
38+
Download global weather data --> Preprocess --> Real (initialization) --> WRF (simulation) --> Analysis
4139
```
4240

43-
### Workflow consisting of several bash scripts.
44-
4541
1. **download script**
4642

4743
- download large-scale weather data
4844

49-
1. **script_WPS**
45+
1. **script_WPS** (Preprocessing)
5046

5147
- find dates/times to be used
5248

5349
- find downloaded files
5450

5551
- start **run_ungrib.sh**
5652
- insert correct dates into a "namelist"
57-
- run **ungrib.exe** (Fortran)
53+
- run **ungrib.exe** (_Fortran_)
5854

5955
- start **run_metgrid.sh**
6056
- insert correct dates into a "namelist"
61-
- run **metgrid.exe** (Fortran)
57+
- run **metgrid.exe** (_Fortran_)
6258

6359
- start next script **script_WRF**
6460

@@ -68,15 +64,14 @@ flowchart LR
6864

6965
- run ./run_real.sh
7066
- insert correct dates into a "namelist"
71-
- run **real.exe** (Fortran)
67+
- run **real.exe** (_Fortran_)
7268

7369
- run ./run_wrf.sh
7470
- insert correct dates into a "namelist"
75-
- run **wrf.exe** (Fortran)
71+
- run **wrf.exe** (_Fortran_)
7672

7773
- run ./analysis_script.sh
7874
- inserts correct time
79-
- runs a python script that plots some graphs
80-
81-
75+
- runs a _python_ script that plots some graphs
76+
8277

0 commit comments

Comments
 (0)