Improve defaults for raft settings

These better defaults and formulas are coming from Paul, one of our material testers.
This commit is contained in:
Ghostkeeper 2016-07-11 14:01:32 +02:00
parent 2a949237c1
commit f424097387
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -1912,7 +1912,7 @@
"unit": "mm",
"type": "float",
"default_value": 0.5,
"value": "layer_height_0",
"value": "0 if adhesion_type == \"raft\" else layer_height_0",
"minimum_value": "0",
"maximum_value_warning": "10.0",
"settable_per_mesh": false,
@ -2405,7 +2405,7 @@
"description": "If the raft is enabled, this is the extra raft area around the object which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.",
"unit": "mm",
"type": "float",
"default_value": 5,
"default_value": 15,
"minimum_value_warning": "0",
"maximum_value_warning": "10",
"enabled": "adhesion_type == \"raft\""
@ -2455,6 +2455,7 @@
"unit": "mm",
"type": "float",
"default_value": 0.1,
"value": "layer_height",
"minimum_value": "0",
"maximum_value_warning": "2.0",
"enabled": "adhesion_type == \"raft\"",
@ -2467,7 +2468,8 @@
"description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.",
"unit": "mm",
"type": "float",
"default_value": 0.3,
"default_value": 0.4,
"value": "line_width",
"minimum_value": "0.0001",
"maximum_value_warning": "machine_nozzle_size * 2",
"enabled": "adhesion_type == \"raft\"",
@ -2480,7 +2482,7 @@
"description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.",
"unit": "mm",
"type": "float",
"default_value": 0.3,
"default_value": 0.4,
"minimum_value": "0.0001",
"maximum_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\"",
@ -2494,7 +2496,8 @@
"description": "Layer thickness of the middle raft layer.",
"unit": "mm",
"type": "float",
"default_value": 0.27,
"default_value": 0.15,
"value": "layer_height * 1.5",
"minimum_value": "0",
"maximum_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\"",
@ -2507,7 +2510,7 @@
"description": "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the bed.",
"unit": "mm",
"type": "float",
"default_value": 1,
"default_value": 0.7,
"value": "line_width * 2",
"minimum_value": "0.0001",
"maximum_value_warning": "machine_nozzle_size * 2",
@ -2521,7 +2524,8 @@
"description": "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers.",
"unit": "mm",
"type": "float",
"default_value": 1.0,
"default_value": 0.9,
"value": "raft_interface_line_width + 0.2",
"minimum_value": "0",
"maximum_value_warning": "15.0",
"enabled": "adhesion_type == \"raft\"",
@ -2535,6 +2539,7 @@
"unit": "mm",
"type": "float",
"default_value": 0.3,
"value": "layer_height_0 * 1.2",
"minimum_value": "0",
"maximum_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\"",
@ -2547,10 +2552,10 @@
"description": "Width of the lines in the base raft layer. These should be thick lines to assist in bed adhesion.",
"unit": "mm",
"type": "float",
"default_value": 1,
"default_value": 0.8,
"minimum_value": "0.0001",
"value": "line_width * 2",
"maximum_value_warning": "machine_nozzle_size * 2",
"value": "machine_nozzle_size * 2",
"maximum_value_warning": "machine_nozzle_size * 3",
"enabled": "adhesion_type == \"raft\"",
"settable_per_mesh": false,
"settable_per_extruder": true
@ -2561,7 +2566,8 @@
"description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.",
"unit": "mm",
"type": "float",
"default_value": 3.0,
"default_value": 1.6,
"value": "raft_base_line_width * 2",
"minimum_value": "0.0001",
"maximum_value_warning": "100",
"enabled": "adhesion_type == \"raft\"",
@ -2605,12 +2611,12 @@
"description": "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.",
"unit": "mm/s",
"type": "float",
"default_value": 20,
"default_value": 15,
"value": "raft_speed * 0.75",
"minimum_value": "0.1",
"maximum_value": "299792458000",
"maximum_value_warning": "150",
"enabled": "adhesion_type == \"raft\"",
"value": "raft_speed",
"settable_per_mesh": false,
"settable_per_extruder": true
},