Hi Hugues
Great Idea to compare the Max Speed versus the Speeds on the Printer Tab, I'll see if I can do this as well.
Regarding the values in the Prefix Tab:
CubeitMod calculates the the Infill and Solid Factor with following formula (Infill in this case):
InfillFactor = ((-1)/(InfillPerimeterFactor*( (-1.5 + 3 * LayerThickness * nStack ) + InfillLenght)^1.1))+ 1.05
For a given Layer Thickness the only thing that was adjustable is the InfillPerimeterFactor (SolidPerimeterFactor for Solid) which is Infill% and Solid% in Kisslicer Matl Tab. As I mentoined, for long solid and infill lengths the Factor will always be close to 1.05 because of the formula setup. This I limited to the selected Infill% or Solid%
I replaced the fixed values 1.1 (the Exponent) and 1.05 (which is the high limit for long paths) with variables and included a new variable (Shift):
InfillFactor = ((-1)/(InfillPerimeterFactor*( (-1.5 + 3 * LayerThickness * $nStack ) + InfillLenght + Shift)^Exp))+ HighLimit
The fourth variable, MinLength is used in CubitMod to define from which path-length on the formula is used. This before was calculated in the old CubeitMod with this formula:
InfillLenght > -( - 1.5 + 3 * LayerThickness * nStack )
Below the Min Length, the value for InfillFactor and Solidfactor are set to: LayerThickness * nStack
This applies to both the new and the old version of CubeitMod.
Hope this explanation helps a bit.......
Short example:
Lets assume your solid surface with the old CubeitMod looks very good for pathlengths higher than 10mm but you have too much solid for shorter lengths. Your settings are: 0.2 Layer Thickness, no Stacking, Solid% set to 100%
Take these values and enter them into the Excel Sheet for the "Reference Calculation". Then start to change the values of the "Adjustable Calculation" in a way that the Solidfactor decreases for Lengths below 10mm but stays almost the same for Lengths above 10mm. Trial and error is the way to go here......
I found the following values to look very good for this example:
Shift: -2, High Limit: 1.05, Exponent: 1.2, Minimum Length: 0, Infill/Solid%: 102.5
This is how it looks like in the Excel-Sheet:

- Example.png (30.53 KiB) Viewed 3866 times
Now you have to enter these values to the Prefix Tab of Kisslicer:
; Shift = -2
; HighLimit = 1.05
; Exp = 1.2
; MinLength = 0

- Example2.png (9.5 KiB) Viewed 3866 times
And don't forget to change the Solid% in the Matl Tab to 102.5
Regards,
Tobi