Alright, thanks! I'll try to move over to the develop branch. Since it looks fine I guess it's possible for the problem to be with the generation of the log file and nothing else.
By the way, when you create multilayers do you run into the problem of not getting precisely the number of monolayers you ask for? For example, if I want 2 monolayers of material 1, 11 monolayers of material 2, and 2 monolayers of material 3, then in the material file I would write:
material[1]:minimum-height = 0.0
material[1]:maximum-height = 0.13333333333
material[2]:minimum-height = 0.13333333333
material[2]:maximum-height = 0.86666666667
material[3]:minimum-height = 0.86666666667
this, however, gives me 2 monolayers of material 1, 12 monolayers of material 2, and only 1 monolayer of material 3. To get the desired structure the lines in the material file have to be changed to
material[1]:minimum-height = 0.0
material[1]:maximum-height = 0.13333333333
material[2]:minimum-height = 0.13333333333
material[2]:maximum-height = 0.86666666666
material[3]:minimum-height = 0.86666666666
i.e. I have to truncate the decimal representation of (2+11)/15 = 0.866... instead of rounding off. Is it a general rule that one should always truncate these numbers instead of rounding them off, or is there some other way around this problem?