mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-10 22:12:49 +00:00
Compare commits
6 Commits
profile/se
...
release/si
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a913e2bcd8 | ||
|
|
ad737d1080 | ||
|
|
48acf4f13b | ||
|
|
ebdfa74ce8 | ||
|
|
6b55e324c9 | ||
|
|
ee8bb54ca8 |
4
.github/workflows/build_all.yml
vendored
4
.github/workflows/build_all.yml
vendored
@@ -13,6 +13,8 @@ on:
|
||||
- 'localization/**'
|
||||
- 'resources/**'
|
||||
- ".github/workflows/build_*.yml"
|
||||
- 'signpath/**'
|
||||
- 'scripts/*.ps1'
|
||||
- 'scripts/flatpak/**'
|
||||
|
||||
pull_request:
|
||||
@@ -26,9 +28,11 @@ on:
|
||||
- '**/CMakeLists.txt'
|
||||
- 'version.inc'
|
||||
- ".github/workflows/build_*.yml"
|
||||
- 'signpath/**'
|
||||
- 'build_linux.sh'
|
||||
- 'build_release_vs2022.bat'
|
||||
- 'build_release_macos.sh'
|
||||
- 'scripts/*.ps1'
|
||||
- 'scripts/flatpak/**'
|
||||
|
||||
|
||||
|
||||
64
.github/workflows/build_orca.yml
vendored
64
.github/workflows/build_orca.yml
vendored
@@ -292,6 +292,53 @@ jobs:
|
||||
# WindowsSDKVersion: '10.0.26100.0\'
|
||||
run: .\build_release_vs.bat slicer
|
||||
|
||||
- name: Pack PDB
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
working-directory: ${{ github.workspace }}/build/src/Release
|
||||
shell: cmd
|
||||
run: '"C:/Program Files/7-Zip/7z.exe" a -m0=lzma2 -mx9 Debug_PDB_${{ env.ver }}_for_developers_only.7z *.pdb'
|
||||
|
||||
- name: Upload unsigned Windows portable artifact for SignPath
|
||||
id: upload-windows-portable
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer_Windows_${{ env.ver }}_portable_unsigned
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Submit Windows portable artifact to SignPath
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
uses: signpath/github-action-submit-signing-request@v2
|
||||
with:
|
||||
api-token: ${{ secrets.SIGNPATH_API_TOKEN }}
|
||||
organization-id: ${{ secrets.SIGNPATH_ORGANIZATION_ID }}
|
||||
project-slug: OrcaSlicer
|
||||
signing-policy-slug: test-signing
|
||||
artifact-configuration-slug: windows-portable-v1
|
||||
github-artifact-id: ${{ steps.upload-windows-portable.outputs.artifact-id }}
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: ${{ github.workspace }}/build/signpath/windows-portable
|
||||
|
||||
- name: Verify SignPath Windows portable signatures
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
shell: pwsh
|
||||
# -AllowUntrustedRoot is required while signing with the SignPath test
|
||||
# certificate (self-signed). Remove it once signing-policy-slug switches
|
||||
# to release-signing with a production CA-issued certificate.
|
||||
run: ./scripts/verify-authenticode.ps1 -ArtifactDirectory '${{ github.workspace }}/build/signpath/windows-portable' -AllowUntrustedRoot
|
||||
|
||||
- name: Replace Windows portable bundle with signed output
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
shell: pwsh
|
||||
run: |
|
||||
$source = Join-Path "${{ github.workspace }}" "build/signpath/windows-portable"
|
||||
$destination = Join-Path "${{ github.workspace }}" "build/OrcaSlicer"
|
||||
if (-not (Test-Path -LiteralPath $source -PathType Container)) {
|
||||
throw "SignPath output directory not found: $source"
|
||||
}
|
||||
Get-ChildItem -LiteralPath $source -Force | Copy-Item -Destination $destination -Recurse -Force
|
||||
|
||||
- name: Create installer Win
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
working-directory: ${{ github.workspace }}/build
|
||||
@@ -301,14 +348,14 @@ jobs:
|
||||
- name: Pack app
|
||||
if: runner.os == 'Windows'
|
||||
working-directory: ${{ github.workspace }}/build
|
||||
shell: cmd
|
||||
run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_Windows_${{ env.ver }}_portable.zip ${{ github.workspace }}/build/OrcaSlicer'
|
||||
|
||||
- name: Pack PDB
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
working-directory: ${{ github.workspace }}/build/src/Release
|
||||
shell: cmd
|
||||
run: '"C:/Program Files/7-Zip/7z.exe" a -m0=lzma2 -mx9 Debug_PDB_${{ env.ver }}_for_developers_only.7z *.pdb'
|
||||
shell: pwsh
|
||||
run: |
|
||||
$zipPath = "OrcaSlicer_Windows_${{ env.ver }}_portable.zip"
|
||||
Remove-Item -LiteralPath $zipPath -Force -ErrorAction SilentlyContinue
|
||||
& "C:/Program Files/7-Zip/7z.exe" a -tzip $zipPath "${{ github.workspace }}/build/OrcaSlicer"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
exit $LASTEXITCODE
|
||||
}
|
||||
|
||||
- name: Upload artifacts Win zip
|
||||
if: runner.os == 'Windows'
|
||||
@@ -316,6 +363,7 @@ jobs:
|
||||
with:
|
||||
name: OrcaSlicer_Windows_${{ env.ver }}_portable
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload artifacts Win installer
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
|
||||
@@ -472,6 +472,10 @@
|
||||
"name": "Anycubic Generic PA-CF",
|
||||
"sub_path": "filament/Anycubic Generic PA-CF.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
|
||||
"sub_path": "filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Generic PC",
|
||||
"sub_path": "filament/Anycubic Generic PC.json"
|
||||
@@ -588,6 +592,18 @@
|
||||
"name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle",
|
||||
"sub_path": "filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Panchroma PLA @Anycubic Kobra S1",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Polymaker PLA Pro @Anycubic Kobra S1",
|
||||
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
|
||||
"sub_path": "filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Generic PVA",
|
||||
"sub_path": "filament/Anycubic Generic PVA.json"
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL57_AC",
|
||||
"filament_id": "GFL57",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra S1 0.4 nozzle"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA6-CF"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1.03"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"79.98"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"7.5"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1.0"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.0"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"300"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"300"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"74.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"280"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA @Anycubic Kobra S1",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM001_AC",
|
||||
"filament_id": "GFPM001",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra S1 0.4 nozzle"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.88"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.32"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Polymaker PLA Pro @Anycubic Kobra S1",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL79_AC",
|
||||
"filament_id": "GFL79",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra S1 0.4 nozzle"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.85"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.23"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"55"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL80_AC",
|
||||
"filament_id": "GFL80",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra S1 0.4 nozzle"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.85"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.23"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"55"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA12-CF10 @BBL X1",
|
||||
"inherits": "Fiberon PA12-CF10 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL56_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA12-CF10 @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "GFL56",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_cost": [
|
||||
"99.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.06"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"280"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"40"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA6-CF20 @BBL X1",
|
||||
"inherits": "Fiberon PA6-CF20 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL57_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA6-CF20 @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "GFL57",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_cost": [
|
||||
"83.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA6-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"280"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"74.2"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"40"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA6-GF25 @BBL X1",
|
||||
"inherits": "Fiberon PA6-GF25 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL58_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA6-GF25 @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "GFL58",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_cost": [
|
||||
"63.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.2"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"280"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"70.4"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"40"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA612-CF15 @BBL X1",
|
||||
"inherits": "Fiberon PA612-CF15 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL59_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PA612-CF15 @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "GFL59",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"94.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.03"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"250"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"40"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"206.2"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PET-CF17 @BBL X1",
|
||||
"inherits": "Fiberon PET-CF17 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL60_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"800"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PET-CF17 @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"filament_id": "GFL60",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"242"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_cost": [
|
||||
"89.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.34"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PET-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"79.3"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"70"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PETG-ESD @BBL X1",
|
||||
"inherits": "Fiberon PETG-ESD @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL06_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"77"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PETG-rCF08 @BBL X1",
|
||||
"inherits": "Fiberon PETG-rCF08 @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL61_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Fiberon PETG-rCF08 @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"filament_id": "GFL61",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_cost": [
|
||||
"39.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.3"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"95%"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"69.7"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"70"
|
||||
]
|
||||
}
|
||||
@@ -10,19 +10,49 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,49 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,46 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,46 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,46 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,46 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,16 +10,43 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,52 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,52 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,49 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,43 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,55 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_cost": [
|
||||
"21.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,55 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_cost": [
|
||||
"21.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,52 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"filament_cost": [
|
||||
"21.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,19 +10,46 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"21.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL A1",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL A1",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_00",
|
||||
@@ -11,22 +10,40 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL A1M",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL A1M",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_02",
|
||||
@@ -11,22 +10,40 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL P1P",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL P1P",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_04",
|
||||
@@ -11,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @BBL X1",
|
||||
"renamed_from": "Panchroma PLA Stain @BBL X1",
|
||||
"inherits": "Panchroma PLA Satin @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSPM005_06",
|
||||
@@ -11,22 +10,43 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @base",
|
||||
"renamed_from": "Panchroma PLA Stain @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFPM005",
|
||||
|
||||
@@ -10,22 +10,55 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.34"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,55 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.34"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.34"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.34"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,49 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,49 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,49 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,46 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,43 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,22 +10,40 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite CosPLA @BBL A1",
|
||||
"inherits": "PolyLite CosPLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL62_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite CosPLA @BBL A1M",
|
||||
"inherits": "PolyLite CosPLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL62_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite CosPLA @BBL P1P",
|
||||
"inherits": "PolyLite CosPLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL62_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite CosPLA @BBL X1",
|
||||
"inherits": "PolyLite CosPLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL62_03",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite CosPLA @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFL62",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"59"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
]
|
||||
}
|
||||
@@ -5,36 +5,63 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSL00_02",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,36 +5,63 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSL00_00",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,123 +5,60 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSL23",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15",
|
||||
"15"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220",
|
||||
"220"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220",
|
||||
"220"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Galaxy @BBL A1",
|
||||
"inherits": "PolyLite PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL63_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Galaxy @BBL A1M",
|
||||
"inherits": "PolyLite PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL63_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Galaxy @BBL P1P",
|
||||
"inherits": "PolyLite PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL63_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Galaxy @BBL X1",
|
||||
"inherits": "PolyLite PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL63_03",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Galaxy @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFL63",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Glow @BBL A1",
|
||||
"inherits": "PolyLite PLA Glow @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL64_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Glow @BBL A1M",
|
||||
"inherits": "PolyLite PLA Glow @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL64_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Glow @BBL P1P",
|
||||
"inherits": "PolyLite PLA Glow @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL64_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Glow @BBL X1",
|
||||
"inherits": "PolyLite PLA Glow @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSL64_03",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "PolyLite PLA Glow @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFL64",
|
||||
"instantiation": "false",
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.17"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Polymaker"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"75"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user