NCL

From Fluids Wiki
Revision as of 11:24, 7 September 2018 by L2chandl (talk | contribs) (Created an NCL page with super basic info)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The NCAR Command Language (NCL) is the recommended scripting language for plotting 2D WRF outputs. There are many built-in WRF-specific functions to help.

Troubleshooting Resources

Data too large to plot

For large datasets, you may experience the error:

Workspace reallocation would exceed maximum size 100000000

To fix this, place the following lines in your script immediately after opening the workstation:

 setvalues NhlGetWorkspaceObjectId()
     "wsMaximumSize": 300000000
 end setvalues