######################################
##### Model Transformation Tools #####
######################################
# gawk script: lbl2sympar.awk
# Label file to symbolic parameters conversion
# P.J.Gawthrop August 1996
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.12 1998/07/04 11:09:46 peterg
## Cleaned up - assumes new lbl style for SS
##
## Revision 1.11 1998/05/13 12:39:23 peterg
## Added `unknown' to list od names to avoid
##
## Revision 1.10 1998/03/26 13:03:23 peterg
## Changed SS field fudge.
##
## Revision 1.9 1998/02/16 16:09:57 peterg
## And taken it out again!
##
## Revision 1.8 1998/02/16 12:08:38 peterg
## Put back the matrix declaration
##
# Revision 1.7 1997/03/18 17:25:24 peterg
# Now just generates names - formatting removed.
#
# Revision 1.6 1996/12/07 20:02:43 peterg
# Fixed symbolic parameter bug.
#
## Revision 1.5 1996/12/07 18:06:50 peterg
## Now detects symbolic args ($1 etc) and ignores them.
##
# Revision 1.4 1996/08/30 18:45:32 peter
# Removed header stuff.
#
## Revision 1.3 1996/08/30 10:30:54 peter
## Switched order of args in matches.
##
## Revision 1.2 1996/08/30 09:35:10 peter
## Fixed problem with global variable in function.
##
## Revision 1.1 1996/08/24 13:34:48 peter
## Initial revision
##
###############################################################
function exact_match(name1, name2) {
return ((match(name1,name2)>0)&&(length(name1)==length(name2)))
}
function matches(names, name) {
n_matches = split(names,match_name);
matched = 0;
for (i_matches = 1; i_matches <= n_matches; i_matches++) {
if ( exact_match(name,match_name[i_matches]) ) {
matched = 1;
break;
}
}
return matched;
}
BEGIN {
sys_name = ARGV[1];
comment = "%";
arg_delimiter = ",";
not_an_arg = "effort flow state internal external zero unknown 0 1";
SS_parameter = "internal external zero 0 1";
numeric = "[0-9-]";
symbol_count = 0;
symbols = "";
}
{
if ( (match($1,comment)==0) && (NF>=3) ) {
n_args = split($3,arg,arg_delimiter);
for (i = 1; i <= n_args; i++) {
first_char = substr(arg[i],1,1);
if ( (matches(not_an_arg,arg[i])==0) \
&& (match(first_char,numeric)==0) \
&& (match(arg[i],"\\$")==0) \
&& (length(arg[i])>0) \
&& (matches(symbols,arg[i]) ==0) ) {
print arg[i] "\t" name;
}
}
}
}