WRF Portal and WRF Domain Wizard Source Code
WRF Portal and WRF Domain Wizard are written in Java.
Requirements to Compile:
Java 1.5 or later
ANT 1.7 or later
Download the source code (26 MB zip file includes source code for both WRF Portal and WRF Domain Wizard)
Instructions:
- Click the link above to download wrf-portal-source.zip
unzip the source files to some directory on your system
You will see two ANT build files (build.xml which is used by NetBeans, and buildPortal_WDW.xml which can be used from the command line to build either WRF Portal or WRF Domain Wizard) - Build the images jar file with this ANT command
ant DomainWizardImages -buildfile buildPortal_WDW.xml - Type this ANT command to build WRF Portal
ant -buildfile buildPortal_WDW.xml
This creates a "dist" directory.
CD to this directory.
Run with this command: java -Xmx390m -jar Portal.jar WRF - Type this ANT command to build WRF Domain Wizard
ant domainwizard -buildfile buildPortal_WDW.xml
This creates a "dist_dwiz" directory.
CD to this directory.
Run with this command: java -Xmx390m -jar WRFDomainWizard.jar - Type this ANT command to build the javadocs
ant javadoc -buildfile buildPortal_WDW.xml
Note: This project was originally started with JBuilder (you'll see some JBuilder generated code in the source). Currently, we are using NetBeans 6.01 and we've included the NetBeans project so you can just load the entire project into that IDE.

