mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-03 09:02:30 +03:00
Compare commits
2 Commits
FullSpectr
...
profile/se
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3ff11a22d3 | ||
|
|
067df65db1 |
6
deps/Eigen/Eigen.cmake
vendored
6
deps/Eigen/Eigen.cmake
vendored
@@ -1,11 +1,5 @@
|
||||
set(_eigen_extra_flags "")
|
||||
if (MSVC)
|
||||
set(_eigen_extra_flags "-DCMAKE_CXX_FLAGS:STRING=/bigobj")
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(Eigen
|
||||
URL https://gitlab.com/libeigen/eigen/-/archive/5.0.1/eigen-5.0.1.zip
|
||||
URL_HASH SHA256=0dbb1f9e3aaad66f352c03227d8c983f6f0b49e0b07e71a7300f4abcc01aee12
|
||||
CMAKE_ARGS "${_eigen_extra_flags}"
|
||||
DEPENDS dep_Boost dep_GMP dep_MPFR
|
||||
)
|
||||
|
||||
@@ -1,171 +0,0 @@
|
||||
# Mixed Filament
|
||||
|
||||
Ported from [OrcaSlicer-FullSpectrum](https://github.com/SoftFever/OrcaSlicer-FullSpectrum)
|
||||
with contributions from Rad, Justin Hayes, Calogero Guagenti, xSil3nt, and ratdoux.
|
||||
|
||||
---
|
||||
|
||||
## User Guide
|
||||
|
||||
### What It Does
|
||||
|
||||
Mixed Filament lets a single virtual filament slot alternate between two
|
||||
physical filaments across layers (or within a layer in Pointillisme mode),
|
||||
producing blended or gradient-like colours on single-extruder printers.
|
||||
|
||||
### Enabling
|
||||
|
||||
1. Load a multi-colour (multi-extruder) profile with at least 2 filaments.
|
||||
2. The **Mixed Filaments** panel appears automatically in the right-hand sidebar
|
||||
when 2 or more filaments are configured.
|
||||
3. Each auto-generated row represents one pair of physical filaments.
|
||||
Toggle a row to enable it; the total filament count grows to include the
|
||||
virtual slot.
|
||||
|
||||
### Sidebar Workflow
|
||||
|
||||
- **Add** — creates a custom row for the same pair or a different ratio.
|
||||
- **Edit** — opens `MixedFilamentConfigPanel` to adjust ratio, pattern,
|
||||
surface offset (bias), and distribution mode.
|
||||
- **Delete** — marks the row deleted; existing painted geometry retains its
|
||||
virtual filament ID until you re-slice or repaint.
|
||||
|
||||
Painting with a virtual filament ID behaves the same as painting with a
|
||||
physical one — use the Multi-Material Painting gizmo and select the virtual
|
||||
slot from the colour palette.
|
||||
|
||||
### Color Match Dialog
|
||||
|
||||
Open via the colour swatch on a mixed row. The dialog (`MixedFilamentColorMatchDialog`)
|
||||
shows a live preview strip of the blended result and lets you adjust ratio
|
||||
until the preview matches your target colour. The preview accounts for
|
||||
surface-offset bias when enabled.
|
||||
|
||||
### Anti-Banding Options
|
||||
|
||||
| Setting | What it does |
|
||||
|---|---|
|
||||
| `mixed_filament_advanced_dithering` | Uses an ordered dither pattern instead of simple A-then-B runs. Reduces stripe visibility on some hue pairs. More experimental than the default. |
|
||||
| `dithering_local_z_mode` | Splits each blended layer into two sub-layers whose heights are proportional to the mix ratio (e.g. 66/33 at 0.12 mm → 0.08 mm + 0.04 mm). Produces the smoothest colour gradients. |
|
||||
| `dithering_local_z_whole_objects` | Extends Local-Z splitting beyond painted masks to cover the entire object cross-section. Useful when mixed walls surround a painted zone. |
|
||||
| `dithering_local_z_direct_multicolor` | For rows with 3 or more physical components, allocates Local-Z sub-layers directly across all components with carry-over error correction instead of collapsing to pair cadence. More toolchanges; less banding. |
|
||||
|
||||
### Gotchas
|
||||
|
||||
- **Single-extruder warning** — Mixed Filament requires a physical toolchange
|
||||
between the two components. On a true single-nozzle printer this means a
|
||||
manual filament swap. Verify your printer profile supports `T0`/`T1` before
|
||||
using mixed slots in a production print.
|
||||
- **Variable-layer interaction** — If Variable Layer Height is enabled, Local-Z
|
||||
sub-layer heights are recomputed per interval. The mix ratio is preserved but
|
||||
the absolute sub-layer heights change with the variable height. Review the
|
||||
layer preview after applying variable layers.
|
||||
- **Custom sequence disabled** — OrcaSlicer's "custom toolchange sequence" is
|
||||
suppressed when mixed filaments are active (`PlateSettingsDialog`). The
|
||||
virtual-to-physical resolution must control toolchange order; a user-defined
|
||||
sequence would break it.
|
||||
- **Stable IDs** — each mixed row carries a `stable_id` (64-bit). If you
|
||||
reorder or delete rows and then load an older project, the ID remap in
|
||||
`PresetBundle::update_mixed_filament_id_remap` translates painted geometry
|
||||
to the correct new virtual slot. Do not rely on the 1-based filament index
|
||||
as a stable identifier.
|
||||
|
||||
---
|
||||
|
||||
## Developer Guide
|
||||
|
||||
### Core Data Structures
|
||||
|
||||
```
|
||||
src/libslic3r/MixedFilament.hpp — MixedFilament struct, MixedFilamentManager
|
||||
src/libslic3r/MixedFilament.cpp — serialization, resolve(), auto_generate()
|
||||
src/libslic3r/LocalZOrderOptimizer.hpp — bucket-ordering helpers for Local-Z
|
||||
```
|
||||
|
||||
The key scalar fields on `MixedFilament`:
|
||||
|
||||
- `component_a`, `component_b` — 1-based physical filament indices.
|
||||
- `ratio_a`, `ratio_b` — layer-alternation cadence numerators.
|
||||
- `mix_b_percent` — nominal colour mix (used for Local-Z height computation
|
||||
and the Color Match preview; does not change the cadence).
|
||||
- `stable_id` — monotonically increasing 64-bit ID assigned at construction.
|
||||
Never reused. Survives serialization round-trips.
|
||||
- `distribution_mode` — selects between `Simple`, `SameLayerPointillisme`,
|
||||
and `GroupedManual`.
|
||||
|
||||
### Seam: Adding New Distribution Modes
|
||||
|
||||
`MixedFilamentManager::resolve()` in `MixedFilament.cpp` is the single
|
||||
dispatch point that maps `(virtual_filament_id, num_physical, layer_index)`
|
||||
to a physical extruder. The current switch covers `Simple` and
|
||||
`SameLayerPointillisme`. A new mode is added by:
|
||||
|
||||
1. Adding a value to the `MixedFilament::DistributionMode` enum in
|
||||
`MixedFilament.hpp`.
|
||||
2. Adding a `case` to `MixedFilamentManager::resolve()` in `MixedFilament.cpp`.
|
||||
3. Serializing the new mode token in `serialize_custom_entries` /
|
||||
`load_custom_entries` (format is a semicolon-delimited row string; see
|
||||
existing tokens for the convention).
|
||||
|
||||
G-code emission (`src/libslic3r/GCode/`) reads only the physical ID returned
|
||||
by `resolve()`, so new modes are automatically emitted without further changes.
|
||||
|
||||
### Seam: New Toolchange-Cost Heuristics
|
||||
|
||||
`LocalZOrderOptimizer` (`src/libslic3r/LocalZOrderOptimizer.hpp`) exposes:
|
||||
|
||||
- `order_bucket_extruders(bucket, current, preferred_last)` — reorders a
|
||||
single-layer bucket to minimise toolchanges given the current active extruder.
|
||||
- `order_pass_group(group, current_extruder)` — greedy walk across a set of
|
||||
buckets (one per Local-Z sub-layer) to minimise total transitions.
|
||||
|
||||
To add a new heuristic (e.g. cost-based look-ahead), replace or wrap
|
||||
`order_pass_group`. The caller in `PrintObjectSlice.cpp` passes the result
|
||||
directly into the sub-layer plan, so the heuristic is fully decoupled from
|
||||
the plan builder.
|
||||
|
||||
### Seam: New Picker Shapes in the Color Map Panel
|
||||
|
||||
`MixedFilamentColorMapPanel` (`src/slic3r/GUI/MixedFilamentColorMapPanel.hpp`)
|
||||
renders a 2-D colour map using a set of geometry "types" (currently strip and
|
||||
gradient). Each type is a small self-contained rendering path keyed by an enum
|
||||
value. New shapes are added by:
|
||||
|
||||
1. Adding an enum value to `MixedFilamentColorMapPanel::GeometryType`.
|
||||
2. Implementing the corresponding `Paint*` helper (follow `PaintStrip` as a
|
||||
template).
|
||||
3. Wiring the new type into the `switch` in `OnPaint`.
|
||||
|
||||
### Persistence (3MF)
|
||||
|
||||
The entire mixed-filament state is stored as a single string key
|
||||
`mixed_filament_definitions` in the project config block (section `[presets]`
|
||||
in the 3MF metadata).
|
||||
|
||||
Round-trip path:
|
||||
|
||||
```
|
||||
MixedFilamentManager::serialize_custom_entries()
|
||||
called by PresetBundle::sync_mixed_filaments_to_config()
|
||||
written by bbs_3mf: store_bbs_3mf → config.set("presets", "mixed_filament_definitions", ...)
|
||||
|
||||
load_bbs_3mf → config.get("presets", "mixed_filament_definitions")
|
||||
stored in project_config["mixed_filament_definitions"]
|
||||
read by PresetBundle::sync_mixed_filaments_from_config()
|
||||
→ mixed_filaments.auto_generate(colours)
|
||||
→ mixed_filaments.load_custom_entries(defs, colours)
|
||||
```
|
||||
|
||||
Auto-generated rows are *not* written to the definitions string; they are
|
||||
rebuilt from the filament colour list. Only `custom == true` rows are stored.
|
||||
|
||||
See `tests/fff_print/test_mixed_filament_e2e.cpp` for regression tests
|
||||
covering this path.
|
||||
|
||||
### ID Remap
|
||||
|
||||
When filaments are added, removed, or reordered, virtual IDs shift.
|
||||
`PresetBundle::update_mixed_filament_id_remap(old_mixed, old_count, new_count)`
|
||||
produces a `remap` vector where `remap[old_virtual_id] = new_virtual_id`.
|
||||
Painted triangle mesh face data uses these IDs; the remap is applied in
|
||||
`TriangleSelectorMixed` after any filament list change.
|
||||
@@ -250,7 +250,3 @@ src/slic3r/GUI/RammingChart.cpp
|
||||
src/slic3r/GUI/StepMeshDialog.cpp
|
||||
src/slic3r/GUI/FilamentPickerDialog.hpp
|
||||
src/libslic3r/PresetBundle.cpp
|
||||
src/slic3r/GUI/MixedFilamentColorMatchDialog.cpp
|
||||
src/slic3r/GUI/MixedFilamentColorMatchDialog.hpp
|
||||
src/slic3r/GUI/MixedFilamentConfigPanel.cpp
|
||||
src/slic3r/GUI/MixedFilamentConfigPanel.hpp
|
||||
|
||||
@@ -628,10 +628,10 @@ msgid "Add connectors"
|
||||
msgstr "Adicionar conectores"
|
||||
|
||||
msgid "Upper part"
|
||||
msgstr "Peça superior"
|
||||
msgstr "Parte superior"
|
||||
|
||||
msgid "Lower part"
|
||||
msgstr "Peça inferior"
|
||||
msgstr "Parte inferior"
|
||||
|
||||
msgid "Keep"
|
||||
msgstr "Manter"
|
||||
@@ -8027,7 +8027,7 @@ msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
msgstr "Foi detectado um objeto com partes flutuantes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Another export job is running."
|
||||
msgstr "Outro trabalho de exportação está em execução."
|
||||
@@ -8446,7 +8446,7 @@ msgid "Triangles: %1%\n"
|
||||
msgstr "Triângulos: %1%\n"
|
||||
|
||||
msgid "Use \"Fix Model\" to repair the mesh."
|
||||
msgstr "Use \"Corrigir Modelo\" para reparar a malha."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
@@ -8619,20 +8619,18 @@ msgid "Show splash screen"
|
||||
msgstr "Mostrar tela de abertura"
|
||||
|
||||
msgid "Show the splash screen during startup."
|
||||
msgstr "Mostrar a tela de abertura durante a inicialização."
|
||||
msgstr "Mostra a tela de abertura durante a inicialização."
|
||||
|
||||
msgid "Show shared profiles notification"
|
||||
msgstr "Mostrar notificação de perfis compartilhados"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Show a notification with a link to browse shared profiles when the selected "
|
||||
"printer is changed."
|
||||
msgstr ""
|
||||
"Mostrar uma notificação com um link para navegar pelos perfis compartilhados "
|
||||
"quando a impressora selecionada for alterada."
|
||||
|
||||
msgid "Use window buttons on left side"
|
||||
msgstr "Usar os botões de janela no lado esquerdo"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Requer reinício)"
|
||||
@@ -8965,15 +8963,12 @@ msgid ""
|
||||
"Limits viewport frame rate to reduce GPU load and power usage.\n"
|
||||
"Set to 0 for unlimited frame rate."
|
||||
msgstr ""
|
||||
"Limita a taxa de quadros da janela de visualização para reduzir a carga da "
|
||||
"GPU e o consumo de energia.\n"
|
||||
"Defina como 0 para taxa de quadros ilimitada."
|
||||
|
||||
msgid "Show FPS overlay"
|
||||
msgstr "Mostrar painel de FPS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Displays current viewport FPS in the top-right corner."
|
||||
msgstr "Exibe o FPS atual da janela de visualização no canto superior direito."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login region"
|
||||
msgstr "Região de login"
|
||||
@@ -8986,10 +8981,6 @@ msgid ""
|
||||
"the transmission of data to Bambu's cloud services too. Users who don't use "
|
||||
"BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
"Esta opção desativa todos os serviços em nuvem, como o Orca Cloud e o Bambu "
|
||||
"Cloud. Isso também interrompe a transmissão de dados para os serviços em "
|
||||
"nuvem da Bambu. Usuários que não utilizam máquinas Bambu Labs ou que usam "
|
||||
"apenas o modo LAN podem ativar esta função com segurança."
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Teste de Rede"
|
||||
@@ -9295,7 +9286,7 @@ msgid "Project-inside presets"
|
||||
msgstr "Predefinições dentro do projeto"
|
||||
|
||||
msgid "Bundle presets"
|
||||
msgstr "Empacotar predefinições"
|
||||
msgstr ""
|
||||
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
@@ -9898,9 +9889,6 @@ msgid ""
|
||||
"type in the slicing file. Please make sure you have installed the correct "
|
||||
"filament in the external spool."
|
||||
msgstr ""
|
||||
"O tipo de filamento externo é desconhecido ou não corresponde ao tipo de "
|
||||
"filamento no arquivo de fatiamento. Certifique-se de ter instalado o "
|
||||
"filamento correto no carretel externo."
|
||||
|
||||
msgid "Please refer to Wiki before use->"
|
||||
msgstr "Consulte o Wiki antes de usar->"
|
||||
@@ -11518,15 +11506,11 @@ msgid ""
|
||||
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
|
||||
"install the gtksink plugin for GStreamer, then restart OrcaSlicer."
|
||||
msgstr ""
|
||||
"A visualização ao vivo nativa do Wayland requer o receptor de vídeo GTK do "
|
||||
"GStreamer. Instale o plugin gtksink para GStreamer e reinicie o OrcaSlicer."
|
||||
|
||||
msgid ""
|
||||
"Failed to initialize the native Wayland GStreamer video sink. Please check "
|
||||
"your GStreamer GTK plugin installation."
|
||||
msgstr ""
|
||||
"Falha ao inicializar o receptor de vídeo nativo do Wayland GStreamer. "
|
||||
"Verifique a instalação do plugin GStreamer GTK."
|
||||
|
||||
msgid ""
|
||||
"Windows Media Player is required for this task! Do you want to enable "
|
||||
@@ -11567,8 +11551,6 @@ msgstr ""
|
||||
|
||||
msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
|
||||
msgstr ""
|
||||
"O agente na nuvem não está disponível. Reinicie o OrcaSlicer e tente "
|
||||
"novamente."
|
||||
|
||||
msgid "Bambu Network plug-in not detected."
|
||||
msgstr "Plug-in de Rede Bambu não detectado."
|
||||
@@ -11760,7 +11742,7 @@ msgid "Zoom out"
|
||||
msgstr "Afastar zoom"
|
||||
|
||||
msgid "Toggle printable for object/part"
|
||||
msgstr "Alternar modo de impressão para objeto/peça"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch between Prepare/Preview"
|
||||
msgstr "Alternar entre Preparar/Pré-visualizar"
|
||||
@@ -12015,13 +11997,13 @@ msgstr "Mesa de Extensão"
|
||||
|
||||
#, boost-format
|
||||
msgid "Split into %1% parts"
|
||||
msgstr "Dividir em %1% peças"
|
||||
msgstr ""
|
||||
|
||||
msgid "Repair finished"
|
||||
msgstr "Reparo concluído"
|
||||
|
||||
msgid "Repair failed"
|
||||
msgstr "Reparo falhou"
|
||||
msgstr ""
|
||||
|
||||
msgid "Repair canceled"
|
||||
msgstr "Reparo cancelado"
|
||||
@@ -12101,19 +12083,15 @@ msgid "Flush volumes matrix do not match to the correct size!"
|
||||
msgstr "A matriz de volumes de descarga não corresponde ao tamanho correto!"
|
||||
|
||||
msgid "set_accel_and_jerk() is only supported by Klipper"
|
||||
msgstr "set_accel_and_jerk() só é suportado pelo Klipper"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Input shaping is not supported by Marlin < 2.1.2.\n"
|
||||
"Check your firmware version and update your G-code flavor to ´Marlin 2´"
|
||||
msgstr ""
|
||||
"O controle de entrada não é suportado pelo Marlin < 2.1.2.\n"
|
||||
"Verifique a versão do seu firmware e atualize o seu G-code para 'Marlin 2'"
|
||||
|
||||
msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
|
||||
msgstr ""
|
||||
"O controle de entrada é suportado apenas pelo Klipper, RepRapFirmware e "
|
||||
"Marlin 2"
|
||||
|
||||
msgid "Grouping error: "
|
||||
msgstr "Erro de agrupamento: "
|
||||
@@ -12698,7 +12676,7 @@ msgstr ""
|
||||
"por este valor."
|
||||
|
||||
msgid "Elephant foot layers density"
|
||||
msgstr "Densidade das camadas do pé de elefante"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Density of internal solid infill for Elephant foot layers compensation.\n"
|
||||
@@ -12706,11 +12684,6 @@ msgid ""
|
||||
"Subsequent layers become linearly denser by the height specified in "
|
||||
"elefant_foot_compensation_layers."
|
||||
msgstr ""
|
||||
"Densidade do preenchimento sólido interno para compensação das camadas de "
|
||||
"pé de elefante.\n"
|
||||
"O valor inicial para a segunda camada está definido.\n"
|
||||
"As camadas subsequentes tornam-se linearmente mais densas pela altura "
|
||||
"especificada em elefant_foot_compensation_layers."
|
||||
|
||||
msgid ""
|
||||
"Slicing height for each layer. Smaller layer height means more accurate and "
|
||||
@@ -13876,18 +13849,14 @@ msgstr ""
|
||||
msgid ""
|
||||
"Enable this to override the fan speed set in custom G-code during print."
|
||||
msgstr ""
|
||||
"Habilite para substituir a velocidade da ventoinha definida no G-code "
|
||||
"personalizado durante a impressão."
|
||||
|
||||
msgid "On completion"
|
||||
msgstr "Na cinclusão"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this to override the fan speed set in custom G-code after print "
|
||||
"completion."
|
||||
msgstr ""
|
||||
"Habilite para substituir a velocidade da ventoinha definida no G-code "
|
||||
"personalizado após a conclusão da impressão."
|
||||
|
||||
msgid ""
|
||||
"Speed of exhaust fan during printing. This speed will override the speed in "
|
||||
@@ -14315,13 +14284,6 @@ msgid ""
|
||||
"\n"
|
||||
"This option will be disabled if spiral vase mode is enabled."
|
||||
msgstr ""
|
||||
"A direção em que as voltas da parede de contorno são extrudados quando "
|
||||
"vistos de cima.\n"
|
||||
"Os furos são impressos na direção oposta ao contorno para manter o "
|
||||
"alinhamento com as camadas cujos polígonos de contorno estão incompletos e "
|
||||
"mudam de direção, formando também parcialmente o contorno de um furo.\n"
|
||||
"\n"
|
||||
"Esta opção será desativada se o modo vaso espiral estiver ativado."
|
||||
|
||||
msgid "Counter clockwise"
|
||||
msgstr "Anti-horário"
|
||||
@@ -14722,16 +14684,16 @@ msgid "Auto For Match"
|
||||
msgstr "Automático para correspondência"
|
||||
|
||||
msgid "Enable filament dynamic map"
|
||||
msgstr "Habilitar mapa dinâmico de filamento"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable dynamic filament mapping during print."
|
||||
msgstr "Habilitar mapeamento dinâmico de filamentos durante a impressão."
|
||||
msgstr ""
|
||||
|
||||
msgid "Has filament switcher"
|
||||
msgstr "Tem trocador de filamentos"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer has a filament switcher hardware (e.g., AMS)."
|
||||
msgstr "A impressora tem um sistema de troca de filamentos (Ex.: AMS)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Flush temperature"
|
||||
msgstr "Temperatura de purga"
|
||||
@@ -15006,10 +14968,10 @@ msgstr ""
|
||||
"confiável."
|
||||
|
||||
msgid "Wipe tower cooling"
|
||||
msgstr "Resriamento da torre de limpeza"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperature drop before entering filament tower"
|
||||
msgstr "Redução de temperatura antes de entrar na torre de filamentos"
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr "Distância de pré-extrusão da camada de interface"
|
||||
@@ -15471,14 +15433,12 @@ msgstr ""
|
||||
"placa de impressão."
|
||||
|
||||
msgid "First layer travel"
|
||||
msgstr "Deslocamento para primeira camada"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Travel acceleration of first layer.\n"
|
||||
"The percentage value is relative to Travel Acceleration."
|
||||
msgstr ""
|
||||
"Aceleração de deslocamento para a primeira camada.\n"
|
||||
"O valor percentual é relativo à Aceleração de Deslocamento."
|
||||
|
||||
msgid "Enable accel_to_decel"
|
||||
msgstr "Habilitar accel_to_decel"
|
||||
@@ -15819,17 +15779,6 @@ msgid ""
|
||||
"Ripple: Uniform ripple pattern that ripples left and right of the original "
|
||||
"path. Repeating pattern, woven appearance."
|
||||
msgstr ""
|
||||
"Tipo de ruído a ser usado para geração de textura difusa:\n"
|
||||
"Clássico: Ruído aleatório uniforme clássico;\n"
|
||||
"Perlin: Ruído Perlin, que dá uma textura mais consistente;\n"
|
||||
"Billow: Semelhante ao ruído Perlin, mas mais aglomerado;\n"
|
||||
"Multifractal estriado: Ruído estriado com características pontiagudas e "
|
||||
"irregulares. Cria texturas semelhantes a mármore;\n"
|
||||
"Voronoi: Divide a superfície em células Voronoi e desloca cada uma delas "
|
||||
"por uma quantidade aleatória. Cria uma textura de retalhos;\n"
|
||||
"Ondulação: Padrão de ondulação uniforme que se propaga para a esquerda e "
|
||||
"para a direita do caminho original. Padrão repetitivo, com aparência de "
|
||||
"tecido."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Clássico"
|
||||
@@ -15847,7 +15796,7 @@ msgid "Voronoi"
|
||||
msgstr "Voronoi"
|
||||
|
||||
msgid "Ripple"
|
||||
msgstr "Ondulação"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr "Tamanho dos elementos da textura difusa"
|
||||
@@ -15880,14 +15829,13 @@ msgstr ""
|
||||
"baixos resultarão em ruído mais suave."
|
||||
|
||||
msgid "Number of ripples per layer"
|
||||
msgstr "Número de ondulações por camada"
|
||||
msgstr ""
|
||||
|
||||
msgid "Controls how many full cycles of ripples will be added per layer."
|
||||
msgstr ""
|
||||
"Controla quantos ciclos completos de ondulações serão adicionados por camada."
|
||||
|
||||
msgid "Ripple offset"
|
||||
msgstr "Deslocamento das ondulações"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Shifts the ripple phase forward along the print path by the specified "
|
||||
@@ -15901,21 +15849,9 @@ msgid ""
|
||||
"The shift is applied once every number of layers set by Layers between "
|
||||
"ripple offset, so layers within the same group are printed identically."
|
||||
msgstr ""
|
||||
"Desloca a fase da ondulação para a frente ao longo do percurso de impressão "
|
||||
"pela porcentagem especificada de um comprimento de onda a cada período de "
|
||||
"camada.\n"
|
||||
"- 0% mantém todas as camadas idênticas.\n"
|
||||
"- 50% desloca o padrão em meio comprimento de onda, invertendo efetivamente "
|
||||
"a fase.\n"
|
||||
"- 100% desloca o padrão em um comprimento de onda completo, retornando à "
|
||||
"fase original.\n"
|
||||
"\n"
|
||||
"O deslocamento é aplicado uma vez a cada número de camadas definido em "
|
||||
"Camadas entre deslocamento de ondulação, de modo que as camadas dentro do "
|
||||
"mesmo grupo sejam impressas de forma idêntica."
|
||||
|
||||
msgid "Layers between ripple offset"
|
||||
msgstr "Camadas entre o deslocamento de onda"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies how many consecutive layers share the same ripple phase before the "
|
||||
@@ -15928,15 +15864,6 @@ msgid ""
|
||||
"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
|
||||
"base pattern, etc."
|
||||
msgstr ""
|
||||
"Especifica quantas camadas consecutivas compartilham a mesma fase de "
|
||||
"ondulação antes da aplicação do deslocamento.\n"
|
||||
"Por exemplo:\n"
|
||||
"- 1 = A camada 1 é impressa com o padrão de ondulação base, em seguida a "
|
||||
"camada 2 é deslocada pelo valor configurado, depois a camada 3 retorna ao "
|
||||
"padrão base e assim por diante.\n"
|
||||
"- 3 = As camadas 1 a 3 são impressas com o padrão de ondulação base, em "
|
||||
"seguida as camadas 4 a 6 são deslocadas pelo valor configurado, depois as "
|
||||
"camadas 7 a 9 retornam ao padrão base, etc."
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Filtrar vazios pequenos"
|
||||
@@ -16669,17 +16596,13 @@ msgstr ""
|
||||
"Habilitar o contorno da camada Z (antisserrilhamento da camada Z)."
|
||||
|
||||
msgid "Minimize wall height angle"
|
||||
msgstr "Minimizar o ângulo de altura das paredes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Reduce the height of top-surface perimeters to match the model edge height.\n"
|
||||
"Affects perimeters with a slope less than this angle (degrees).\n"
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
"Reduz a altura dos perímetros da superfície superior para corresponder à "
|
||||
"altura da aresta do modelo.\n"
|
||||
"Afeta os perímetros com uma inclinação menor que este ângulo (em graus).\n"
|
||||
"Um valor razoável é 35. Defina como 0 para desativar."
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
@@ -16692,14 +16615,12 @@ msgstr ""
|
||||
"Desative a alternância da direção de preenchimento ao usar o contorno em Z."
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgstr "Altura Z mínima"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Minimum Z-layer height.\n"
|
||||
"Also controls the slicing plane."
|
||||
msgstr ""
|
||||
"Altura mínima da camada Z.\n"
|
||||
"Também controla o plano de corte."
|
||||
|
||||
msgid "This G-code is inserted at every layer change after the Z lift."
|
||||
msgstr "Este G-code é inserido a cada mudança de camada após a elevação Z."
|
||||
@@ -16902,14 +16823,12 @@ msgid "Maximum speed of resonance avoidance."
|
||||
msgstr "Velocidade máxima de prevenção de ressonância."
|
||||
|
||||
msgid "Emit input shaping"
|
||||
msgstr "Emitir modelagem de entrada"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Override firmware input shaping settings.\n"
|
||||
"If disabled, firmware settings are used."
|
||||
msgstr ""
|
||||
"Substituir as configurações de modelagem de entrada do firmware.\n"
|
||||
"Se desativado, as configurações do firmware serão usadas."
|
||||
|
||||
msgid "Input shaper type"
|
||||
msgstr "Tipo de modelador de entrada"
|
||||
@@ -16919,9 +16838,6 @@ msgid ""
|
||||
"Default uses the firmware default settings.\n"
|
||||
"Disable turns off input shaping in the firmware."
|
||||
msgstr ""
|
||||
"Escolha o algoritmo de modelagem de entrada.\n"
|
||||
"Padrão usa as configurações padrão do firmware.\n"
|
||||
"Desativar desativa a modelagem de entrada no firmware."
|
||||
|
||||
msgid "MZV"
|
||||
msgstr ""
|
||||
@@ -23364,10 +23280,6 @@ msgid ""
|
||||
"the surface quality of your overhangs? However, it can cause wall "
|
||||
"inconsistencies so use carefully!"
|
||||
msgstr ""
|
||||
"Reversão em par\n"
|
||||
"Você sabia que o recurso <b>Reversão em par</b> pode melhorar "
|
||||
"significativamente a qualidade da superfície de suas saliências? No entanto, "
|
||||
"ele pode causar inconsistências na parede, portanto, use com cuidado!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -472,10 +472,6 @@
|
||||
"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"
|
||||
@@ -592,18 +588,6 @@
|
||||
"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"
|
||||
|
||||
@@ -1,81 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,70 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
{
|
||||
"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
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,53 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,86 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,101 +0,0 @@
|
||||
{
|
||||
"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,49 +10,19 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,49 +10,19 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,19 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"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": [
|
||||
"24"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,19 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"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": [
|
||||
"24"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,19 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,19 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"62.5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,16 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,19 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,19 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,52 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,52 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,49 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,19 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,55 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,55 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,52 +10,19 @@
|
||||
"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"
|
||||
],
|
||||
"filament_cost": [
|
||||
"21.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.37"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,19 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"22"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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",
|
||||
@@ -10,40 +11,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"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": [
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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",
|
||||
@@ -10,40 +11,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"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": [
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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",
|
||||
@@ -10,43 +11,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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",
|
||||
@@ -10,43 +11,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Panchroma PLA Satin @base",
|
||||
"renamed_from": "Panchroma PLA Stain @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFPM005",
|
||||
|
||||
@@ -10,55 +10,22 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,55 +10,22 @@
|
||||
"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"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"58.2"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,49 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"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_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,49 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"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_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,49 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"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_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,46 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"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_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"16"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,43 +10,22 @@
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"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"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,40 +10,22 @@
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"60"
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"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"
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
{
|
||||
"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,63 +5,36 @@
|
||||
"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,63 +5,36 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSL00_00",
|
||||
"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"
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"60"
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"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"
|
||||
"8"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"61"
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,60 +5,123 @@
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
"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}"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,68 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user