#!/bin/sh
set -e
# multiply input file by 101325/10^6=0.101325 
# sk: revise the multiplication constant from 10^6/101325=9.869232667 to 101325/10^6=0.101325, Oct 12 2011
if [ $# -ne 3 ] ; then
  echo "Error in $0: invalid number of arguments $#"
  exit 1
fi
pfx=$1
inp=$2
out=$3
access inp ${pfx}_${inp}
echo "            0.101325" | ccc xlin inp ${pfx}_${out}
release inp
