Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

Regarding Latest ARW post

EMMANUEL

Member
Hello everyone
I would like to know what is the latest version of ARWPOST
Kindly share me the link if it is available thanking you
 
The latest ARWpost is V3. Here is a snippet from my WRF install scripts that installs ARWpost for you.

Please note that there are some checks in there for GCC version due to changes from ubuntu 20 & 22 that causes issues.

Also there are a few sed commands that make changes to the configure files for ARWpost to make it useable.

Bash:
######################## ARWpost V3.1  ############################
## ARWpost
##Configure #3
###################################################################
cd $HOME/WRF-Hydro/Downloads
wget -c http://www2.mmm.ucar.edu/wrf/src/ARWpost_V3.tar.gz
tar -xvzf ARWpost_V3.tar.gz -C $HOME/WRF-Hydro
cd $HOME/WRF-Hydro/ARWpost
./clean -a
sed -i -e 's/-lnetcdf/-lnetcdff -lnetcdf/g' $HOME/WRF-Hydro/ARWpost/src/Makefile
export NETCDF=$DIR/NETCDF
./configure

export GCC_VERSION=$(/usr/bin/gcc -dumpfullversion | awk '{print$1}')
export GFORTRAN_VERSION=$(/usr/bin/gfortran -dumpfullversion | awk '{print$1}')
export GPLUSPLUS_VERSION=$(/usr/bin/g++ -dumpfullversion | awk '{print$1}')

export GCC_VERSION_MAJOR_VERSION=$(echo $GCC_VERSION | awk -F. '{print $1}')
export GFORTRAN_VERSION_MAJOR_VERSION=$(echo $GFORTRAN_VERSION | awk -F. '{print $1}')
export GPLUSPLUS_VERSION_MAJOR_VERSION=$(echo $GPLUSPLUS_VERSION | awk -F. '{print $1}')

export version_10="10"

if [ $GCC_VERSION_MAJOR_VERSION -ge $version_10 ] || [ $GFORTRAN_VERSION_MAJOR_VERSION -ge $version_10 ] || [ $GPLUSPLUS_VERSION_MAJOR_VERSION -ge $version_10 ]
then
  sed -i '32s/-ffree-form -O -fno-second-underscore -fconvert=big-endian -frecord-marker=4/-ffree-form -O -fno-second-underscore -fconvert=big-endian -frecord-marker=4 -fallow-argument-mismatch /g' configure.arwp
fi


sed -i -e 's/-C -P -traditional/-P -traditional/g' $HOME/WRF-Hydro/ARWpost/configure.arwp
./compile


export PATH=$HOME/WRF-Hydro/ARWpost/ARWpost.exe:$PATH
 
The newest version of ARWpost is V3.1, which was released in 2011. Note that this is an obsolete package that is no longer under development. Only limited support is available for this package.
 
Top