Lammps fix-print

Hi,

is it possible to include a variable in the fix-print file name?

for example in the line below:

fix def_print all print 100 "${times} ${strain1} ${potentiale}" file M&&&.dump1.txt screen no 

instead of “&&&” I want to include the temperature variable’s value.

Thanks

Something like this should work:

variable foo equal temp

fix def_print all print 100 "${times} ${strain1} ${potentiale}" file M${foo}.dump1.txt screen no

Steve