#!/bin/sh
set -e
#
# conceived to convert chemical rates from units of
# molecules/cm3/sec to mole/m3/sec
#  factor = 1.0E+06/6.0221413E+23

if [ $# -ne 3 ] ; then
  echo "Error in $0: invalid number of arguments $#"
  exit 1
fi

pfx=$1
inp=$2
out=$3

release inp
access  inp ${pfx}_${inp}
echo "          1.6605E-18" | ccc xlin inp ${pfx}_${out}

release inp

