Changes between Version 1 and Version 2 of FirstSteps
- Timestamp:
- Jun 19, 2018, 10:00:50 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FirstSteps
v1 v2 62 62 }}} 63 63 64 Alternatively, you can plot using Python with e.g. 65 {{{ 66 import numpy as np 67 import matplotlib.pyplot as plt 68 69 file = 'state_ana.txt' 70 71 field = np.loadtxt(file) 72 73 plt.pcolor(field) 74 plt.show() 75 }}} 76 64 77 === Assimilation Options === 65 78 … … 96 109 ./PDAF_offline -rms_obs 2.0 97 110 }}} 111 Also the inflation can be specified on the command line. PDAF uses the so-called forgetting factor, which is a positive value <=1 (the ensemble variance is influted by the inverse of the forgetting factor). One can specify the forgetting factor as 112 {{{ 113 ./PDAF_offline -forget 0.9 114 }}} 98 115 All the different options can be combined. For a complete list of possible options, see the file `init_pdaf_offline.F90`, which is the source code file in which the default values of options are specified. 116 99 117 100 118