#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: lbl2cr_txt2txt
# Label file to constitutive relationship conversion
# P.J.Gawthrop March 1997
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1998/07/29 11:09:39 peterg
## Now matches ^$1$ not $1!
##
## Revision 1.2 1998/03/08 21:02:55 peterg
## Now does multiple crs.
##
# Revision 1.1 1997/03/20 12:23:21 peterg
# Initial revision
#
###############################################################
# Inform user
echo "Creating $1_cr.txt"
rm -f mtt_error
# This is the main transformation using gawk
# And remove crs with same name as system
awk -f $MTTPATH/trans/awk/lbl2cr.awk $1_lbl.txt 2>mtt_error.txt |\
grep -v "^$1$" \
> $1_cr.txt
# Now invoke the standard error handling.
mtt_error mtt_error.txt