NCL

From Fluids Wiki
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