mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 00:52:04 +00:00
Improved Z-Bolt Profiles (#13240)
# Description - Changing the filament name from Z-Bolt PLA (ABS, ABS HT, PETG, PA) to Generic PLA @Z-Bolt (etc); - Increased size of g-code thumbnails for S800 Dual and S1000/S1000 Dual; - The profile structure has been optimized to reduce the variety of profiles for each printer model; - Extruder temperatures for all filaments have been increased for hardened steel nozzles; - New process profiles have been added for the 0.6mm nozzle (0.16mm High Quality and 0.20mm High Quality); - Disabling multicolor printing for single-head printers; - The "_BEFORE_LAYER_CHANGE" and "_AFTER_LAYER_CHANGE" macros have been added to printer profiles. <!-- > Please provide a summary of the changes made in this PR. Include details such as: > * What issue does this PR address or fix? > * What new features or enhancements does this PR introduce? > * Are there any breaking changes or dependencies that need to be considered? --> # Screenshots/Recordings/Graphs <img width="762" height="257" alt="изображение" src="https://github.com/user-attachments/assets/b5c2ef09-343f-47e8-adb5-fcf682866882" /> <img width="731" height="361" alt="изображение" src="https://github.com/user-attachments/assets/b3259fed-7698-4ab2-89d7-b6b00d974b02" /> <img width="736" height="889" alt="изображение" src="https://github.com/user-attachments/assets/be79822a-da82-4715-a5c0-c393f0cb98b7" /> <!-- > Please attach relevant screenshots to showcase the UI changes. > Please attach images that can help explain the changes. --> ## Tests OrcaSlicer_profile_validator.py <img width="1053" height="84" alt="изображение" src="https://github.com/user-attachments/assets/a3427a51-e77f-40f3-a7b4-efbd62992290" /> check_profiles.yml <img width="2203" height="681" alt="изображение" src="https://github.com/user-attachments/assets/994d0423-660a-4e0e-be4f-4b1c72b653f3" /> orca_extra_profile_check.py <img width="1024" height="142" alt="изображение" src="https://github.com/user-attachments/assets/ddd8e3bf-b845-48fc-b736-ca80c138ce64" /> <!-- > Please describe the tests that you have conducted to verify the changes made in this PR. -->
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS @Z-Bolt 0.4 nozzle",
|
||||
"inherits": "Generic ABS @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS @0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL204",
|
||||
"filament_id": "GFL204",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "Generic ABS @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS @0.6 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL206",
|
||||
"filament_id": "GFL206",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS @Z-Bolt 0.8 nozzle",
|
||||
"inherits": "Generic ABS @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS @0.8 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL208",
|
||||
"filament_id": "GFL208",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
63
resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt.json
Normal file
63
resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS @Z-Bolt",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"renamed_from": "Z-Bolt ABS",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL200",
|
||||
"filament_id": "GFL200",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"110"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS HT @Z-Bolt 0.4 nozzle",
|
||||
"inherits": "Generic ABS HT @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS HT @0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL504",
|
||||
"filament_id": "GFL504",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS HT @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "Generic ABS HT @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS HT @0.6 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL506",
|
||||
"filament_id": "GFL506",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS HT @Z-Bolt 0.8 nozzle",
|
||||
"inherits": "Generic ABS HT @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS HT @0.8 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL508",
|
||||
"filament_id": "GFL508",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS HT @Z-Bolt",
|
||||
"inherits": "Generic ABS @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt ABS HT",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL500",
|
||||
"filament_id": "GFL500",
|
||||
"instantiation": "true",
|
||||
"description": "Use this filament profile to print big ABS models with chamber heating",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PA @Z-Bolt 0.4 nozzle",
|
||||
"inherits": "Generic PA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PA @0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL404",
|
||||
"filament_id": "GFL404",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PA @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "Generic PA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PA @0.6 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL406",
|
||||
"filament_id": "GFL406",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PA @Z-Bolt 0.8 nozzle",
|
||||
"inherits": "Generic PA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PA @0.8 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL408",
|
||||
"filament_id": "GFL408",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
81
resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt.json
Normal file
81
resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt.json
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PA @Z-Bolt",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"renamed_from": "Z-Bolt PA",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL400",
|
||||
"filament_id": "GFL400",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"140"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"130"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PETG @Z-Bolt 0.4 nozzle",
|
||||
"inherits": "Generic PETG @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PETG @0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL304",
|
||||
"filament_id": "GFL304",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PETG @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "Generic PETG @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PETG @0.6 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL306",
|
||||
"filament_id": "GFL306",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PETG @Z-Bolt 0.8 nozzle",
|
||||
"inherits": "Generic PETG @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PETG @0.8 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL308",
|
||||
"filament_id": "GFL308",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
87
resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt.json
Normal file
87
resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PETG @Z-Bolt",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"renamed_from": "Z-Bolt PETG",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL300",
|
||||
"filament_id": "GFL300",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PLA @Z-Bolt 0.4 nozzle",
|
||||
"inherits": "Generic PLA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PLA @0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL100",
|
||||
"filament_id": "GFL100",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PLA @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "Generic PLA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PLA @0.6 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL106",
|
||||
"filament_id": "GFL106",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PLA @Z-Bolt 0.8 nozzle",
|
||||
"inherits": "Generic PLA @Z-Bolt",
|
||||
"renamed_from": "Z-Bolt PLA @0.8 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL108",
|
||||
"filament_id": "GFL108",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
66
resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt.json
Normal file
66
resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt.json
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PLA @Z-Bolt",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"renamed_from": "Z-Bolt PLA",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL100",
|
||||
"filament_id": "GFL100",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS @0.4 nozzle",
|
||||
"inherits": "Z-Bolt ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL204",
|
||||
"filament_id": "GFL204",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS @0.6 nozzle",
|
||||
"inherits": "Z-Bolt ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL206",
|
||||
"filament_id": "GFL206",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS @0.8 nozzle",
|
||||
"inherits": "Z-Bolt ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL208",
|
||||
"filament_id": "GFL208",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL200",
|
||||
"filament_id": "GFL200",
|
||||
"instantiation": "false",
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"110"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS HT @0.4 nozzle",
|
||||
"renamed_from": "Z-Bolt ABS HT@0.4 nozzle",
|
||||
"inherits": "Z-Bolt ABS HT @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL504",
|
||||
"filament_id": "GFL504",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS HT @0.6 nozzle",
|
||||
"inherits": "Z-Bolt ABS HT @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL506",
|
||||
"filament_id": "GFL506",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS HT @0.8 nozzle",
|
||||
"inherits": "Z-Bolt ABS HT @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL508",
|
||||
"filament_id": "GFL508",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS HT @base",
|
||||
"inherits": "Z-Bolt ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL500",
|
||||
"filament_id": "GFL500",
|
||||
"instantiation": "false",
|
||||
"description": "Use this filament profile to print big ABS models with chamber heating",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS HT",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL105",
|
||||
"filament_id": "GFL105",
|
||||
"instantiation": "true",
|
||||
"description": "Use this filament profile to print big ABS models with chamber heating",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,62 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt ABS",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL101",
|
||||
"filament_id": "GFL101",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"110"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PA @0.4 nozzle",
|
||||
"inherits": "Z-Bolt PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL404",
|
||||
"filament_id": "GFL404",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PA @0.6 nozzle",
|
||||
"inherits": "Z-Bolt PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL406",
|
||||
"filament_id": "GFL406",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PA @0.8 nozzle",
|
||||
"inherits": "Z-Bolt PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL408",
|
||||
"filament_id": "GFL408",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,51 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PA @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL400",
|
||||
"filament_id": "GFL400",
|
||||
"instantiation": "false",
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"140"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"130"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"80"
|
||||
]
|
||||
}
|
||||
@@ -1,80 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PA",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL103",
|
||||
"filament_id": "GFL103",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"140"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"130"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"140"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"80"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PETG @0.4 nozzle",
|
||||
"inherits": "Z-Bolt PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL304",
|
||||
"filament_id": "GFL304",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PETG @0.6 nozzle",
|
||||
"inherits": "Z-Bolt PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL306",
|
||||
"filament_id": "GFL306",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PETG @0.8 nozzle",
|
||||
"inherits": "Z-Bolt PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL308",
|
||||
"filament_id": "GFL308",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PETG @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL300",
|
||||
"filament_id": "GFL300",
|
||||
"instantiation": "false",
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
]
|
||||
}
|
||||
@@ -1,86 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PETG",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL102",
|
||||
"filament_id": "GFL102",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PLA @0.4 nozzle",
|
||||
"inherits": "Z-Bolt PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL104",
|
||||
"filament_id": "GFL104",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PLA @0.6 nozzle",
|
||||
"inherits": "Z-Bolt PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL106",
|
||||
"filament_id": "GFL106",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PLA @0.8 nozzle",
|
||||
"inherits": "Z-Bolt PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL108",
|
||||
"filament_id": "GFL108",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PLA @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL100",
|
||||
"filament_id": "GFL100",
|
||||
"instantiation": "false",
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"215"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"215"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
]
|
||||
}
|
||||
@@ -1,65 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Z-Bolt PLA",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL100",
|
||||
"filament_id": "GFL100",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"215"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"215"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 0.8 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.8 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 0.8 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.8 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 0.8 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.8 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.8 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,133 +1,136 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM030",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "1000",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"1000x0",
|
||||
"1000x1000",
|
||||
"0x1000"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S1000",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM030",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "1000",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"1000x0",
|
||||
"1000x1000",
|
||||
"0x1000"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S1000",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,27 +1,29 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM031",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1.4"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM031",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.7"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,30 +1,32 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM032",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"3"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM032",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,32 +1,35 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM033",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.4",
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S1000",
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"change_filament_gcode": "G91\nG1 Z{z_hop[0]} F1000\nG90",
|
||||
"machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"inherits": "Z-Bolt S1000 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM033",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.4",
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S1000",
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"change_filament_gcode": "G91\nG1 Z{z_hop[0]} F1000\nG90",
|
||||
"machine_tool_change_time": "1",
|
||||
"machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,28 +1,30 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM034",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1.4"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM034",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.7"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,31 +1,33 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM035",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8",
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"3"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S1000 Dual 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S1000 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM035",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8",
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S1000 Dual",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S1000 Dual",
|
||||
"model_id": "Z-Bolt-S1000 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S1000_buildplate_model.STL",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S1000 Dual",
|
||||
"model_id": "Z-Bolt-S1000 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S1000_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S1000",
|
||||
"model_id": "Z-Bolt-S1000",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S1000_buildplate_model.STL",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S1000",
|
||||
"model_id": "Z-Bolt-S1000",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S1000_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,133 +1,134 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S300 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM001",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S300",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "350",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S300",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S300 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM001",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S300",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "350",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S300",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S300 Dual",
|
||||
"model_id": "Z-Bolt-S300 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S300_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S300 Dual",
|
||||
"model_id": "Z-Bolt-S300 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S300_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S300",
|
||||
"model_id": "Z-Bolt-S300",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S300_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S300",
|
||||
"model_id": "Z-Bolt-S300",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S300_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,133 +1,134 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S400 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM011",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S400",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "700",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"400x0",
|
||||
"400x400",
|
||||
"0x400"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S400",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S400 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM011",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S400",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "700",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"400x0",
|
||||
"400x400",
|
||||
"0x400"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S400",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S400 Dual",
|
||||
"model_id": "Z-Bolt-S400 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S400_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S400 Dual",
|
||||
"model_id": "Z-Bolt-S400 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S400_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S400",
|
||||
"model_id": "Z-Bolt-S400",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S400_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S400",
|
||||
"model_id": "Z-Bolt-S400",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S400_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,133 +1,133 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S600 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM021",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S600",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "900",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"600x0",
|
||||
"600x600",
|
||||
"0x600"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S600",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S600 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM021",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"printer_model": "Z-Bolt S600",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "900",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"600x0",
|
||||
"600x600",
|
||||
"0x600"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S600",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S600 Dual",
|
||||
"model_id": "Z-Bolt-S600 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S600_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S600 Dual",
|
||||
"model_id": "Z-Bolt-S600 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S600_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S600",
|
||||
"model_id": "Z-Bolt-S600",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S600_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S600",
|
||||
"model_id": "Z-Bolt-S600",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S600_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt"
|
||||
}
|
||||
@@ -1,136 +1,139 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM027",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"nozzle_diameter": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "802",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"802x0",
|
||||
"802x802",
|
||||
"0x802"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S800",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1.4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_chamber_temp_control": "1",
|
||||
"change_filament_gcode": "G91\nG1 Z{z_hop[0]} F1000\nG90",
|
||||
"machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"inherits": "fdm_zbolt_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM027",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"printer_structure": "corexy",
|
||||
"manual_filament_change": "0",
|
||||
"single_extruder_multi_material": "0",
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"nozzle_diameter": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_height": "802",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"802x0",
|
||||
"802x802",
|
||||
"0x802"
|
||||
],
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S800",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "70",
|
||||
"extruder_clearance_height_to_lid": "200",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"nozzle_type": "hardened_steel",
|
||||
"machine_tool_change_time": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"change_filament_gcode": "G91\nG1 Z{z_hop[0]} F1000\nG90",
|
||||
"machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}",
|
||||
"machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,28 +1,30 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM028",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S800 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"2"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"inherits": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM028",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"printer_variant": "0.6",
|
||||
"default_print_profile": "0.30mm Standard @Z-Bolt S800 0.6 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.42"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.7"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,31 +1,33 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM029",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8",
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S800 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"3"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
]
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "Z-Bolt S800 Dual 0.8 nozzle",
|
||||
"inherits": "Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "GM029",
|
||||
"instantiation": "true",
|
||||
"printer_settings_id": "Z-Bolt",
|
||||
"nozzle_diameter": [
|
||||
"0.8",
|
||||
"0.8"
|
||||
],
|
||||
"printer_model": "Z-Bolt S800 Dual",
|
||||
"printer_variant": "0.8",
|
||||
"default_print_profile": "0.40mm Standard @Z-Bolt S800 0.8 nozzle",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"3"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
],
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S800 Dual",
|
||||
"model_id": "Z-Bolt-S800 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S800_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base"
|
||||
}
|
||||
"type": "machine_model",
|
||||
"name": "Z-Bolt S800 Dual",
|
||||
"model_id": "Z-Bolt-S800 Dual",
|
||||
"nozzle_diameter": "0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Z-Bolt",
|
||||
"bed_model": "Z-Bolt_S800_buildplate_model.stl",
|
||||
"bed_texture": "Z-Bolt_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt",
|
||||
"thumbnails": "144x144/PNG,900x900/PNG",
|
||||
"thumbnails_format": "PNG"
|
||||
}
|
||||
@@ -1,119 +1,120 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"support_chamber_temp_control": "0",
|
||||
"printer_technology": "FFF",
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_colour": [
|
||||
"#FCE94F"
|
||||
],
|
||||
"extruder_offset": [
|
||||
"0x0"
|
||||
],
|
||||
"gcode_flavor": "marlin",
|
||||
"silent_mode": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printable_height": "900",
|
||||
"extruder_clearance_radius": "100",
|
||||
"extruder_clearance_height_to_rod": "50",
|
||||
"extruder_clearance_height_to_lid": "150",
|
||||
"printer_settings_id": "",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retract_when_changing_layer": [
|
||||
"1"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"60"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
"z_lift_type": "NormalLift",
|
||||
"default_print_profile": "",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"machine_start_gcode": "",
|
||||
"machine_end_gcode": ""
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"support_chamber_temp_control": "0",
|
||||
"printer_technology": "FFF",
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_colour": [
|
||||
"#FCE94F"
|
||||
],
|
||||
"extruder_offset": [
|
||||
"0x0"
|
||||
],
|
||||
"gcode_flavor": "marlin",
|
||||
"silent_mode": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printable_height": "900",
|
||||
"extruder_clearance_radius": "100",
|
||||
"extruder_clearance_height_to_rod": "50",
|
||||
"extruder_clearance_height_to_lid": "150",
|
||||
"printer_settings_id": "",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retract_when_changing_layer": [
|
||||
"1"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"60"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
"z_lift_type": "NormalLift",
|
||||
"default_print_profile": "",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n_BEFORE_LAYER_CHANGE",
|
||||
"layer_change_gcode": "_AFTER_LAYER_CHANGE Z={layer_z}",
|
||||
"machine_start_gcode": "",
|
||||
"machine_end_gcode": ""
|
||||
}
|
||||
@@ -1,118 +1,118 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "fdm_zbolt_common",
|
||||
"inherits": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"gcode_flavor": "klipper",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"auxiliary_fan": "0",
|
||||
"default_filament_profile": [
|
||||
"Z-Bolt Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S300",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"z_hop_types": "Normal Lift",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"machine_start_gcode": "START_PRINT",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
"type": "machine",
|
||||
"name": "fdm_zbolt_common",
|
||||
"inherits": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"gcode_flavor": "klipper",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"auxiliary_fan": "0",
|
||||
"default_filament_profile": [
|
||||
"Generic PLA @Z-Bolt"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Z-Bolt S300",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"9000",
|
||||
"9000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.4"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0.4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"z_hop_types": "Normal Lift",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"single_extruder_multi_material": "1",
|
||||
"machine_start_gcode": "START_PRINT",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm Extra Fine @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.08mm Extra Fine @Z-Bolt S300;0.08mm Extra Fine @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP001",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm Extra Fine @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP001",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm Extra Fine @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP101",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm High Quality @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.08mm High Quality @Z-Bolt S300;0.08mm High Quality @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP003",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "210",
|
||||
"inner_wall_speed": "120",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "150",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm High Quality @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP003",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "210",
|
||||
"inner_wall_speed": "120",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "150",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.08mm High Quality @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.08",
|
||||
"from": "system",
|
||||
"setting_id": "GP103",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "210",
|
||||
"inner_wall_speed": "120",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "150",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.12mm Fine @Z-Bolt S300;0.12mm Fine @Z-Bolt S400;0.12mm Fine @Z-Bolt S600;0.12mm Fine @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP005",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP005",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP105",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Z-Bolt S600",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP205",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm Fine @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP305",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S800 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm High Quality @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.12mm High Quality @Z-Bolt S300;0.12mm High Quality @Z-Bolt S400;0.12mm High Quality @Z-Bolt S600;0.12mm High Quality @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP006",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "230",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "180",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm High Quality @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP006",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "230",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "180",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm High Quality @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP106",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "230",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "180",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm High Quality @Z-Bolt S600",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP206",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "230",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "180",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.12mm High Quality @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.12",
|
||||
"from": "system",
|
||||
"setting_id": "GP306",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "230",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "180",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S800 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.16mm High Quality @Z-Bolt S300;0.16mm High Quality @Z-Bolt S400;0.16mm High Quality @Z-Bolt S600;0.16mm High Quality @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP008",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "250",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "200",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP010H",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"outer_wall_speed": "40",
|
||||
"inner_wall_speed": "100",
|
||||
"internal_solid_infill_speed": "100",
|
||||
"top_surface_speed": "100",
|
||||
"default_acceleration": "5000",
|
||||
"outer_wall_acceleration": "2500",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP008",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "250",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "200",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP108",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "250",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "200",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt S600",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP208",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "250",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "200",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm High Quality @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP308",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.",
|
||||
"default_acceleration": "4000",
|
||||
"gap_infill_speed": "250",
|
||||
"inner_wall_speed": "150",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"outer_wall_speed": "60",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "200",
|
||||
"top_surface_speed": "150",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S800 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Z-Bolt 0.4 nozzle",
|
||||
"renamed_from": "0.16mm Optimal @Z-Bolt S300;0.16mm Optimal @Z-Bolt S400;0.16mm Optimal @Z-Bolt S600;0.16mm Optimal @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP009",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle",
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle",
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S800 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Z-Bolt S300",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP009",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.4 nozzle",
|
||||
"Z-Bolt S300 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Z-Bolt S400",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP109",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.4 nozzle",
|
||||
"Z-Bolt S400 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Z-Bolt S600",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP209",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.4 nozzle",
|
||||
"Z-Bolt S600 Dual 0.4 nozzle",
|
||||
"Z-Bolt S1000 0.4 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Optimal @Z-Bolt S800",
|
||||
"inherits": "fdm_process_zbolt_0.16",
|
||||
"from": "system",
|
||||
"setting_id": "GP309",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S800 Dual 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt 0.6 nozzle",
|
||||
"renamed_from": "0.16mm Standard @Z-Bolt S300 0.6 nozzle;0.16mm Standard @Z-Bolt S400 0.6 nozzle;0.16mm Standard @Z-Bolt S600 0.6 nozzle;0.16mm Standard @Z-Bolt S800 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP010",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle",
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle",
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S800 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +1,16 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP010",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP010",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S300 0.6 nozzle",
|
||||
"Z-Bolt S300 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +1,16 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP110",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP110",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S400 0.6 nozzle",
|
||||
"Z-Bolt S400 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP210",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "process",
|
||||
"name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle",
|
||||
"inherits": "fdm_process_zbolt_0.16_nozzle_0.6",
|
||||
"from": "system",
|
||||
"setting_id": "GP210",
|
||||
"instantiation": "true",
|
||||
"description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"smooth_coefficient": "150",
|
||||
"overhang_totally_speed": "50",
|
||||
"compatible_printers": [
|
||||
"Z-Bolt S600 0.6 nozzle",
|
||||
"Z-Bolt S600 Dual 0.6 nozzle",
|
||||
"Z-Bolt S1000 0.6 nozzle",
|
||||
"Z-Bolt S1000 Dual 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user