NCL: Difference between revisions

From Fluids Wiki
Jump to navigation Jump to search
(Created an NCL page with super basic info)
 
(No difference)

Latest revision as of 11:24, 7 September 2018

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