mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
Merge branch 'main' into CURA-10953_introduce_any_color_material
This commit is contained in:
commit
5693577f60
243 changed files with 206 additions and 221 deletions
79
.github/workflows/installers.yml
vendored
79
.github/workflows/installers.yml
vendored
|
@ -31,8 +31,8 @@ on:
|
|||
type: boolean
|
||||
|
||||
schedule:
|
||||
# Daily at 5:20 CET
|
||||
- cron: '20 4 * * *'
|
||||
# Daily at 8:10 CET
|
||||
- cron: '10 7 * * *'
|
||||
|
||||
env:
|
||||
CURA_CONAN_VERSION: ${{ inputs.cura_conan_version || 'cura/latest@ultimaker/testing' }}
|
||||
|
@ -44,7 +44,7 @@ jobs:
|
|||
windows-installer:
|
||||
uses: ./.github/workflows/windows.yml
|
||||
with:
|
||||
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||
cura_conan_version: ${{ github.event.inputs.cura_conan_version }}
|
||||
conan_args: ${{ github.event.inputs.conan_args }}
|
||||
enterprise: ${{ github.event.inputs.enterprise == 'true' }}
|
||||
staging: ${{ github.event.inputs.staging == 'true' }}
|
||||
|
@ -55,7 +55,7 @@ jobs:
|
|||
linux-installer:
|
||||
uses: ./.github/workflows/linux.yml
|
||||
with:
|
||||
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||
cura_conan_version: ${{ github.event.inputs.cura_conan_version }}
|
||||
conan_args: ${{ github.event.inputs.conan_args }}
|
||||
enterprise: ${{ github.event.inputs.enterprise == 'true' }}
|
||||
staging: ${{ github.event.inputs.staging == 'true' }}
|
||||
|
@ -66,7 +66,7 @@ jobs:
|
|||
macos-installer:
|
||||
uses: ./.github/workflows/macos.yml
|
||||
with:
|
||||
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||
cura_conan_version: ${{ github.event.inputs.cura_conan_version }}
|
||||
conan_args: ${{ github.event.inputs.conan_args }}
|
||||
enterprise: ${{ github.event.inputs.enterprise == 'true' }}
|
||||
staging: ${{ github.event.inputs.staging == 'true' }}
|
||||
|
@ -74,22 +74,23 @@ jobs:
|
|||
operating_system: macos-11.0
|
||||
secrets: inherit
|
||||
|
||||
macos-arm-installer:
|
||||
uses: ./.github/workflows/macos.yml
|
||||
with:
|
||||
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||
conan_args: ${{ github.event.inputs.conan_args }}
|
||||
enterprise: ${{ github.event.inputs.enterprise == 'true' }}
|
||||
staging: ${{ github.event.inputs.staging == 'true' }}
|
||||
architecture: ARM64
|
||||
operating_system: self-hosted
|
||||
secrets: inherit
|
||||
# macos-arm-installer:
|
||||
# uses: ./.github/workflows/macos.yml
|
||||
# with:
|
||||
# cura_conan_version: ${{ github.event.inputs.cura_conan_version }}
|
||||
# conan_args: ${{ github.event.inputs.conan_args }}
|
||||
# enterprise: ${{ github.event.inputs.enterprise == 'true' }}
|
||||
# staging: ${{ github.event.inputs.staging == 'true' }}
|
||||
# architecture: ARM64
|
||||
# operating_system: self-hosted
|
||||
# secrets: inherit
|
||||
|
||||
# Run and update nightly release when the nightly input is set to true or if the schedule is triggered
|
||||
update-nightly-release:
|
||||
if: ${{ always() && (! cancelled()) && contains(needs.*.result, 'success') && (! contains(needs.*.result, 'failure')) && (inputs.nightly || github.event_name == 'schedule') }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ]
|
||||
needs: [ windows-installer, linux-installer, macos-installer ]
|
||||
# needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
@ -202,29 +203,29 @@ jobs:
|
|||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Download MacOS (ARM-64) dmg installer jobs artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.filename.outputs.MAC_ARM_DMG }}-dmg
|
||||
path: installers
|
||||
|
||||
- name: Download acOS (ARM-64) pkg installer jobs artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.filename.outputs.MAC_ARM_PKG }}-pkg
|
||||
path: installers
|
||||
|
||||
- name: Rename MacOS (ARM-64) installers to nightlies
|
||||
run: |
|
||||
mv installers/${{ steps.filename.outputs.MAC_ARM_DMG }}.dmg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg
|
||||
mv installers/${{ steps.filename.outputs.MAC_ARM_PKG }}.pkg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg
|
||||
|
||||
- name: Update nightly release for MacOS (ARM-64)
|
||||
run: |
|
||||
gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber
|
||||
gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# - name: Download MacOS (ARM-64) dmg installer jobs artifacts
|
||||
# uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# name: ${{ steps.filename.outputs.MAC_ARM_DMG }}-dmg
|
||||
# path: installers
|
||||
#
|
||||
# - name: Download MacOS (ARM-64) pkg installer jobs artifacts
|
||||
# uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# name: ${{ steps.filename.outputs.MAC_ARM_PKG }}-pkg
|
||||
# path: installers
|
||||
#
|
||||
# - name: Rename MacOS (ARM-64) installers to nightlies
|
||||
# run: |
|
||||
# mv installers/${{ steps.filename.outputs.MAC_ARM_DMG }}.dmg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg
|
||||
# mv installers/${{ steps.filename.outputs.MAC_ARM_PKG }}.pkg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg
|
||||
#
|
||||
# - name: Update nightly release for MacOS (ARM-64)
|
||||
# run: |
|
||||
# gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber
|
||||
# gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber
|
||||
# env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Update nightly release description (with date)
|
||||
if: always()
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
cool_fan_speed = 40
|
||||
infill_overlap = =0 if infill_sparse_density > 80 else 15
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
retraction_prime_speed = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ variant = AA 0.25
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
top_bottom_thickness = 0.8
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.15
|
||||
retraction_min_travel = 5
|
||||
|
|
|
@ -18,6 +18,7 @@ brim_width = 20
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
infill_wipe_dist = 0.1
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = AA 0.25
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
retraction_combing = all
|
||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
|
|
|
@ -17,7 +17,7 @@ infill_overlap = =0 if infill_sparse_density > 80 else 10
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = 190
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
retraction_hop = 0.2
|
||||
skin_overlap = 5
|
||||
speed_print = 30
|
||||
|
|
|
@ -19,7 +19,7 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
|
@ -17,7 +17,7 @@ infill_overlap = =0 if infill_sparse_density > 80 else 10
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
skin_overlap = 5
|
||||
speed_print = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -2
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
prime_tower_enable = False
|
||||
skin_overlap = 20
|
||||
speed_print = 60
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -1
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
prime_tower_enable = False
|
||||
speed_print = 60
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = 1
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.8
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
prime_tower_enable = False
|
||||
speed_print = 50
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
prime_tower_enable = False
|
||||
speed_print = 55
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
|
|
|
@ -17,7 +17,6 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
|||
infill_wipe_dist = 0
|
||||
layer_height = 0.2
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -17,7 +17,6 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
|||
infill_wipe_dist = 0
|
||||
layer_height = 0.15
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -19,7 +19,7 @@ layer_height = 0.06
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
material_print_temperature = =default_material_print_temperature - 8
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -18,7 +18,7 @@ infill_wipe_dist = 0
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = AA 0.4
|
|||
weight = -2
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
skin_overlap = 20
|
||||
speed_print = 60
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||
|
|
|
@ -12,7 +12,6 @@ variant = AA 0.4
|
|||
weight = -1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
speed_print = 60
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = 1
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
speed_print = 50
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
speed_print = 55
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||
|
|
|
@ -13,7 +13,7 @@ weight = -2
|
|||
|
||||
[values]
|
||||
adhesion_type = brim
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.25
|
||||
skin_overlap = 50
|
||||
|
|
|
@ -13,7 +13,6 @@ weight = -1
|
|||
|
||||
[values]
|
||||
adhesion_type = brim
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.25
|
||||
skin_overlap = 50
|
||||
|
|
|
@ -13,6 +13,7 @@ weight = 1
|
|||
|
||||
[values]
|
||||
adhesion_type = brim
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.25
|
||||
skin_overlap = 50
|
||||
|
|
|
@ -13,6 +13,7 @@ weight = 0
|
|||
|
||||
[values]
|
||||
adhesion_type = brim
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.25
|
||||
skin_overlap = 50
|
||||
|
|
|
@ -22,7 +22,6 @@ layer_height = 0.2
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -21,7 +21,6 @@ layer_height = 0.15
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -22,7 +22,7 @@ layer_height = 0.06
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -20,6 +20,7 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -12,7 +12,6 @@ variant = AA 0.4
|
|||
weight = -1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature
|
||||
retraction_combing = all
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_print = 60
|
||||
|
|
|
@ -22,7 +22,7 @@ machine_nozzle_cool_down_speed = 0.85
|
|||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature + 8
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
|
@ -22,7 +22,6 @@ machine_nozzle_cool_down_speed = 0.85
|
|||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 13
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
|
@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.85
|
|||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -2
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature -10
|
||||
prime_tower_enable = False
|
||||
skin_overlap = 20
|
||||
speed_print = 50
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -1
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature -10
|
||||
prime_tower_enable = False
|
||||
speed_print = 45
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = 0
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
prime_tower_enable = False
|
||||
skin_overlap = 10
|
||||
speed_print = 45
|
||||
|
|
|
@ -25,7 +25,6 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 106
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_wipe_enabled = True
|
||||
retraction_count_max = 15
|
||||
|
|
|
@ -25,7 +25,6 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 106
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_wipe_enabled = True
|
||||
retraction_amount = 7
|
||||
|
|
|
@ -24,6 +24,7 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 106
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_wipe_enabled = True
|
||||
retraction_count_max = 15
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = AA 0.8
|
|||
weight = -2
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 25
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
speed_print = 50
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
|
|
|
@ -13,7 +13,7 @@ weight = -4
|
|||
|
||||
[values]
|
||||
layer_height = 0.4
|
||||
material_print_temperature = =default_material_print_temperature + 30
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
speed_infill = =math.ceil(speed_print * 37 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
|
|
|
@ -13,7 +13,7 @@ weight = -3
|
|||
|
||||
[values]
|
||||
layer_height = 0.3
|
||||
material_print_temperature = =default_material_print_temperature + 27
|
||||
material_print_temperature = =default_material_print_temperature + 12
|
||||
speed_print = 50
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
|
|
|
@ -16,7 +16,7 @@ weight = -2
|
|||
brim_width = 14
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
prime_tower_enable = True
|
||||
retraction_hop = 0.1
|
||||
retraction_hop_enabled = False
|
||||
|
|
|
@ -17,7 +17,7 @@ brim_width = 14
|
|||
layer_height = 0.4
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
prime_tower_enable = True
|
||||
retraction_hop = 0.1
|
||||
retraction_hop_enabled = False
|
||||
|
|
|
@ -17,7 +17,7 @@ brim_width = 14
|
|||
layer_height = 0.3
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 7
|
||||
material_print_temperature = =default_material_print_temperature - 17
|
||||
prime_tower_enable = True
|
||||
retraction_hop = 0.1
|
||||
retraction_hop_enabled = False
|
||||
|
|
|
@ -13,7 +13,7 @@ weight = -2
|
|||
|
||||
[values]
|
||||
brim_width = 15
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
prime_tower_enable = True
|
||||
speed_print = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 40)
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -4
|
|||
[values]
|
||||
brim_width = 15
|
||||
layer_height = 0.4
|
||||
material_print_temperature = =default_material_print_temperature + 20
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
prime_tower_enable = True
|
||||
speed_infill = =math.ceil(speed_print * 33 / 45)
|
||||
speed_print = 45
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -3
|
|||
[values]
|
||||
brim_width = 15
|
||||
layer_height = 0.3
|
||||
material_print_temperature = =default_material_print_temperature + 17
|
||||
material_print_temperature = =default_material_print_temperature + 12
|
||||
prime_tower_enable = True
|
||||
speed_print = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 40)
|
||||
|
|
|
@ -15,6 +15,7 @@ weight = -2
|
|||
brim_width = 5.6
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
raft_airgap = 0.45
|
||||
|
|
|
@ -16,6 +16,7 @@ brim_width = 5.6
|
|||
layer_height = 0.4
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
raft_airgap = 0.45
|
||||
|
|
|
@ -16,6 +16,7 @@ brim_width = 5.6
|
|||
layer_height = 0.3
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
raft_airgap = 0.45
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -2
|
|||
|
||||
[values]
|
||||
brim_width = 14
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
raft_airgap = 0.5
|
||||
skin_overlap = 0
|
||||
speed_print = 50
|
||||
|
|
|
@ -15,6 +15,7 @@ weight = -4
|
|||
[values]
|
||||
brim_width = 14
|
||||
layer_height = 0.4
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
raft_airgap = 0.5
|
||||
skin_overlap = 0
|
||||
speed_infill = =math.ceil(speed_print * 37 / 50)
|
||||
|
|
|
@ -15,7 +15,7 @@ weight = -3
|
|||
[values]
|
||||
brim_width = 14
|
||||
layer_height = 0.3
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
material_print_temperature = =default_material_print_temperature - 12
|
||||
raft_airgap = 0.5
|
||||
skin_overlap = 0
|
||||
speed_print = 50
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -2
|
|||
[values]
|
||||
brim_width = 25
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
material_print_temperature = =default_material_print_temperature + 11
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -4
|
|||
[values]
|
||||
brim_width = 25
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -15,6 +15,7 @@ weight = -3
|
|||
brim_width = 25
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
|
||||
layer_height = 0.3
|
||||
material_print_temperature = =default_material_print_temperature + 13
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic'
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature + 0
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
prime_tower_enable = False
|
||||
speed_print = 45
|
||||
support_angle = 70
|
||||
|
|
|
@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic'
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
prime_tower_enable = False
|
||||
speed_infill = =math.ceil(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
|
|
|
@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic'
|
||||
machine_nozzle_cool_down_speed = 0.75
|
||||
machine_nozzle_heat_up_speed = 1.6
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
prime_tower_enable = False
|
||||
speed_infill = =math.ceil(speed_print * 30 / 35)
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 35)
|
||||
|
|
|
@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 105
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
material_print_temperature = =default_material_print_temperature - 4
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -22,7 +22,6 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 105
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -22,6 +22,7 @@ machine_nozzle_heat_up_speed = 2.5
|
|||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_flow = 105
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
multiple_mesh_overlap = 0.2
|
||||
prime_tower_enable = True
|
||||
prime_tower_flow = 100
|
||||
|
|
|
@ -14,7 +14,7 @@ weight = -2
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
skin_overlap = 20
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -1
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
skin_overlap = 15
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 1
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -2
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
support_interface_enable = True
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = -4
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
support_interface_enable = True
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = -3
|
|||
[values]
|
||||
brim_replaces_support = False
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
support_interface_enable = True
|
||||
|
|
|
@ -12,6 +12,7 @@ variant = AA 0.25
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_enable = True
|
||||
|
|
|
@ -12,6 +12,7 @@ variant = AA 0.25
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -14,6 +14,7 @@ weight = 0
|
|||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.4
|
||||
retraction_min_travel = 5
|
||||
|
|
|
@ -17,6 +17,7 @@ brim_width = 20
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
infill_wipe_dist = 0.1
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = AA 0.25
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -16,7 +16,7 @@ brim_width = 8
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = 190
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
retraction_hop = 0.2
|
||||
speed_print = 30
|
||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||
|
|
|
@ -19,7 +19,7 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 2
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
|
@ -16,7 +16,7 @@ brim_width = 8
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
material_print_temperature = =default_material_print_temperature - 15
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
speed_print = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||
|
|
|
@ -15,7 +15,7 @@ weight = 1
|
|||
machine_nozzle_cool_down_speed = 0.8
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 20
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
prime_tower_enable = False
|
||||
raft_airgap = 0.15
|
||||
speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||
|
|
|
@ -15,7 +15,6 @@ weight = -1
|
|||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 20
|
||||
material_print_temperature = =default_material_print_temperature + 15
|
||||
prime_tower_enable = False
|
||||
raft_airgap = 0.15
|
||||
speed_infill = =math.ceil(speed_print * 45 / 60)
|
||||
|
|
|
@ -15,7 +15,7 @@ weight = 0
|
|||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 20
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
prime_tower_enable = False
|
||||
raft_airgap = 0.15
|
||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||
|
|
|
@ -15,7 +15,7 @@ weight = -2
|
|||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 20
|
||||
material_print_temperature = =default_material_print_temperature + 20
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
prime_tower_enable = False
|
||||
raft_airgap = 0.15
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
|
|
|
@ -16,7 +16,7 @@ infill_wipe_dist = 0
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
material_print_temperature = =default_material_print_temperature - 8
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -1
|
|||
[values]
|
||||
infill_wipe_dist = 0
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -16,7 +16,7 @@ infill_wipe_dist = 0
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -14,7 +14,6 @@ weight = -2
|
|||
[values]
|
||||
infill_wipe_dist = 0
|
||||
machine_min_cool_heat_time_window = 15
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = True
|
||||
prime_tower_wipe_enabled = True
|
||||
|
|
|
@ -15,7 +15,7 @@ weight = 1
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
retraction_prime_speed = =retraction_speed
|
||||
speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||
speed_print = 50
|
||||
|
|
|
@ -13,7 +13,6 @@ weight = -1
|
|||
|
||||
[values]
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_prime_speed = =retraction_speed
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_print = 60
|
||||
|
|
|
@ -15,6 +15,7 @@ weight = 0
|
|||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
retraction_prime_speed = =retraction_speed
|
||||
speed_infill = =math.ceil(speed_print * 45 / 55)
|
||||
speed_print = 55
|
||||
|
|
|
@ -13,7 +13,7 @@ weight = -2
|
|||
|
||||
[values]
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_prime_speed = =retraction_speed
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_print = 60
|
||||
|
|
|
@ -12,6 +12,7 @@ variant = AA 0.4
|
|||
weight = 1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.4
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -12,7 +12,6 @@ variant = AA 0.4
|
|||
weight = -1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.4
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -12,6 +12,7 @@ variant = AA 0.4
|
|||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.4
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = AA 0.4
|
|||
weight = -2
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
ooze_shield_angle = 40
|
||||
raft_airgap = 0.4
|
||||
support_bottom_distance = =support_z_distance
|
||||
|
|
|
@ -18,7 +18,7 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 20
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -18,7 +18,6 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -18,6 +18,7 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature - 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -18,7 +18,6 @@ infill_wipe_dist = 0.1
|
|||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_cool_down_speed = 0.85
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
multiple_mesh_overlap = 0
|
||||
ooze_shield_angle = 40
|
||||
prime_tower_enable = True
|
||||
|
|
|
@ -13,7 +13,6 @@ weight = -1
|
|||
|
||||
[values]
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
|
||||
material_print_temperature = =default_material_print_temperature
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_print = 60
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
|
|
|
@ -20,7 +20,6 @@ machine_nozzle_cool_down_speed = 0.85
|
|||
machine_nozzle_heat_up_speed = 1.5
|
||||
material_final_print_temperature = =material_print_temperature - 10
|
||||
material_initial_print_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature - 13
|
||||
multiple_mesh_overlap = 0
|
||||
prime_tower_enable = False
|
||||
prime_tower_size = 16
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue