Make a copy of the namelist file and edit it to set the ensemble member value to the one you are given. Make sure you are in the 'pf001' directory. | Code Block |
|---|
cp namelistfc mynamelist
vi mynamelist # or use your favourite text editor; emacs etc. |
and make the following changes to the namelist variables: | Panel |
|---|
| bgColor | white |
|---|
| titleBGColor | white |
|---|
| title | Set these namelist variables: |
|---|
| CTYPE="pf", ! change the type of forecast to 'perturbed' from 'control'
NENSFNB=2, ! change the ensemble member number to your assigned value.
LSTOPH_SPBS=true, ! this enables the stochastic backscatter scheme in the model dynamics
LSPSDT=true, ! this enables the stochastic scheme for the physics tendencies |
The variable NENSFNB is important as this determines the random number seed by altering the ensemble member value. | Code Block |
|---|
| language | bash |
|---|
| title | Use the 'diff' command to check your changes |
|---|
| diff mynamelist namelistfc |
|