Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sovol printer profiles #963

Merged
merged 19 commits into from May 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
99 changes: 99 additions & 0 deletions resources/profiles/Sovol.json
@@ -0,0 +1,99 @@
{
"name": "Sovol",
"url": "",
"version": "01.00.00.00",
"force_update": "0",
"description": "Sovol configurations",
"machine_model_list": [
{
"name": "Sovol SV01 Pro",
"sub_path": "machine/Sovol SV01 Pro.json"
},
{
"name": "Sovol SV02",
"sub_path": "machine/Sovol SV02.json"
},
{
"name": "Sovol SV05",
"sub_path": "machine/Sovol SV05.json"
}
],
"process_list": [
{
"name": "fdm_process_common",
"sub_path": "process/fdm_process_common.json"
},
{
"name": "0.18mm Optimal @Sovol SV01Pro",
"sub_path": "process/0.18mm Optimal @Sovol SV01Pro.json"
},
{
"name": "0.18mm Optimal @Sovol SV02",
"sub_path": "process/0.18mm Optimal @Sovol SV02.json"
},
{
"name": "0.18mm Optimal @Sovol SV05",
"sub_path": "process/0.18mm Optimal @Sovol SV05.json"
},
{
"name": "0.20mm Standard @Sovol SV01Pro",
"sub_path": "process/0.20mm Standard @Sovol SV01Pro.json"
},
{
"name": "0.20mm Standard @Sovol SV02",
"sub_path": "process/0.20mm Standard @Sovol SV02.json"
},
{
"name": "0.20mm Standard @Sovol SV05",
"sub_path": "process/0.20mm Standard @Sovol SV05.json"
}
],
"filament_list": [
{
"name": "fdm_filament_common",
"sub_path": "filament/fdm_filament_common.json"
},
{
"name": "fdm_filament_abs",
"sub_path": "filament/fdm_filament_abs.json"
},
{
"name": "fdm_filament_pet",
"sub_path": "filament/fdm_filament_pet.json"
},
{
"name": "fdm_filament_pla",
"sub_path": "filament/fdm_filament_pla.json"
},
{
"name": "Sovol Generic ABS",
"sub_path": "filament/Sovol Generic ABS.json"
},
{
"name": "Sovol Generic PETG",
"sub_path": "filament/Sovol Generic PETG.json"
},
{
"name": "Sovol Generic PLA",
"sub_path": "filament/Sovol Generic PLA.json"
}
],
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "Sovol SV01 Pro 0.4 nozzle",
"sub_path": "machine/Sovol SV01 Pro 0.4 nozzle.json"
},
{
"name": "Sovol SV02 0.4 nozzle",
"sub_path": "machine/Sovol SV02 0.4 nozzle.json"
},
{
"name": "Sovol SV05 0.4 nozzle",
"sub_path": "machine/Sovol SV05 0.4 nozzle.json"
}
]
}
20 changes: 20 additions & 0 deletions resources/profiles/Sovol/filament/Sovol Generic ABS.json
@@ -0,0 +1,20 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"name": "Sovol Generic ABS",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.926"
],
"filament_max_volumetric_speed": [
"12"
],
"compatible_printers": [
"Sovol SV01 Pro 0.4 nozzle",
"Sovol SV02 0.4 nozzle",
"Sovol SV05 0.4 nozzle"
]
}
47 changes: 47 additions & 0 deletions resources/profiles/Sovol/filament/Sovol Generic PETG.json
@@ -0,0 +1,47 @@
{
"type": "filament",
"filament_id": "GFG99",
"setting_id": "GFSG99",
"name": "Sovol Generic PETG",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pet",
"reduce_fan_stop_start_freq": [
"1"
],
"slow_down_for_layer_cooling": [
"1"
],
"fan_cooling_layer_time": [
"30"
],
"overhang_fan_speed": [
"90"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"20"
],
"slow_down_min_speed": [
"10"
],
"slow_down_layer_time": [
"8"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"15"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"compatible_printers": [
"Sovol SV01 Pro 0.4 nozzle",
"Sovol SV02 0.4 nozzle",
"Sovol SV05 0.4 nozzle"
]
}
23 changes: 23 additions & 0 deletions resources/profiles/Sovol/filament/Sovol Generic PLA.json
@@ -0,0 +1,23 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSL99",
"name": "Sovol Generic PLA",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"15"
],
"slow_down_layer_time": [
"8"
],
"compatible_printers": [
"Sovol SV01 Pro 0.4 nozzle",
"Sovol SV02 0.4 nozzle",
"Sovol SV05 0.4 nozzle"
]
}
88 changes: 88 additions & 0 deletions resources/profiles/Sovol/filament/fdm_filament_abs.json
@@ -0,0 +1,88 @@
{
"type": "filament",
"name": "fdm_filament_abs",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"80"
],
"eng_plate_temp" : [
"80"
],
"hot_plate_temp" : [
"80"
],
"textured_plate_temp" : [
"80"
],
"cool_plate_temp_initial_layer" : [
"80"
],
"eng_plate_temp_initial_layer" : [
"80"
],
"hot_plate_temp_initial_layer" : [
"80"
],
"textured_plate_temp_initial_layer" : [
"80"
],
"slow_down_for_layer_cooling": [
"1"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_cooling_layer_time": [
"30"
],
"filament_max_volumetric_speed": [
"0"
],
"filament_type": [
"ABS"
],
"filament_density": [
"1.10"
],
"filament_cost": [
"20"
],
"nozzle_temperature_initial_layer": [
"240"
],
"reduce_fan_stop_start_freq": [
"1"
],
"fan_max_speed": [
"5"
],
"fan_min_speed": [
"5"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_fan_speed": [
"80"
],
"nozzle_temperature": [
"235"
],
"temperature_vitrification": [
"110"
],
"nozzle_temperature_range_low": [
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"slow_down_min_speed": [
"10"
],
"slow_down_layer_time": [
"15"
]
}