Remove dwindle, it did not really improve results.

This commit is contained in:
daid 2012-09-26 15:12:14 +02:00
parent f4d2e92aab
commit 58683e4eb5
3 changed files with 3 additions and 14 deletions

View file

@ -337,11 +337,11 @@ def getProfileInformation():
'Minimum_Distance_for_Early_Shutdown_millimeters': DEFSET,
'Slowdown_Startup_Steps_positive_integer': DEFSET,
},'dwindle': {
'Activate_Dwindle': storedSetting('enable_dwindle'),
'Activate_Dwindle': "False",
'End_Rate_Multiplier_ratio': '0.5',
'Pent_Up_Volume_cubic_millimeters': storedSetting('dwindle_pent_up_volume'),
'Pent_Up_Volume_cubic_millimeters': "0.4",
'Slowdown_Steps_positive_integer': '5',
'Slowdown_Volume_cubic_millimeters': storedSetting('dwindle_slowdown_volume'),
'Slowdown_Volume_cubic_millimeters': "5.0",
},'splodge': {
'Activate_Splodge': "False",
'Initial_Lift_over_Extra_Thickness_ratio': DEFSET,

View file

@ -67,13 +67,6 @@ class expertConfigWindow(configBase.configWindowBase):
configBase.TitleRow(right, "Retraction")
c = configBase.SettingRow(right, "Retract on jumps only", 'retract_on_jumps_only', True, 'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.')
configBase.TitleRow(right, "Dwindle")
c = configBase.SettingRow(right, "Enable dwindle", 'enable_dwindle', False, 'Dwindle is used to slow down near the end of a printed line, and reducing the amount of filament printed near the end. This to release the preasure on the printer head.')
c = configBase.SettingRow(right, "Pent up volume (mm3)", 'dwindle_pent_up_volume', '0.4', 'Amount of plastic inside the nozzle under pressure. This normally comes out as ooze after printing.')
validators.validFloat(c, 0.0001)
c = configBase.SettingRow(right, "Slow down volume (mm3)", 'dwindle_slowdown_volume', '5.0', 'Amount of printing volume that is used to slow down to release the pressure.')
validators.validFloat(c, 0.0001)
main.Fit()
self.Fit()

View file

@ -71,10 +71,6 @@ profileDefaultSettings = {
'raft_interface_material_amount': '100',
'bottom_thickness': '0.3',
'enable_dwindle': 'False',
'dwindle_pent_up_volume': '0.4',
'dwindle_slowdown_volume': '5.0',
'add_start_end_gcode': 'True',
'gcode_extension': 'gcode',
'alternative_center': '',