"""
This page is in the table of contents.
Stretch is a script to stretch the threads to partially compensate for filament shrinkage when extruded.
The stretch manual page is at:
http://www.bitsfrombytes.com/wiki/index.php?title=Skeinforge_Stretch
All the defaults assume that the thread sequence choice setting in fill is the perimeter being extruded first, then the loops, then the infill. If the thread sequence choice is different, the optimal thread parameters will also be different. In general, if the infill is extruded first, the infill would have to be stretched more so that even after the filament shrinkage, it would still be long enough to connect to the loop or perimeter.
==Operation==
The default 'Activate Stretch' checkbox is off. When it is on, the functions described below will work, when it is off, the functions will not be called.
==Settings==
===Loop Stretch Over Perimeter Width===
Default is 0.1.
Defines the ratio of the maximum amount the loop aka inner shell threads will be stretched compared to the perimeter width, in general this value should be the same as the 'Perimeter Outside Stretch Over Perimeter Width' setting.
===Path Stretch Over Perimeter Width===
Default is zero.
Defines the ratio of the maximum amount the threads which are not loops, like the infill threads, will be stretched compared to the perimeter width.
===Perimeter===
====Perimeter Inside Stretch Over Perimeter Width====
Default is 0.32.
Defines the ratio of the maximum amount the inside perimeter thread will be stretched compared to the perimeter width, this is the most important setting in stretch. The higher the value the more it will stretch the perimeter and the wider holes will be. If the value is too small, the holes could be drilled out after fabrication, if the value is too high, the holes would be too wide and the part would have to junked.
====Perimeter Outside Stretch Over Perimeter Width====
Default is 0.1.
Defines the ratio of the maximum amount the outside perimeter thread will be stretched compared to the perimeter width, in general this value should be around a third of the 'Perimeter Inside Stretch Over Perimeter Width' setting.
===Stretch from Distance over Perimeter Width===
Default is two.
In general, stretch will widen holes and push corners out. The algorithm works by checking at each turning point on the extrusion path what the direction of the thread is at a distance of 'Stretch from Distance over Perimeter Width' times the perimeter width, on both sides, and moves the thread in the opposite direction. The magnitude of the stretch increases with the amount that the direction of the two threads is similar and by the '..Stretch Over Perimeter Width' ratio. In practice the filament contraction will be similar but different from the algorithm, so even once the optimal parameters are determined, the stretch script will not be able to eliminate the inaccuracies caused by contraction, but it should reduce them.
==Examples==
The following examples stretch the file Screw Holder Bottom.stl. The examples are run in a terminal in the folder which contains Screw Holder Bottom.stl and stretch.py.
> python stretch.py
This brings up the stretch dialog.
> python stretch.py Screw Holder Bottom.stl
The stretch tool is parsing the file:
Screw Holder Bottom.stl
..
The stretch tool has created the file:
.. Screw Holder Bottom_stretch.gcode
> python
Python 2.5.1 (r251:54863, Sep 22 2007, 01:43:31)
[GCC 4.2.1 (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import stretch
>>> stretch.main()
This brings up the stretch dialog.
>>> stretch.writeOutput( 'Screw Holder Bottom.stl' )
The stretch tool is parsing the file:
Screw Holder Bottom.stl
..
The stretch tool has created the file:
.. Screw Holder Bottom_stretch.gcode
"""
from __future__ import absolute_import
#Init has to be imported first because it has code to workaround the python bug where relative imports don't work if the module is imported as a main module.
import __init__
from skeinforge_tools import profile
from skeinforge_tools.meta_plugins import polyfile
from skeinforge_tools.skeinforge_utilities import consecution
from skeinforge_tools.skeinforge_utilities import euclidean
from skeinforge_tools.skeinforge_utilities import gcodec
from skeinforge_tools.skeinforge_utilities import intercircle
from skeinforge_tools.skeinforge_utilities import interpret
from skeinforge_tools.skeinforge_utilities import settings
from skeinforge_tools.skeinforge_utilities.vector3 import Vector3
import sys
__author__ = "Enrique Perez (perez_enrique@yahoo.com)"
__date__ = "$Date: 2008/21/04 $"
__license__ = "GPL 3.0"
#maybe speed up feedRate option
def getCraftedText( fileName, text, stretchRepository = None ):
"Stretch a gcode linear move text."
return getCraftedTextFromText( gcodec.getTextIfEmpty( fileName, text ), stretchRepository )
def getCraftedTextFromText( gcodeText, stretchRepository = None ):
"Stretch a gcode linear move text."
if gcodec.isProcedureDoneOrFileIsEmpty( gcodeText, 'stretch' ):
return gcodeText
if stretchRepository == None:
stretchRepository = settings.getReadRepository( StretchRepository() )
if not stretchRepository.activateStretch.value:
return gcodeText
return StretchSkein().getCraftedGcode( gcodeText, stretchRepository )
def getNewRepository():
"Get the repository constructor."
return StretchRepository()
def writeOutput( fileName = '' ):
"Stretch a gcode linear move file. Chain stretch the gcode if it is not already stretched. If no fileName is specified, stretch the first unmodified gcode file in this folder."
fileName = interpret.getFirstTranslatorFileNameUnmodified( fileName )
if fileName != '':
consecution.writeChainTextWithNounMessage( fileName, 'stretch' )
class LineIteratorBackward:
"Backward line iterator class."
def __init__( self, isLoop, lineIndex, lines ):
self.firstLineIndex = None
self.isLoop = isLoop
self.lineIndex = lineIndex
self.lines = lines
def getIndexBeforeNextDeactivate( self ):
"Get index two lines before the deactivate command."
for lineIndex in xrange( self.lineIndex + 1, len( self.lines ) ):
line = self.lines[ lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'M103':
return lineIndex - 2
print( 'This should never happen in stretch, no deactivate command was found for this thread.' )
raise StopIteration, "You've reached the end of the line."
def getNext( self ):
"Get next line going backward or raise exception."
while self.lineIndex > 3:
if self.lineIndex == self.firstLineIndex:
raise StopIteration, "You've reached the end of the line."
if self.firstLineIndex == None:
self.firstLineIndex = self.lineIndex
nextLineIndex = self.lineIndex - 1
line = self.lines[ self.lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'M103':
if self.isLoop:
nextLineIndex = self.getIndexBeforeNextDeactivate()
else:
raise StopIteration, "You've reached the end of the line."
if firstWord == 'G1':
if self.isBeforeExtrusion():
if self.isLoop:
nextLineIndex = self.getIndexBeforeNextDeactivate()
else:
raise StopIteration, "You've reached the end of the line."
else:
self.lineIndex = nextLineIndex
return line
self.lineIndex = nextLineIndex
raise StopIteration, "You've reached the end of the line."
def isBeforeExtrusion( self ):
"Determine if index is two or more before activate command."
linearMoves = 0
for lineIndex in xrange( self.lineIndex + 1, len( self.lines ) ):
line = self.lines[ lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'G1':
linearMoves += 1
if firstWord == 'M101':
return linearMoves > 0
if firstWord == 'M103':
return False
print( 'This should never happen in isBeforeExtrusion in stretch, no activate command was found for this thread.' )
return False
class LineIteratorForward:
"Forward line iterator class."
def __init__( self, isLoop, lineIndex, lines ):
self.firstLineIndex = None
self.isLoop = isLoop
self.lineIndex = lineIndex
self.lines = lines
def getIndexJustAfterActivate( self ):
"Get index just after the activate command."
for lineIndex in xrange( self.lineIndex - 1, 3, - 1 ):
line = self.lines[ lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'M101':
return lineIndex + 1
print( 'This should never happen in stretch, no activate command was found for this thread.' )
raise StopIteration, "You've reached the end of the line."
def getNext( self ):
"Get next line or raise exception."
while self.lineIndex < len( self.lines ):
if self.lineIndex == self.firstLineIndex:
raise StopIteration, "You've reached the end of the line."
if self.firstLineIndex == None:
self.firstLineIndex = self.lineIndex
nextLineIndex = self.lineIndex + 1
line = self.lines[ self.lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'M103':
if self.isLoop:
nextLineIndex = self.getIndexJustAfterActivate()
else:
raise StopIteration, "You've reached the end of the line."
self.lineIndex = nextLineIndex
if firstWord == 'G1':
return line
raise StopIteration, "You've reached the end of the line."
class StretchRepository:
"A class to handle the stretch settings."
def __init__( self ):
"Set the default settings, execute title & settings fileName."
profile.addListsToCraftTypeRepository( 'skeinforge_tools.craft_plugins.stretch.html', self )
self.fileNameInput = settings.FileNameInput().getFromFileName( interpret.getGNUTranslatorGcodeFileTypeTuples(), 'Open File for Stretch', self, '' )
self.openWikiManualHelpPage = settings.HelpPage().getOpenFromAbsolute( 'http://www.bitsfrombytes.com/wiki/index.php?title=Skeinforge_Stretch' )
self.activateStretch = settings.BooleanSetting().getFromValue( 'Activate Stretch', self, False )
self.crossLimitDistanceOverPerimeterWidth = settings.FloatSpin().getFromValue( 3.0, 'Cross Limit Distance Over Perimeter Width (ratio):', self, 10.0, 5.0 )
self.loopStretchOverPerimeterWidth = settings.FloatSpin().getFromValue( 0.05, 'Loop Stretch Over Perimeter Width (ratio):', self, 0.25, 0.11 )
self.pathStretchOverPerimeterWidth = settings.FloatSpin().getFromValue( 0.0, 'Path Stretch Over Perimeter Width (ratio):', self, 0.2, 0.0 )
settings.LabelDisplay().getFromName( '- Perimeter -', self )
self.perimeterInsideStretchOverPerimeterWidth = settings.FloatSpin().getFromValue( 0.12, 'Perimeter Inside Stretch Over Perimeter Width (ratio):', self, 0.52, 0.32 )
self.perimeterOutsideStretchOverPerimeterWidth = settings.FloatSpin().getFromValue( 0.05, 'Perimeter Outside Stretch Over Perimeter Width (ratio):', self, 0.25, 0.1 )
self.stretchFromDistanceOverPerimeterWidth = settings.FloatSpin().getFromValue( 1.0, 'Stretch From Distance Over Perimeter Width (ratio):', self, 3.0, 2.0 )
self.executeTitle = 'Stretch'
def execute( self ):
"Stretch button has been clicked."
fileNames = polyfile.getFileOrDirectoryTypesUnmodifiedGcode( self.fileNameInput.value, interpret.getImportPluginFileNames(), self.fileNameInput.wasCancelled )
for fileName in fileNames:
writeOutput( fileName )
class StretchSkein:
"A class to stretch a skein of extrusions."
def __init__( self ):
self.distanceFeedRate = gcodec.DistanceFeedRate()
self.extruderActive = False
self.feedRateMinute = 959.0
self.isLoop = False
self.lineIndex = 0
self.lines = None
self.oldLocation = None
self.perimeterWidth = 0.4
def getCraftedGcode( self, gcodeText, stretchRepository ):
"Parse gcode text and store the stretch gcode."
self.lines = gcodec.getTextLines( gcodeText )
self.stretchRepository = stretchRepository
self.parseInitialization()
for self.lineIndex in xrange( self.lineIndex, len( self.lines ) ):
line = self.lines[ self.lineIndex ]
self.parseStretch( line )
return self.distanceFeedRate.output.getvalue()
def getCrossLimitedStretch( self, crossLimitedStretch, crossLineIterator, locationComplex ):
"Get cross limited relative stretch for a location."
try:
line = crossLineIterator.getNext()
except StopIteration:
return crossLimitedStretch
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
pointComplex = gcodec.getLocationFromSplitLine( self.oldLocation, splitLine ).dropAxis( 2 )
pointMinusLocation = locationComplex - pointComplex
pointMinusLocationLength = abs( pointMinusLocation )
if pointMinusLocationLength <= self.crossLimitDistanceFraction:
return crossLimitedStretch
parallelNormal = pointMinusLocation / pointMinusLocationLength
parallelStretch = euclidean.getDotProduct( parallelNormal, crossLimitedStretch ) * parallelNormal
if pointMinusLocationLength > self.crossLimitDistance:
return parallelStretch
crossNormal = complex( parallelNormal.imag, - parallelNormal.real )
crossStretch = euclidean.getDotProduct( crossNormal, crossLimitedStretch ) * crossNormal
crossPortion = ( self.crossLimitDistance - pointMinusLocationLength ) / self.crossLimitDistanceRemainder
return parallelStretch + crossStretch * crossPortion
def getRelativeStretch( self, locationComplex, lineIterator ):
"Get relative stretch for a location."
lastLocationComplex = locationComplex
oldTotalLength = 0.0
pointComplex = locationComplex
totalLength = 0.0
while 1:
try:
line = lineIterator.getNext()
except StopIteration:
locationMinusPoint = locationComplex - pointComplex
locationMinusPointLength = abs( locationMinusPoint )
if locationMinusPointLength > 0.0:
return locationMinusPoint / locationMinusPointLength
return complex()
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = splitLine[ 0 ]
pointComplex = gcodec.getLocationFromSplitLine( self.oldLocation, splitLine ).dropAxis( 2 )
locationMinusPoint = lastLocationComplex - pointComplex
locationMinusPointLength = abs( locationMinusPoint )
totalLength += locationMinusPointLength
if totalLength >= self.stretchFromDistance:
distanceFromRatio = ( self.stretchFromDistance - oldTotalLength ) / locationMinusPointLength
totalPoint = distanceFromRatio * pointComplex + ( 1.0 - distanceFromRatio ) * lastLocationComplex
locationMinusTotalPoint = locationComplex - totalPoint
return locationMinusTotalPoint / self.stretchFromDistance
lastLocationComplex = pointComplex
oldTotalLength = totalLength
def getStretchedLine( self, splitLine ):
"Get stretched gcode line."
location = gcodec.getLocationFromSplitLine( self.oldLocation, splitLine )
self.feedRateMinute = gcodec.getFeedRateMinute( self.feedRateMinute, splitLine )
self.oldLocation = location
if self.extruderActive and self.threadMaximumAbsoluteStretch > 0.0:
return self.getStretchedLineFromIndexLocation( self.lineIndex - 1, self.lineIndex + 1, location )
if self.isJustBeforeExtrusion() and self.threadMaximumAbsoluteStretch > 0.0:
return self.getStretchedLineFromIndexLocation( self.lineIndex - 1, self.lineIndex + 1, location )
return self.lines[ self.lineIndex ]
def getStretchedLineFromIndexLocation( self, indexPreviousStart, indexNextStart, location ):
"Get stretched gcode line from line index and location."
crossIteratorForward = LineIteratorForward( self.isLoop, indexNextStart, self.lines )
crossIteratorBackward = LineIteratorBackward( self.isLoop, indexPreviousStart, self.lines )
iteratorForward = LineIteratorForward( self.isLoop, indexNextStart, self.lines )
iteratorBackward = LineIteratorBackward( self.isLoop, indexPreviousStart, self.lines )
locationComplex = location.dropAxis( 2 )
relativeStretch = self.getRelativeStretch( locationComplex, iteratorForward ) + self.getRelativeStretch( locationComplex, iteratorBackward )
relativeStretch *= 0.8
# print( 'relativeStretch' )
# print( relativeStretch )
relativeStretch = self.getCrossLimitedStretch( relativeStretch, crossIteratorForward, locationComplex )
relativeStretch = self.getCrossLimitedStretch( relativeStretch, crossIteratorBackward, locationComplex )
# print( relativeStretch )
relativeStretchLength = abs( relativeStretch )
if relativeStretchLength > 1.0:
relativeStretch /= relativeStretchLength
absoluteStretch = relativeStretch * self.threadMaximumAbsoluteStretch
stretchedPoint = location.dropAxis( 2 ) + absoluteStretch
return self.distanceFeedRate.getLinearGcodeMovementWithFeedRate( self.feedRateMinute, stretchedPoint, location.z )
def isJustBeforeExtrusion( self ):
"Determine if activate command is before linear move command."
for lineIndex in xrange( self.lineIndex + 1, len( self.lines ) ):
line = self.lines[ lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
if firstWord == 'G1' or firstWord == 'M103':
return False
if firstWord == 'M101':
return True
print( 'This should never happen in isJustBeforeExtrusion in stretch, no activate or deactivate command was found for this thread.' )
return False
def parseInitialization( self ):
"Parse gcode initialization and store the parameters."
for self.lineIndex in xrange( len( self.lines ) ):
line = self.lines[ self.lineIndex ]
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
firstWord = gcodec.getFirstWord( splitLine )
self.distanceFeedRate.parseSplitLine( firstWord, splitLine )
if firstWord == '()':
self.distanceFeedRate.addLine( '( stretch )' )
return
elif firstWord == '(':
perimeterWidth = float( splitLine[ 1 ] )
self.crossLimitDistance = self.perimeterWidth * self.stretchRepository.crossLimitDistanceOverPerimeterWidth.value
self.loopMaximumAbsoluteStretch = self.perimeterWidth * self.stretchRepository.loopStretchOverPerimeterWidth.value
self.pathAbsoluteStretch = self.perimeterWidth * self.stretchRepository.pathStretchOverPerimeterWidth.value
self.perimeterInsideAbsoluteStretch = self.perimeterWidth * self.stretchRepository.perimeterInsideStretchOverPerimeterWidth.value
self.perimeterOutsideAbsoluteStretch = self.perimeterWidth * self.stretchRepository.perimeterOutsideStretchOverPerimeterWidth.value
self.stretchFromDistance = self.stretchRepository.stretchFromDistanceOverPerimeterWidth.value * perimeterWidth
self.threadMaximumAbsoluteStretch = self.pathAbsoluteStretch
self.crossLimitDistanceFraction = 0.333333333 * self.crossLimitDistance
self.crossLimitDistanceRemainder = self.crossLimitDistance - self.crossLimitDistanceFraction
self.distanceFeedRate.addLine( line )
def parseStretch( self, line ):
"Parse a gcode line and add it to the stretch skein."
splitLine = gcodec.getSplitLineBeforeBracketSemicolon( line )
if len( splitLine ) < 1:
return
firstWord = splitLine[ 0 ]
if firstWord == 'G1':
line = self.getStretchedLine( splitLine )
elif firstWord == 'M101':
self.extruderActive = True
elif firstWord == 'M103':
self.extruderActive = False
self.setStretchToPath()
elif firstWord == '(':
self.isLoop = True
self.threadMaximumAbsoluteStretch = self.loopMaximumAbsoluteStretch
elif firstWord == '()':
self.setStretchToPath()
elif firstWord == '(':
self.isLoop = True
self.threadMaximumAbsoluteStretch = self.perimeterInsideAbsoluteStretch
if splitLine[ 1 ] == 'outer':
self.threadMaximumAbsoluteStretch = self.perimeterOutsideAbsoluteStretch
elif firstWord == '()':
self.setStretchToPath()
self.distanceFeedRate.addLine( line )
def setStretchToPath( self ):
"Set the thread stretch to path stretch and is loop false."
self.isLoop = False
self.threadMaximumAbsoluteStretch = self.pathAbsoluteStretch
def main():
"Display the stretch dialog."
if len( sys.argv ) > 1:
writeOutput( ' '.join( sys.argv[ 1 : ] ) )
else:
settings.startMainLoopFromConstructor( getNewRepository() )
if __name__ == "__main__":
main()