39 lines
548 B
Plaintext
39 lines
548 B
Plaintext
#A default input file
|
|
|
|
//comments are either c or python style
|
|
|
|
avariable = bla
|
|
|
|
anothervar = 1.2,1.3, 1.5 //this is a comment
|
|
|
|
operatingmode = 3
|
|
//1 - STL output
|
|
//2 - count triangles
|
|
//3 - count area
|
|
|
|
verbosity = 2
|
|
|
|
//domain
|
|
xyz_min = -2.0,-2.0,-2.0
|
|
xyz_max = 2.0,2.0,2.0
|
|
Nx = 128
|
|
Ny = 128
|
|
Nz = 128
|
|
|
|
//execution parallelism pars
|
|
nblockdiv = 64
|
|
nthreads = 256
|
|
|
|
//function specific parameters
|
|
//not all pars apply to all functions
|
|
|
|
isjulia = 1
|
|
juliac = 0.0,0.0,0.0
|
|
exponent = 4.0
|
|
fractaliter = 100
|
|
freezethresh = 10.0
|
|
threshold = 0.2
|
|
scale = 0.5
|
|
|
|
|