Home    Reference Manuals    Return    Track Group Documentation



Users Manual for Program TRC_MAUZMOD  




Table of Contents

   Introduction
   Input data commands
   Example




Introduction

Program TRC_MAUZMOD scales and transforms the signals in a Mauzin-registration. The input data file is read in free format, but the columns in the file shall have the same contents as in a mauz-file. The output data file is written in mauz-format.



Input data commands

Input data is read in free format, valid separators between the input values are <space>, <comma>, <tab>, <equal sign> or <carriage return>. The commands can be written both in lower and upper case letters. The operation of the program is controlled by the commands described below; some of the commands also need arguments.



INFIL
Input Mauzin-registration file
The file is read in free format. The columns in the file shall have the same contents as in a mauz-file.
Declared = Character*132    Default = Blank

UTFIL
File containing the output data, written in *.mauz-format.
Declared = Character*132    Default = Blank

Reading of scale factors

XFAKT
Scale factor for column #1, longitudinal distance.
Declared = Real*4    Default = 1.

ZHFAKT
Scale factor for column #2, vertical level, right side.
Declared = Real*4    Default = 1.

ZVFAKT
Scale factor for column #3, vertical level, left side.
Declared = Real*4    Default = 1.

FIFAKT
Scale factor for column #4, cant unevenness.
Declared = Real*4    Default = 1.

CFAKT
Scale factor for column #5, twist.
Declared = Real*4    Default = 1.

YHFAKT
Scale factor for column #6, lateral versine, right side.
Declared = Real*4    Default = 1.

YVFAKT
Scale factor for column #7, lateral versine, left side.
Declared = Real*4    Default = 1.

SPVFAKT
Scale factor for column #8, gauge.
Declared = Real*4    Default = 1.

Reading of translation constants

XMOVE
Constant to be added to column #1, longitudinal distance.
Declared = Real*4    Default = 0.

ZHMOVE
Constant to be added to column #2, vertical level, right side.
Declared = Real*4    Default = 0.

ZVMOVE
Constant to be added to column #3, vertical level, left side.
Declared = Real*4    Default = 0.

FIMOVE
Constant to be added to column #4, cant unevenness.
Declared = Real*4    Default = 0.

CMOVE
Constant to be added to column #5, twist.
Declared = Real*4    Default = 0.

YHMOVE
Constant to be added to column #6, lateral versine, right side.
Declared = Real*4    Default = 0.

YVMOVE
Constant to be added to column #7, lateral versine, left side.
Declared = Real*4    Default = 0.

SPVMOVE
Constant to be added to column #8, gauge.
Declared = Real*4    Default = 0.


Example of an input data file

Following example: Master.trc_mauzmodf can be used as a master file:

                                               
 ##                                            
 ##    Input data for program TRC_MAUZMOD      
 ##                                            
                                               
  INFIL= 'test/hyslr_A.mauz',                  
  UTFIL= 'test/hyslr_Am.mauz',                 
                                               
  XFAKT  = 1.,           XMOVE  = 0.,          
  ZHFAKT = 1.,           ZHMOVE = 0.,          
  ZVFAKT = 1.,           ZVMOVE = 0.,          
  FIFAKT = 1.,           FIMOVE = 0.,          
  CFAKT  = 1.,           CMOVE  = 0.,          
  YHFAKT = 1.,           YHMOVE = 0.,          
  YVFAKT = 1.,           YVMOVE = 0.,          
  SPVFAKT= 1.,           SPVMOVE= 0.,