FUZZEKS [to Index]
FDF inputfile format


This page describes the form of the input data file (the Fuzzy Data File) by an example.

Here is the example data file in extracts (only some lines of the table have been skipped):

region
     0    0
  1800    0
     0 1800
cuts
  1 0.75 0.5 0.25 0
parameters
  Cl_Concentration 
  Clay_Content     
  Hydraulic_conductivity  (log10)
  Water_table_depth
table
  X    Y  Water_table_depth Hydraulic_conductivity Clay_content Cl_concentration

 165 1630   3.9             0.000003000             12           20
 460 1690   4.0             0.000001000             13           30
 435 1500   4.5             0.000000600             17           40
 105 1265   4.5             0.000001000             15           40
 300 1080   5.0             0.000000400             17           75
 560 1240   5.4/0:4.4-6.4   0.7e-7/0:0.7e-8-0.7e-6  22/0:17-27   80/0:50-130
1010 1600   3.8             0.000000100             14           65
...
end

The sections of an FDF inputfile


A DECISEPCHARACTER-statement may appear just before all above sections, e.g.:
decisepcharacter is ,
means that the real number "one and a half" is written "1,5" instead of "1.5" ("." is default).

Additionally an UNDEFSTRING- and a DELIMITERSTRING-statement may appear just before the table section, e.g.:
undefstring is $
delimiterstring is !
allows to write this table-section

table
 X !Y ! a     ! b     ! c

 0 !0 ! 1     ! $     ! 2.5
 1 !0 ! $     ! 6     ! 7/6-10

instead of the "normal" one ("undef" and (nothing) are default):
table
 X  Y   a      b      c

 0  0   1      undef  2.5
 1  0   undef  6      7/6-10