OK change line 8276 from
if (typeflag == 15 && tempcycle > 0) FILENAME = "d50top" + Convert.ToString(Convert.ToInt64(tempcycle)) + ".txt";
to if (typeflag == 15 && tempcycle > 0) FILENAME = "Tau" + Convert.ToString(Convert.ToInt64(tempcycle)) + ".txt";
then change from 8397 change
else
{
sw.Write(d50(index[x, y]));
sw.Write(" ");
}
TO:
else
{
sw.Write(Tau(index[x, y]));
sw.Write(" ");
}
This basically hijacks the D50 top layer output and turns it into the shear stress. As in you need to check off save d50 in the save drop down menu...
May not be perfect but should work.