README_POSTPROCESSOR 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. How to compile the postprocessor
  2. ================================
  3. The postprocessor is a C++ program requiring the NetCDF C++ library
  4. The makefile is configured to look for:
  5. 1) The include file "netcdfcpp.h" in directory /opt/local/include
  6. 2) The library file "libnetcdf_c++.*" in directory /opt/local/lib
  7. If doing "make" produces errors, locate these files and adjust
  8. the I-path and the L-path in the makefile accordingly.
  9. If you don't find the netcdfcpp.h file, you may want to install the
  10. netcdf package or ask your administrator to do it.
  11. After successfull compilation copy the executable "burn7.x" to a
  12. directory in your PATH. Administrators may choose
  13. /opt/local/bin or /usr/local/bin.
  14. Users may just copy it to $HOME/bin and make sure, that the
  15. PATH variable includes $HOME/bin.
  16. The burn7 is backward compatible and can process data files
  17. produced with older versions of PUMA or PLASIM.
  18. PUMA and PLASIM version 16 however require burn7.
  19. New features and changes
  20. ========================
  21. Burn7 now uses the C++ version of the NetCDF library.
  22. It uses less memory and runs faster than Burn6.
  23. It has a better compatibility to the CF and NetCDF standard.
  24. How to use the postprocessor
  25. ============================
  26. Look into the PUMA or PLaSim User's Guide (chapter postprocessor).
  27. A quick reference card can be found in this directory in file "burn7qr.pdf".
  28. More diagnostic software and tools
  29. ==================================
  30. It is strongly recommended to install following free software:
  31. NetCDF - common data format
  32. cdo - climate data operators
  33. grads - graphics software
  34. ImageMagick - graphics software & tools
  35. For MAC users:
  36. ==============
  37. Use "port" for easy installation. If you don't have port,
  38. download it from "www.macports.org" and install it.
  39. Installing is then as easy as:
  40. sudo port install netcdf
  41. sudo port install cdo
  42. etc.
  43. Good Luck