update profiles

This commit is contained in:
2026-02-22 17:55:00 +01:00
parent 2eb9e07655
commit 55189b12ef
25 changed files with 34775 additions and 126 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,9 @@
{
"words": [
"Zechert",
"Cura",
"FLSUN",
"Superdraft",
"Verydraft"
]
}

View File

@@ -0,0 +1,9 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
[*.md]
indent_style = tab

View File

@@ -0,0 +1,2 @@
.vale/styles/*
!.vale/styles/Vocabulary

View File

@@ -0,0 +1,5 @@
{
"MD013": {
"line_length": 120
}
}

View File

@@ -0,0 +1,163 @@
# Cura printer profiles for Flsun V400 <!-- vale Microsoft.Headings = NO -->
by Frank Zechert, 2025
## About
This directory contains cura printer definition and printing profiles for the 3d printer Flsun V400.
## Install
On a linux based system, run `install.sh` to install the configuration files into the cura directory.
This will delete any other files that might be present for a flsun v400 printer.
## Directory structure and configuration stack
Cura stores printers and profiles across different directories that define different parts of the machine or the
printing profile, and / or overwrite parts of it depending on presets. Cura loads them in a stack to get the current
value of a configuration parameter that should apply to the print.
### Directory structure
<!-- markdownlint-disable MD013 -->
| Folder | Purpose | Typical Structure | File Suffix |
| :------------ | :------------------------------------------------------------- | :-------------------------------------------------- | :--------------------------- |
| `definitions` | Defines the printer's core attributes | each printer has one file here | `printer_name.inst.cfg` |
| `extruders` | Describes extruder-specific settings | can have multiple extruder configs per printer | `extruder_name.inst.cfg` |
| `meshes` | Contains files for visual representation of the printer. | usually one per printer, optional | `printer_name.stl` or `.3mf` |
| `intents` | Print result intentions. | one file per intent | `intent.inst.cfg` |
| `quality` | Stores print quality presets | `printer_name` -> `material_name` -> `quality_type` | `quality_type.inst.cfg` |
| `variants` | Defines nozzle diameter variants and links to quality profiles | `printer_name` -> `nozzle_size` | `variant.inst.cfg` |
<!-- markdownlint-enable MD013 -->
### A note on intents and qualities
An intent profile defines the intention for a print, such as precision, strength, visual quality, flexibility, etc.
It might be empty, in which case it's displayed as the `default` intent.
A quality profile defines different levels of quality, possibly within an intent if it exist. Different settings can
influence the level of quality. For example, by changing the print speed or the layer height. They're in itself
independent of the intent of the print.
The print settings are a combination of intent settings (if an intent exists) and the quality level.
### Configuration stack
Cura stores configuration profiles in a stack. At the bottom of the stack is a definition container that defines
all possible settings and properties a printer might have. On top of this definition container, a number of profile
customizations and changes by the user take precedence over other quality profile definitions.
When cura determines the value of a setting, it will look at the top most element in the stack that defines the
setting's value.
A printer has at least two stacks. A global stack that defines settings for the printer as a whole, and a stack for each
extruder (at least one). The extruder-specific stack is always a higher priority than the global stack.
```text
+--------------------------------------+
| Extruder n Configuration Stack |
+--------------------------------------+
| 1. User settings made in the UI |
| 2. Custom settings saved by the user |
| 3. Profile intent file (optional) |
| 4. Profile quality |
| 5. Material settings |
| 6. Nozzle settings |
| 7. Definition changes |
| 8. Extruder Definition |
+--------------------------------------+
|
v
+--------------------------------------+
| Global Configuration Stack |
+--------------------------------------+
| 1. User settings made in the UI |
| 2. Custom settings saved by the user |
| 3. Profile intent file (optional) |
| 4. Profile quality |
| 5. Material settings |
| 6. Variant settings |
| 7. Definition changes |
| 8. Extruder Definition |
+--------------------------------------+
```
For more details, see <https://github.com/Ultimaker/Cura/wiki/Container-Stacks>.
### Printer definition
This defines the basic printer and extruder capabilities. This is level `8` and `7` in the global and extruder
configuration stacks.
- The printer definition is in `definitions/flsun_v400.def.json`.
- It has one extruder defined in `extruders/flsun_v400_extruder_0.def.json`.
- The physical appearance of the printer is in `meshes/flsun_v400.stl`.
### Intent files
For now, this profile doesn't use intent files.
### Quality files
The quality files contain settings specifically relating to the quality of the print. They're defined in the file
`quality/flsun_v400_global_<quality preset>_Quality.inst.cfg`. This file defines some global properties for all nozzle
sizes and all materials. Linking global qualities to layer heights is a valid example, but not a must. Cura's intention
seems to be a focus on print speed.
In the configuration stacks, this relates to point `4`.
You can choose the word that replaces `<quality preset>` in the file name. But the Cura UI will only integrate the
quality profile if the quality preset placeholder contains known values:
- Superdraft (for example for a layer height of `0.4mm` or a speed of `400mm/s`)
- Verydraft (for example for a layer height of `0.3mm` or a speed of `320mm/s`)
- Draft (for example for a layer height of `0.2mm` or a speed of `260mm/s`)
- Fast (for example for a layer height of `0.15mm` or a speed of `180mm/s`)
- Normal (for example for a layer height of `0.1mm` or a speed of `120mm/s`)
- High (for example for a layer height of `0.06mm` or a speed of `80mm/s`)
Not all files must exist, but at least one file needs to exist to compose a valid printing profile.
This profile currently contains one quality file `quality/flsun_v400_global_Draft_Quality.inst.cfg`.
### Material files
Material files have the name `quality/<material name>/<nozzle size>/flsun_v400_<nozzle size>_<quality
preset>_Print.inst.cfg`. They relate to step `5` in the configuration stacks.
For now this profile contains the following files:
- PLA or PLA+ with 0.4mm nozzle:
- Draft quality: `quality/PLA/0.4/flsun_v400_0.4_Draft_Print.inst.cfg`.
### Variants file
Currently this profile defines only one variant, a `0.4mm` nozzle size. This relates to step `6` in the configuration
stack.
- `variants/flsun_v400_0.4.inst.cfg`
## Recommended Plugins
Recommended plugins for the Cura Slicer:
- Settings Guide
- Sidebar GUI
- Moonraker Connection
- Material Settings
- Power Cost
- Klipper Settings
- AutoTower Generator
- Auto-Orientation
- Automatic Slicing Toggle
- Material Cost Tools
- Calibration Shapes Reborn
- Direct Support Blockers Reborn
Also disable the following plugin to reduce loading speeds on linux:
- USB Printing

View File

@@ -0,0 +1,74 @@
<html>
<head>
<meta charset="utf-8"/>
<title>Settings and replacement patterns</title>
<script type="text/javascript">
function showJSON(file) {
var xobj = new XMLHttpRequest();
xobj.overrideMimeType("application/json");
xobj.open('GET', file, false);
xobj.onreadystatechange = function () {
if (xobj.readyState == 4 && xobj.status == "200") {
var json = JSON.parse(xobj.responseText);
for(var category_id in json.settings) {
var category = json.settings[category_id];
document.write("<tr><th colspan=\"3\">" + category.label + "</th></tr>");
formatSettings(category.children);
}
}
};
xobj.send(null);
}
function formatSettings(settings) {
for(var setting_id in settings) {
var setting = settings[setting_id];
document.write("<tr><td>{" + setting_id + "}</td><td>" + setting.label + "</td><td>" + setting.description + "</td></tr>");
if(setting.children) {
formatSettings(setting.children)
}
}
}
</script>
</head>
<body>
<h1>Settings and replacement patterns</h1>
<h2>Application-defined patterns</h2>
<table>
<script type="text/javascript">
formatSettings({
"time": {"label": "", "description": "Time when slicing started"},
"date": {"label": "", "description": "Date when slicing started"},
"day": {"label": "", "description": "Day when slicing started"},
"initial_extruder_nr": {"label": "", "description": "The first extruder train used for the print"},
"print_temperature": {"label": "", "description": "Alias for material_print_temperature (deprecated, do not use)"},
"print_bed_temperature": {"label": "", "description": "Alias for material_bed_temperature (deprecated, do not use)"},
"travel_speed": {"label": "", "description": "Alias for speed_travel (deprecated, do not use)"},
"material_id": {"label": "", "description": "The id of the material (eg 'ultimaker_pla_blue')"},
"material_type": {"label": "", "description": "The type of material (eg 'PLA')"},
"material_name": {"label": "", "description": "The display name of the material (eg 'Blue PLA'"},
"material_brand": {"label": "", "description": "The brand of the material (eg 'Ultimaker')"},
"print_time": {"label": "", "description": "The print duration in ISO8601 format"},
"filament_amount": {"label": "", "description": "List of the lengths of extruded filaments per extruder"},
"filament_weight": {"label": "", "description": "List of the weights of extruded filament per extruder, if material density is known"},
"filament_cost": {"label": "", "description": "List of the cost of the extruded filaments per extruder, if the price of the material is known"},
"jobname": {"label": "", "description": "Print job name"}
});
</script>
</table>
<h2>Settings</h2>
<p>The following settings are defined in <a href="https://github.com/Ultimaker/Cura/blob/master/resources/definitions/fdmprinter.def.json">fdmprinter.def.json</a>.</p>
<table>
<script type="text/javascript">
showJSON("https://raw.githubusercontent.com/Ultimaker/Cura/master/resources/definitions/fdmprinter.def.json");
</script>
</table>
<h2>Extruder settings</h2>
<p>The following settings are defined in <a href="https://github.com/Ultimaker/Cura/blob/master/resources/definitions/fdmextruder.def.json">fdmextruder.def.json</a>, and are only settable per extruder</p>
<table>
<script type="text/javascript">
showJSON("https://raw.githubusercontent.com/Ultimaker/Cura/master/resources/definitions/fdmextruder.def.json");
</script>
</table>
</body>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,59 @@
{
"version": 2,
"name": "Extruder 1",
"inherits": "fdmextruder",
"metadata": {
"machine": "flsun_v400",
"position": "0"
},
"overrides": {
"extruder_nr": {
"default_value": 0
},
"material_diameter": {
"default_value": 1.75
},
"machine_nozzle_size": {
"default_value": 0.4
},
"material_max_temperature": {
"default_value": 300
},
"material_min_temperature": {
"default_value": 180
},
"material_flow": {
"default_value": 100
},
"retraction_enable": {
"default_value": true
},
"retraction_amount": {
"default_value": 0.8
},
"retraction_speed": {
"default_value": 35.0
},
"retraction_min_travel": {
"default_value": 1.5
},
"cool_fan_enabled": {
"default_value": true
},
"cool_fan_speed": {
"default_value": 80
},
"cool_min_layer_time": {
"default_value": 10
},
"speed_print": {
"default_value": 250
},
"speed_travel": {
"default_value": 350
},
"klipper_pressure_advance_enable": {
"default_value": true
}
}
}

View File

@@ -0,0 +1,56 @@
#!/bin/bash
DIR="$(dirname "$(realpath "$0")")"
CURA_CONFIG_BASE="${HOME}/.config/cura"
CURA_FOLDER="/opt/ultimaker-cura"
function get_cura_directories() {
local VERSION
VERSION=$(find "${CURA_CONFIG_BASE}" -maxdepth 1 -mindepth 1 -type d -printf "%f\n" -prune | sort -Vr | head -n1)
CURA_CONFIG="${HOME}/.config/cura/${VERSION}"
CURA_SHARE="${HOME}/.local/share/cura/${VERSION}"
CURA_INTERNAL_SHARE="${CURA_FOLDER}/share/cura/resources"
}
function check_continue() {
while true; do
read -rp "Continue? [y/n]: " yn
case $yn in
[Yy]*) return 0 ;;
[Nn]*) echo "Aborted"; return 1 ;;
esac
done
}
get_cura_directories
echo "-------------------"
echo "Cura Configuration Folder: ${CURA_CONFIG}"
echo "Cura Share Folder: ${CURA_SHARE}"
echo "Cura Folder: ${CURA_FOLDER}"
echo "Own Folder: ${DIR}"
echo "-------------------"
check_continue
echo "-------------------"
echo "Deleting existing Cura resources for the printer FLSUN V400"
find "${CURA_INTERNAL_SHARE}" -type f -iname 'flsun_v400*' -exec sudo rm {} +
echo "-------------------"
echo "Installing new Cura resources for the printer FLSUN V400"
mkdir -p "${CURA_SHARE}/definitions" 2>/dev/null
mkdir -p "${CURA_SHARE}/extruders" 2>/dev/null
mkdir -p "${CURA_SHARE}/meshes" 2>/dev/null
ln -sf "${DIR}/definitions/flsun_v400.def.json" "${CURA_SHARE}/definitions/flsun_v400.def.json"
ln -sf "${DIR}/extruders/flsun_v400_extruder_0.def.json" "${CURA_SHARE}/extruders/flsun_v400_extruder_0.def.json"
ln -sf "${DIR}/meshes/flsun_v400.stl" "${CURA_SHARE}/meshes/flsun_v400.stl"
echo "-------------------"
echo "Installing Quality Profile"
mkdir -p "${CURA_SHARE}/quality"
mkdir -p "${CURA_SHARE}/quality/PLA/0.4"
mkdir -p "${CURA_SHARE}/quality/PETG/0.4"
mkdir -p "${CURA_SHARE}/variants"
ln -sf "${DIR}/quality/flsun_v400_global_Draft_Quality.inst.cfg" "${CURA_SHARE}/quality/flsun_v400_global_Draft_Quality.inst.cfg"
ln -sf "${DIR}/variants/flsun_v400_0.4.inst.cfg" "${CURA_SHARE}/variants/flsun_v400_0.4.inst.cfg"
ln -sf "${DIR}/quality/PLA/0.4/flsun_v400_0.4_PLA_Draft_Print.inst.cfg" "${CURA_SHARE}/quality/PLA/0.4/flsun_v400_0.4_PLA_Draft_Print.inst.cfg"
ln -sf "${DIR}/quality/PETG/0.4/flsun_v400_0.4_PETG_Draft_Print.inst.cfg" "${CURA_SHARE}/quality/PETG/0.4/flsun_v400_0.4_PETG_Draft_Print.inst.cfg"
echo "-------------------"
echo "Done"

View File

@@ -0,0 +1,54 @@
[general]
version = 4
name = Draft
definition = flsun_v400
[metadata]
setting_version = 23
type = quality
quality_type = draft
weight = -2
material = generic_petg
variant = 0.4
[values]
# Quality
# Walls
# Top/Bottom
# Infill
# Material
# Speed
# Travel
# Cooling
# Support
# Build Plate Adhesion
# Mesh Fixes
# Special Modes
# Experimental
# Klipper

View File

@@ -0,0 +1,54 @@
[general]
version = 4
name = Draft
definition = flsun_v400
[metadata]
setting_version = 23
type = quality
quality_type = draft
weight = -2
material = generic_pla
variant = 0.4
[values]
# Quality
# Walls
# Top/Bottom
# Infill
# Material
# Speed
# Travel
# Cooling
# Support
# Build Plate Adhesion
# Mesh Fixes
# Special Modes
# Experimental
# Klipper

View File

@@ -0,0 +1,69 @@
[general]
version = 4
name = Fast (Draft Quality)
definition = flsun_v400
[metadata]
setting_version = 23
type = quality
quality_type = draft
weight = -2
global_quality = True
[values]
# Quality
layer_height = 0.2
layer_height_0 = 0.2
line_width = =machine_nozzle_size * 1.1
# Walls
wall_line_count = 2
# Top/Bottom
# Infill
# Material
# Speed
# Travel
# Cooling
# Support
# Build Plate Adhesion
# Mesh Fixes
# Special Modes
# Experimental
# Klipper
# This printer is using Klipper Firmware Acceleration control, Jerk control, Retraction and Input Shaping is done by the
# firmware and does not need to be done by Cura.
# - enable hardware retraction with G10/G11
machine_firmware_retract = True
klipper_retract_length = =retraction_amount
klipper_retract_prime_length = =retraction_extra_prime_amount
klipper_retraction_speed = =retraction_speed
klipper_retract_speed = =retraction_retract_speed
klipper_retract_prime_speed = =retraction_prime_speed
# - enable pressure advance
klipper_pressure_advance_enable = True
klipper_pressure_advance_factor = 0.04
klipper_smooth_time_enable = True
klipper_smooth_time_factor = 0.04
# - disable cura acceleration and jerk control
acceleration_enabled = False
jerk_enabled = False

View File

@@ -0,0 +1,159 @@
[general]
name = 0.4
version = 4
definition = flsun_v400
[metadata]
setting_version = 23
type = variant
hardware_type = nozzle
[values]
# Global Settings, valid for all
# Printing with a 0.4 nozzle size
machine_nozzle_size = 0.4
# This printer is using Klipper Firmware Acceleration control, Jerk control, Retraction and Input Shaping is done by the
# firmware and does not need to be done by Cura.
# - enable hardware retraction with G10/G11
machine_firmware_retract = True
klipper_retract_length = =retraction_amount
klipper_retract_prime_length = =retraction_extra_prime_amount
klipper_retraction_speed = =retraction_speed
klipper_retract_speed = =retraction_retract_speed
klipper_retract_prime_speed = =retraction_prime_speed
# - disable cura acceleration and jerk control
acceleration_enabled = False
jerk_enabled = False
# Quality
# Walls
wall_distribution_count = 2
wall_0_wipe_dist = =machine_nozzle_size * 2
optimize_wall_printing_order = True
# wall oder
inset_direction = inside_out
# print thin walls
fill_outline_gaps = True
z_seam_type = sharpest_corner
# Top/Bottom
# extra skin wall count
skin_outline_count = 2
# Infill
infill_sparse_density = 15
infill_pattern = ='gyroid' if infill_sparse_density < 80 else 'zigzag'
infill_wall_line_count = 1
connect_infill_polygons = True
skin_edge_support_layers = 2
# Material
material_print_temperature = =default_material_print_temperature
# Already start printing when reaching this temperature, we will still have some time to heat up
# while printing the waste lien and the skirt / brim
material_initial_print_temperature = =default_material_print_temperature - 10
# first layer
material_print_temperature_layer_0 = =default_material_print_temperature
# Cool down the nozzle when a nozzle switch or standby is expected to happen
# Nozzle will reach this temperature at the exact moment of nozzle switch or standby start
material_final_print_temperature = =default_material_print_temperature - 15
# first layer
material_bed_temperature_layer_0 = =material_bed_temperature
# Speed
# General Print Speed, somewhat good quality but still good speed
speed_print = 150
# Infill, can be printed faster
speed_infill = =speed_print * 1.4
# Walls print a little bit slower
speed_wall = =speed_print * 0.8
# outer wall, prioritize quality
speed_wall_0 = =speed_print * 0.6
# between outer wall and infill, maintain adhesion
speed_wall_x = =speed_print * 0.8
# top surface outer wall, slower for better finish
speed_wall_0_roofing = =speed_print * 0.5
# top surface inner wall, sligthly faster than outer wall
speed_wall_x_roofing = =speed_print * 0.6
# Top skin, slower to ensure smooth finish and layer bonding
speed_roofing = =speed_print * 0.6
# balance of flatness and time
speed_topbottom = =speed_print * 0.6
# support finish does not matter, but needs to maintin somewhat dimensional accuracy
speed_support = =speed_print * 1.2
# infill
speed_infill = =speed_print * 1.2
speed_support_infill = =speed_print * 1.2
speed_support_interface = =speed_print * 0.8
speed_support_roof = =speed_print * 0.7
speed_support_bottom = =speed_print * 0.8
speed_prime_tower = =speed_print * 0.7
speed_travel = =speed_print * 1.5
# Layer 0 always slow for good adhesion
speed_layer_0 = 30
speed_print_layer_0 = 30
speed_travel_layer_0 = 60
skirt_brim_speed = 30
speed_z_hop = 10
speed_slowdown_layers = 3
speed_euqalize_flow_width_factor = 70
# Travel
retraction_enable = True
retract_at_layer_change = False
retraction_amount = 0.8
retraction_speed = 30
retract_retract_speed = =retraction_speed
retraction_prime_speed = =retraction_speed * 0.7
retraction_extra_prime_amount = 0
retraction_combing = no_outer_surfaces
retraction_combing_max_distance = 2
travel_avoid_other_parts = True
travel_avoid_supports = True
# Cooling
cool_fan_speed = 80
cool_fan_speed_min = =cool_fan_speed
cool_fan_speed_max = 100
cool_min_layer_time_fan_speed_max = 20
cool_fan_speed_0 = 0
cool_fan_full_layer = 3
cool_min_layer_time = 10
cool_min_speed = 15
cool_lift_head = True
cool_min_temperature = =material_print_temperature - 15
# Support
support_brim_width = 5
support_xy_distance_overhang = 0.5
support_tower_diameter = 8
support_angle = 60
# Build Plate Adhesion
prime_blob_enable = False
adhesion_type = skirt
skirt_line_count = 3
skirt_gap = 3
skirt_brim_minimal_length = 300
# Mesh Fixes
# Special Modes
# Experimental
infill_enable_travel_optimization = True
wall_overhang_angle = 60
bridge_settings_enabled = True

View File

@@ -0,0 +1,22 @@
# PETG SUNLU Rapid White
## Settings
| Setting | Value |
| :---------------------------- | :------- |
| Printing Temperature | 245°C |
| Build Plate Temperature | 70°C |
| Max Speed | 600mm/s |
| Flow | 100% |
| Retraction Distance | 0.8mm |
| Retraction Speed | 30mm/s |
| Retraction Extra Prime Amount | 0.06mm |
| Linear Advance Factor | 0.04m/s² |
## Prices, per 1KG
- [Amazon](https://www.amazon.de/dp/B0D9NKJW22?ref=ppx_yo2ov_dt_b_fed_asin_title)
| Date | Price |
| :--------- | :----- |
| 29.09.2025 | 10.22€ |

View File

@@ -1,21 +0,0 @@
# SUNLU Black PETG
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 230°C |
| Build Plate Temperature | 70°C |
| Flow | 100% |
| Retraction Distance | 0.4mm |
| Retraction Speed | 50mm/s |
| Retraction Extra Prime Amount | 0.03mm |
| Linear Advance Factor | 0.000 |
## Prices
https://www.3djake.de/3djake/ecopla-schwarz
| Date | Price |
| :--------- | :----- |
| 21.03.2024 | 19.19€ |
| 17.12.2024 | 17.99€ |

View File

@@ -0,0 +1,22 @@
# PLA+ SUNLU Burly Wood
## Settings
| Setting | Value |
| :---------------------------- | :------ |
| Printing Temperature | °C |
| Build Plate Temperature | °C |
| Max Speed | 250mm/s |
| Flow | 100% |
| Retraction Distance | 1mm |
| Retraction Speed | 20mm/s |
| Retraction Extra Prime Amount | 0.00mm |
| Linear Advance Factor | 0.065 |
## Prices
- [Amazon](https://www.3djake.de/polymaker/polyterra-pla-peanut?sai=11929)
| Date | Price |
| :--------- | :----- |
| 14.09.2025 | 14.99€ |

View File

@@ -1,21 +0,0 @@
# PLA+ SUNLU Black
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 213°C |
| Build Plate Temperature | 65°C |
| Flow | 93.5% |
| Retraction Distance | 0.50mm | ?
| Retraction Speed | 50mm/s | ?
| Retraction Extra Prime Amount | 0.02mm |
| Linear Advance Factor | 0.04 |
## Prices
https://www.amazon.de/gp/product/B07Y5K1TB5?psc=1
| Date | Price |
| :--------- | :----- |
| 13.12.2024 | 13.91€ |

View File

@@ -1,21 +0,0 @@
# PLA+ SUNLU Black
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 216°C |
| Build Plate Temperature | 65°C |
| Flow | 91.0% |
| Retraction Distance | mm |
| Retraction Speed | m/s |
| Retraction Extra Prime Amount | mm |
| Linear Advance Factor | |
## Prices
https://www.amazon.de/gp/product/B07Y5K1TB5?psc=1
| Date | Price |
| :--------- | :----- |
| 21.03.2025 | 15.99€ |

View File

@@ -1,20 +0,0 @@
# PLA+ SUNLU Wood
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 213°C |
| Build Plate Temperature | 65°C |
| Flow | 93.5% |
| Retraction Distance | 0.55mm |
| Retraction Speed | 50mm/s |
| Retraction Extra Prime Amount | 0.03mm |
| Linear Advance Factor | 0.020 |
## Prices
https://www.amazon.de/gp/product/B07Y5K1TB5?psc=1
| Date | Price |
| :--------- | :----- |
| 29.07.2024 | 17.99€ |

View File

@@ -1,21 +0,0 @@
# PLA GEETECH Yellow
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 205°C |
| Build Plate Temperature | 65°C |
| Flow | 94% |
| Retraction Distance | 0.55mm |
| Retraction Speed | 50mm/s |
| Retraction Extra Prime Amount | 0.03mm |
| Linear Advance Factor | 0.020 |
## Prices
https://www.amazon.de/gp/product/B075YHL7HQ?psc=1
| Date | Price |
| :--------- | :----- |
| 26.08.2023 | 20.79€ |
| 02.09.2024 | 17.99€ |

View File

@@ -0,0 +1,22 @@
# PLA Polymaker Polyterra Peanut
## Settings
| Setting | Value |
| :---------------------------- | :------ |
| Printing Temperature | 210°C |
| Build Plate Temperature | 60°C |
| Max Speed | 100mm/s |
| Flow | 100% |
| Retraction Distance | 1mm |
| Retraction Speed | 20mm/s |
| Retraction Extra Prime Amount | 0.00mm |
| Linear Advance Factor | 0.065 |
## Prices
- [3DJake](https://www.3djake.de/polymaker/polyterra-pla-peanut?sai=11929)
| Date | Price |
| :--------- | :----- |
| 14.09.2025 | 14.99€ |

View File

@@ -1,22 +0,0 @@
# ecoPLA 3dJake Black
## Settings
| Setting | Value |
| :--------------------------------------------- | :------- |
| Printing Temperature | 230°C |
| Build Plate Temperature | 70°C |
| Flow | 91% |
| Retraction Distance | 1mm |
| Retraction Speed | 50mm/s |
| Retraction Extra Prime Amount | 0.03mm |
| Linear Advance Factor | 0.025 |
## Prices
https://www.3djake.de/3djake/ecopla-schwarz
| Date | Price |
| :--------- | :----- |
| 08.01.2024 | 19.99€ |
| 12.10.2024 | 19.99€ |