#!/bin/tcsh # # Purpose # ------- # Compiles the CSIRO Mk3L climate system model and associated utilities. # # This version compiles Mk3L and the associated utilities so as to make use of # the original, low-resolution (64x56x21) version of the ocean model. # # Usage # ----- # ./compile_low # # History # ------- # 2007 Jun 4 Steven Phipps Original version, based on the default compile # script # 2008 Nov 20 Steven Phipps Added OCEAN_LOW compile option # 2009 Apr 17 Steven Phipps Removed overturning and annual_overturning # Set compile options setenv OCEAN_LOW yes # Set to yes to use low-resolution ocean # Compile the model echo echo Compiling the CSIRO Mk3L climate system model... echo cd ../src/model/ make mv model ../../bin/model_low make clean cd .. # Compile convert_averages and convert_averages_ogcm echo echo Compiling convert_averages... echo cd convert_averages/ make mv convert_averages ../../bin/convert_averages_low make clean echo echo Compiling convert_averages_ogcm... echo make ogcm mv convert_averages_ogcm ../../bin/convert_averages_ogcm_low make clean cd .. # Compile annual_averages echo echo Compiling annual_averages... echo cd annual_averages/ make mv annual_averages ../../bin/annual_averages_low make clean cd ..