Compare commits

..

10 Commits

Author SHA1 Message Date
Mitchell Mashburn
af9fd10d7a re:3D profile updates. (#15169)
* re:3D profile updates.

- Replace vendor-specific "re3D Greengate rPETG" filament with a generic "re3D rPETG" (base + @0.8/@1.75 nozzle variants), matching the naming convention used for rPLA/rPETG elsewhere in the re:3D vendor
  pack.
- Add fdm_filament_pp as a proper filament-type parent and switch re3D rPP to inherit from it instead of overriding filament_type on top of fdm_filament_pet.
- Added filament_type to the specific printer JSON file and removed from the base printer JSON file [fixes Issue#14693]
- Updates to speeds and accelerations for re:3D profiles, moved from common to machine processes [closed: PR#14259]
- Updates to fdm profile filename format so that it lists the filename and extruder number in the sliced .gcode file

* Fix setting IDs

* Add rename from for changed material names.
2026-08-08 01:07:03 +08:00
Kris Austin
74aed7a2bb test: finish the temp-file cleanup (#14976)
Follow-up to #14785. Routes the tests that still hand-rolled temp paths through
the shared helpers and unifies the temp guards.

- Add ScopedTemporaryDir and a shared ScopedTemporaryPath base under it and
  ScopedTemporaryFile.
- Move test_3mf's round-trip .3mf output out of the TEST_DATA_DIR source tree
  (a fixed-name leak) and test_toolordering's fixed-name temp .gcode (a sharding
  collision) onto ScopedTemporaryFile.
- Move test_config, test_slicing_pipeline_bindings, the test_3mf backup dirs, and
  test_preset_bundle_loading onto the guards.
- Make slic3rutils ScopedDataDir compose ScopedTemporaryDir; dedupe
  test_network_versions' fixture and delete test_plugin_lifecycle's duplicate.
2026-08-07 13:33:37 -03:00
Kris Austin
8bff9aaf32 fix(GUI): honor "Ignore" when layer height exceeds the configured maximum (#14369)
* fix(GUI): honor "Ignore" when layer height exceeds the configured maximum

Entering a layer height above the printer's max_layer_height on the Print
Settings tab fired two guards in sequence. Tab::on_value_change prompts
"...Adjust to the set range automatically?" with an Adjust/Ignore choice, and
ConfigManipulation::update_print_fff_config then showed an OK-only "Too large
layer height. Reset to X" dialog whose result was never checked, so it always
reset the value. The second guard overrode the user's "Ignore", resetting the
layer height regardless.

Changes:
- Extract the shared Adjust/Ignore dialog into
  ConfigManipulation::layer_height_out_of_range_dialog, reused by the tab
  (Tab::on_value_change) and the per-object/part settings panels. The dialog now
  names the value it will clamp to and reads correctly for too-low as well as
  too-high.
- The tab/plate path is already covered by Tab::on_value_change, so the
  duplicate reset is dropped from update_print_fff_config.
- The per-object/part panels have no on_value_change hook, so add
  ConfigManipulation::check_object_layer_height and call it from the object
  settings update paths, gated on the edited option (changed_opt_key ==
  "layer_height"). It prompts once per layer-height edit and does not re-prompt
  when unrelated object settings change after the user chose "Ignore".

Fixes #14214

* refactor(GUI): unify the layer-height range check across tab and object panels

Copilot review of #14369 noted that the per-object check only guarded the
max at extruder 0 and skipped the too-low case, diverging from the tab.

Move the whole range check into ConfigManipulation::check_layer_height,
used by both Tab::on_value_change and the per-object/part panels. It takes
the widest [min, max] window across the printer's extruders, offers
Adjust/Ignore in both directions, and resets a near-zero value. The tab's
inline block collapses to one call, dropping the duplicated limit logic.

* fix(GUI): only enforce layer-height limits that are actually set

max_layer_height defaults to 0 (unset), so the unconditional range check
offered to clamp any layer height to 0 on presets that don't define it.
Guard each branch (near-zero, too-high, too-low) so an unset limit disables
that direction; the slice-time nozzle-diameter check still applies.

Also run check_layer_height before update_print_fff_config in the object
panels so a near-zero per-object value prompts the same way the tab does,
with update_print_fff_config's fallback still covering the no-minimum case.
2026-08-07 13:31:04 -03:00
Kris Austin
83723e2a7b fix: Slice all crash on a multi-plate project with an uninitialized toolbar (#15117)
_update_select_plate_toolbar_stats_item(true) runs from
on_action_slice_all before the select-plate toolbar has necessarily been
initialized. m_all_plates_stats_item is only assigned in
_init_select_plate_toolbar, so slicing a multi-plate project shortly
after startup (before the Preview tab has rendered) leaves the pointer
null while show_stats_item is true, and the branch dereferences it,
crashing with SIGSEGV.

Every other dereference of this pointer already null-checks it. Add the
same check here so the all-plates stats item is left unselected until the
toolbar is initialized instead of crashing.

Fixes #15116
2026-08-07 13:28:54 -03:00
Kris Austin
e2fd46f82c fix: default-initialize WallToolPathsParams fields (#15138)
min_length_factor and is_top_or_bottom_layer had no default initializers, and the FillConcentric/FillConcentricInternal callers never set them, so WallToolPaths::removeSmallLines() thresholded on stack garbage. Which short extrusion lines it dropped then depended on memory layout, so concentric solid-infill output was nondeterministic between runs and across machines. Give every member a default, matching the adjacent FillParams. The perimeter path was already fine because it builds the struct via make_paths_params().
2026-08-07 13:22:26 -03:00
TheLegendTubaGuy
b216813bf0 Add the Qidi Plus 5 (#15163)
* Add the Qidi Plus 5

* Remove ignored profiles

Qidi didn't register these, so they are essentially dead weight.

* Set Qidi profile version to 02.04.00.10
2026-08-07 13:07:27 -03:00
Felix14_v2
b3296fa199 Review AI changes in Russian localization (#15092)
* Review AI changes

* Part 2

* Part 3

* Part 4

God bless Ian Alexis

* Part 5

* Final part!

* Catches by Gemma

This 6-minute check probably saved me a week

* Tweak

* Update OrcaSlicer_ru.po
2026-08-07 12:03:53 -03:00
Surfoo
6d9a9eeb04 i18n(fr): improve French localization quality and consistency. (#15106) 2026-08-07 09:31:57 -03:00
Clifford
8e243faa3a Fix Linux unit test failure in the wipe tower temperature trace comparison (#15161)
## Problem

`Toolchange temperature commands are unchanged when the wipe tower wait
is off`
(added in #15144) fails on both Linux runners and passes on Windows and
macOS.
It is the only failing test in the suite, and it has been failing on
main since
that PR merged.

| Job | Result |
| --- | --- |
| Windows x64 / Unit Tests | pass |
| Windows arm64 / Unit Tests | pass |
| macOS arm64 / Unit Tests | pass |
| Linux x86_64 / Unit Tests | **fail** |
| Linux aarch64 / Unit Tests | **fail** |

From the merge commit
([Linux
x86_64](https://github.com/OrcaSlicer/OrcaSlicer/actions/runs/31072382258/job/92531704095),
[Linux
aarch64](https://github.com/OrcaSlicer/OrcaSlicer/actions/runs/31072382258/job/92531704075)),
still reproducing on current main:

```
first difference at trace entry 29
  main:   M104 S240 T0 ; preheat T0 time: 31s	lead 30.9s
  branch: M104 S240 T0 ; preheat T0 time: 30s	lead 30.3s
```

## Cause

Each preheat entry records the same quantity twice: `lead` at one
decimal, and
`time:` inside the command text as that value rounded to a whole second.

`split_lead` already compares `lead` with a 0.5s tolerance and explains
why the
estimate moves. `time:` sits in the exactly-compared command text, so it
never
got that tolerance — and being rounded, it flips on a drift far below
0.5s
(30.4 and 30.6 render as `30s` and `31s`). Entry 29 is the only entry in
the
163-entry golden whose lead rounds up; every other preheat sits at
30.0–30.4 and
rounds down, which is why it is the only one that fails.

The variation is per-toolchain, not run to run. Both Linux arches
produce
exactly `lead 30.3s`; Windows x64/arm64 and macOS arm64 all produce
exactly
`30.9s`. Repeated local runs are byte-identical. macOS arm64 passing
while Linux
aarch64 fails rules out the ISA — it is floating-point accumulation over
a few
thousand move durations under GCC vs Clang vs MSVC.

The mechanism makes it discrete rather than gradual: the backtrace parks
the
preheat at the first exported line at least `preheat_time` before the
tool
change, so `lead` is `preheat_time` plus the leftover of whichever move
that
landed on. A sub-tenth difference selects the neighbouring move and
`lead` steps
by that move's whole duration.

Entries 1–28 match exactly, including five earlier preheats whose leads
fall
inside the existing tolerance, so the toolpaths themselves are
identical. I also
reverted the two prime-tower commits that landed between the golden's
capture
point and now, rebuilt, and got a byte-identical trace — this is not
behavioural
drift.

That also rules out regenerating the golden: no single capture satisfies
all
three toolchains, and recapturing on Linux would turn the three
currently-green
runners red.

## Fix

Test-only.

- `lead` keeps a tolerance, widened to 1.5s (measured drift 0.6s; a
preheat
actually leaving its backtrace position would move by tens of seconds).
- `time:` is **not** compared across runs at all. Being a rounding of
`lead`, it
carries nothing the tolerance does not already cover, and comparing it
across
runs can only reproduce the flake. It is instead checked against its own
  entry's `lead` — a correct rounding keeps `|time - lead| <= 0.5`.

That second point matters: simply tolerating `time:` numerically would
have made
the test blind to a real change, because drift and a wrong rounding both
move it
by 1. The self-consistency check keeps that coverage. I verified it by
changing
`(int) std::round(time_diffs[0])` to `(int) time_diffs[0]` in
`GCodeProcessor::export_lines` — the test fails with
`"time:" is not its entry's "lead" rounded to a whole second`, where a
plain
tolerance would have passed silently.

Everything else is still compared exactly: all M104/M109 values, tool
ids,
block markers, ordering, entry count, and the annotation text including
its
trailing `s`. The other 138 entries remain byte-exact.

No production code, no golden regeneration. The golden file and these
helpers
are used by this one test and nothing else, and the tolerance only
widens, so
Windows and macOS keep passing unchanged. A note is added to the
golden's header
so the next mismatch in those fields is not "fixed" by recapturing.

## How to verify

Before, on Linux:

```bash
git checkout main && ./build_linux.sh -t
ctest --test-dir build/tests -R "Toolchange temperature commands are unchanged" --output-on-failure
# fails at trace entry 29
```

After:

```bash
cmake --build build --config Release --target fff_print_tests
ctest --test-dir build/tests --output-on-failure     # 463/463
```
2026-08-07 20:26:18 +08:00
Alexandre Folle de Menezes
b5412221b6 Verify and improve AI pt_BR translations (#15080) 2026-08-07 09:22:42 -03:00
347 changed files with 12072 additions and 1903 deletions

View File

@@ -9283,22 +9283,22 @@ msgid "DEV host: api-dev.bambu-lab.com/v1"
msgstr "Hôte DEV : api-dev.bambu-lab.com/v1"
msgid "QA host: api-qa.bambu-lab.com/v1"
msgstr "Hôte AQ : api-qa.bambu-lab.com/v1"
msgstr "Hôte QA : api-qa.bambu-lab.com/v1"
msgid "PRE host: api-pre.bambu-lab.com/v1"
msgstr "Hébergeur PRE : api-pre.bambu-lab.com/v1"
msgstr "Hôte PRE : api-pre.bambu-lab.com/v1"
msgid "Product host"
msgstr "Hôte du produit"
msgid "Debug save button"
msgstr "bouton d'enregistrement de débogage"
msgstr "Bouton d'enregistrement de debugage"
msgid "Save debug settings"
msgstr "enregistrer les paramètres de débogage"
msgstr "Enregistrer les paramètres de debugage"
msgid "Debug settings have been saved successfully!"
msgstr "Les paramètres DEBUG ont été enregistrés avec succès !"
msgstr "Les paramètres de debug ont été enregistrés avec succès !"
msgid "Cloud environment switched; please login again!"
msgstr "L'environnement Cloud a changé, veuillez vous reconnecter !"

View File

@@ -17130,15 +17130,12 @@ msgstr "Quando este valor de retração for modificado, ele será usado como a q
msgid "Support fast purge mode"
msgstr "Suporte ao modo de purga rápida"
# AI Translated
msgid "Whether this printer supports fast purge mode with optimized temperature and multiplier."
msgstr "Se esta impressora suporta o modo de purga rápida com temperatura e multiplicador otimizados."
# AI Translated
msgid "Filament change"
msgstr "Troca de filamento"
# AI Translated
msgid "The volume of material required to prime the extruder on the tower, excluding a hotend change."
msgstr "O volume de material necessário para preparar a extrusora na torre, excluindo uma troca de hotend."
@@ -18323,11 +18320,9 @@ msgstr ""
"Há vários endereços IP resolvendo para o nome do host %1%.\n"
"Por favor, selecione um que deve ser usado."
# AI Translated
msgid "Auto-scale for nozzle"
msgstr "Escala automática para o bico"
# AI Translated
msgid ""
"This model is designed around a 0.4 mm nozzle with a 0.2 mm layer height. \n"
"When the scaling option is enabled (recommended), it dynamically resizes to match your current nozzle diameter and an appropriate layer height, making the test both accurate and easy to read.\n"
@@ -18473,11 +18468,9 @@ msgstr "Velocidade Inicial: "
msgid "End speed: "
msgstr "Velocidade Final: "
# AI Translated
msgid "Auto-adjust to max volumetric speed"
msgstr "Ajuste automático à velocidade volumétrica máxima"
# AI Translated
msgid "If the end speed would exceed the filament's maximum volumetric speed, automatically lower the layer height (keeping standard values and staying within the machine's limits) to reach it. If even the minimum layer height is not enough, lower the end speed instead."
msgstr "Se a velocidade final ultrapassar a velocidade volumétrica máxima do filamento, reduz automaticamente a altura de camada (mantendo valores padrão e respeitando os limites da máquina) para alcançá-la. Se nem mesmo a altura de camada mínima for suficiente, reduz a velocidade final."
@@ -18492,7 +18485,6 @@ msgstr ""
"passo >= 0\n"
"fim > início + passo"
# AI Translated
#, c-format, boost-format
msgid ""
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s), which limits the outer wall to about %.0f mm/s at this line width and layer height.\n"
@@ -18500,12 +18492,11 @@ msgid ""
"\n"
"%s"
msgstr ""
"A velocidade final (%.0f mm/s) ultrapassa a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
"A velocidade final (%.0f mm/s) excede a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
" Velocidades acima disso serão limitadas, portanto os blocos superiores da torre não serão impressos na velocidade solicitada.\n"
"\n"
"%s"
# AI Translated
#, c-format, boost-format
msgid ""
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s) at the default layer height (%.2f mm).\n"
@@ -18516,7 +18507,6 @@ msgstr ""
"\n"
"A altura de camada foi reduzida para %.2f mm (um valor usado pelos perfis desta impressora) para que a torre possa atingir a velocidade solicitada."
# AI Translated
#, c-format, boost-format
msgid ""
"Even at the smallest layer height used by this printer's profiles (%.2f mm) the end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s).\n"
@@ -18531,15 +18521,12 @@ msgstr ""
"\n"
"Continuar?"
# AI Translated
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
# AI Translated
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
msgstr "Ativar \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
# AI Translated
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
msgstr "Ativar \"Escala automática para o bico\" e \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
@@ -19644,9 +19631,8 @@ msgstr "Não foi possível decifrar a resposta do servidor."
msgid "Error saving session to file"
msgstr "Erro salvando sessão para arquivo"
# AI Translated
msgid "Error session check"
msgstr "Verificação de sessão de erro"
msgstr "Erro na verificação de sessão"
msgid "Error during file upload"
msgstr "Erro durante a subida do arquivo"
@@ -20079,9 +20065,8 @@ msgstr "Impressão Falhou"
msgid "Removed"
msgstr "Removido"
# AI Translated
msgid "Enable smart filament assign: Assign one filament to multiple nozzles to maximize savings"
msgstr "Ativar atribuição inteligente de filamento: atribui um filamento a vários bicos para maximizar a economia"
msgstr "Ativar atribuição inteligente de filamento: Atribui um filamento a vários bicos para maximizar a economia"
msgid "Fila Saving"
msgstr "Econo Filamento"
@@ -20119,7 +20104,6 @@ msgstr "Tutorial em vídeo"
msgid "(Sync with printer)"
msgstr "(Sinc. com impressora)"
# AI Translated
#, c-format, boost-format
msgid "Error: %s extruder has no available %s nozzle, current group result is invalid."
msgstr "Erro: a extrusora %s não tem nenhum bico %s disponível, o resultado do grupo atual é inválido."
@@ -20130,17 +20114,14 @@ msgstr "Vamos fatiar de acordo com este método de agrupamento:"
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
msgstr "Dica: Você pode arrastar os filamentos para reatribuí-los a diferentes bicos."
# AI Translated
msgid "Please adjust your grouping or click "
msgstr "Por favor, ajuste seu agrupamento ou clique em "
# AI Translated
msgid " to set nozzle count"
msgstr " para definir o número de bicos"
# AI Translated
msgid "Set the physical nozzle count..."
msgstr "Definir o número físico de bicos..."
msgstr "Definir o número de bicos físicos"
msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button."
msgstr "O método de agrupamento de filamentos para a placa atual é determinado pela opção no botão de fatiamento da placa."
@@ -20480,99 +20461,75 @@ msgstr "Numero de facetas triangulares"
msgid "Calculating, please wait..."
msgstr "Calculando, por favor aguarde…"
# AI Translated
msgid "Save these settings as default"
msgstr "Salvar estas configurações como padrão"
# AI Translated
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr "Se ativado, os valores acima são armazenados como os padrões usados para futuras importações STEP (e mostrados nas Preferências)."
# AI Translated
msgid "PresetBundle"
msgstr "PresetBundle"
# AI Translated
msgid "Bundle folder does not exist."
msgstr "A pasta do pacote não existe."
# AI Translated
msgid "Failed to open folder."
msgstr "Falha ao abrir a pasta."
# AI Translated
msgid "Delete selected bundle from folder and all presets loaded from it?"
msgstr "Excluir o pacote selecionado da pasta e todas as predefinições carregadas a partir dele?"
# AI Translated
msgid "Delete Bundle"
msgstr "Excluir pacote"
msgstr "Excluir Pacote"
# AI Translated
msgid "Failed to remove bundle."
msgstr "Falha ao remover o pacote."
# AI Translated
msgid "Remove Bundle"
msgstr "Remover pacote"
# AI Translated
msgid "Unsubscribe bundle?"
msgstr "Cancelar a inscrição do pacote?"
# AI Translated
msgid "UnsubscribeBundle"
msgstr "UnsubscribeBundle"
# AI Translated
msgid "Failed to unsubscribe bundle."
msgstr "Falha ao cancelar a inscrição do pacote."
# AI Translated
msgid "Unsubscribe Bundle"
msgstr "Cancelar inscrição do pacote"
msgstr "Cancelar inscrição do Pacote"
# AI Translated
msgid "ExportPresetBundle"
msgstr "ExportPresetBundle"
# AI Translated
msgid "Save preset bundle"
msgstr "Salvar pacote de predefinições"
# AI Translated
msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path."
msgstr "Falha ao realizar a integração com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
# AI Translated
msgid "Performing desktop integration failed - Could not find executable."
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível encontrar o executável."
# AI Translated
msgid "Performing desktop integration failed because the application directory was not found."
msgstr "Falha ao realizar a integração com a área de trabalho porque o diretório do aplicativo não foi encontrado."
# AI Translated
msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully."
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível criar o arquivo desktop do Gcodeviewer. O arquivo desktop do OrcaSlicer provavelmente foi criado com sucesso."
# AI Translated
msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
# AI Translated
msgid "Performing downloader desktop integration failed - Could not find executable."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - não foi possível encontrar o executável."
# AI Translated
msgid "Performing downloader desktop integration failed because the application directory was not found."
msgstr "Falha ao realizar a integração do downloader com a área de trabalho porque o diretório do aplicativo não foi encontrado."
# AI Translated
msgid "Desktop Integration"
msgstr "Integração com a área de trabalho"
msgstr "Integração com a Área de Trabalho"
# AI Translated
msgid ""
"Desktop Integration sets this binary to be searchable by the system.\n"
"\n"
@@ -20596,40 +20553,33 @@ msgstr "Arquivar pré-visualização"
msgid "Open File"
msgstr "Abrir Arquivo"
# AI Translated
msgid "AMS Dryness Control"
msgstr "Controle de secura do AMS"
msgstr "Controle de Secura do AMS"
# AI Translated
msgid "Filament Drying Settings"
msgstr "Configurações de secagem de filamento"
msgstr "Configurações de Secagem de Filamento"
msgid "Stopping"
msgstr "Parando"
# AI Translated
msgid "Unable to dry temporarily due to ..."
msgstr "Não é possível secar temporariamente devido a ..."
msgstr "Não é possível secar temporariamente devido a"
msgid "Drying Error"
msgstr "Erro de Secagem"
# AI Translated
msgid "Please check the Assistant for troubleshooting"
msgstr "Por favor, verifique o Assistente para solução de problemas"
# AI Translated
msgid "Please remove and store the filament (as shown)."
msgstr "Por favor, remova e guarde o filamento (como mostrado)."
# AI Translated
msgid "The AMS can rotate the filament which is properly stored, providing better drying results."
msgstr "O AMS pode girar o filamento que está corretamente armazenado, proporcionando melhores resultados de secagem."
msgid "Rotate spool when drying"
msgstr "Girar o carretel durante a secagem"
# AI Translated
msgctxt "amsdrying"
msgid "Back"
msgstr "Voltar"
@@ -20649,11 +20599,9 @@ msgstr " temperatura mínima de secagem é "
msgid "This filament may not be completely dried."
msgstr "Este filamento pode não estar completamente seco."
# AI Translated
msgid "This AMS is currently printing. To ensure print quality, the drying temperature cannot exceed the recommended drying temperature."
msgstr "Este AMS está imprimindo no momento. Para garantir a qualidade da impressão, a temperatura de secagem não pode exceder a temperatura de secagem recomendada."
# AI Translated
msgid "The temperature shall not exceed the filament's heat distortion temperature"
msgstr "A temperatura não deve exceder a temperatura de distorção térmica do filamento"
@@ -20666,22 +20614,18 @@ msgstr "O valor máximo de tempo não pode ser superior a 24."
msgid "Insufficient power"
msgstr "Potência insuficiente"
# AI Translated
msgid " Too many AMS drying simultaneously. Please plug in the power or stop other drying processes before starting."
msgstr " Muitos AMS secando simultaneamente. Por favor, conecte à energia ou pare outros processos de secagem antes de iniciar."
msgid "AMS is busy"
msgstr "O AMS está ocupado"
# AI Translated
msgid " AMS is calibrating | reading RFID | loading/unloading material, please wait."
msgstr " O AMS está calibrando | lendo RFID | carregando/descarregando material, por favor aguarde."
# AI Translated
msgid "Filament in AMS outlet"
msgstr "Filamento na saída do AMS"
# AI Translated
msgid " The high drying temperature may cause AMS blockage, please unload first."
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS, por favor descarregue primeiro."
@@ -20694,18 +20638,15 @@ msgstr "Não suportado no modo 2D"
msgid "Task in progress"
msgstr "Tarefa em progresso"
# AI Translated
msgid " The AMS might be in use during Task."
msgstr " O AMS pode estar em uso durante a Tarefa."
msgid " Firmware update in progress, please wait..."
msgstr " Atualização de firmware em progresso, por favor aguarde..."
msgstr " Atualização de firmware em progresso, por favor aguarde"
# AI Translated
msgid " Please plug in the power and then use the drying function."
msgstr " Por favor, conecte à energia e depois use a função de secagem."
msgstr " Por favor, conecte à energia e então use a função de secagem."
# AI Translated
msgid " The high drying temperature may cause AMS blockage. Please unload the filament manually before proceeding."
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS. Por favor, descarregue o filamento manualmente antes de prosseguir."
@@ -20713,7 +20654,7 @@ msgid "System is busy"
msgstr "O sistema está ocupado"
msgid " Initiating other drying processes, please wait a few seconds..."
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos..."
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos"
msgid "For better drying results, remove the filament and allow it to rotate."
msgstr "Para obter melhores resultados de secagem, remova o filamento e permita que ele gire."
@@ -21078,17 +21019,6 @@ msgstr ""
#~ msgid "Rear"
#~ msgstr "Traseira"
# AI Translated
#, boost-format
#~ msgid ""
#~ "Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
#~ "Please report to PrusaSlicer team in which scenario this issue happened.\n"
#~ "Thank you."
#~ msgstr ""
#~ "Os objetos(%1%) têm conectores duplicados. Alguns conectores podem estar faltando no resultado do fatiamento.\n"
#~ "Por favor, informe à equipe do PrusaSlicer em qual cenário esse problema ocorreu.\n"
#~ "Obrigado."
#~ msgid "Skip for Now"
#~ msgstr "Pular por Enquanto"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "v4Of6ePWz1oGVLqU",
"name": "Bambu ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "K3KqxJ3z6lSKoCsQ",
"name": "Bambu ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "D3OOS6ShJDdn4dlU",
"name": "Bambu ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "8zWM4mqGjwjy2yJb",
"name": "Bambu ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.011"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,105 @@
{
"type": "filament",
"filament_id": "GFB99",
"name": "Bambu ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"55"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"20"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.05"
],
"filament_flow_ratio": [
"0.95"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Bambu Lab"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"260"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.035"
],
"slow_down_layer_time": [
"4"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "ed9ZVS66ll61akjK",
"name": "Bambu PETG @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "mPLqTb7smgIDOZTg",
"name": "Bambu PETG @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "A3K4JfwyqUnciD2e",
"name": "Bambu PETG @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "4qjG4MYXmLPJ5Qjm",
"name": "Bambu PETG @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,102 @@
{
"type": "filament",
"filament_id": "GFG99",
"name": "Bambu PETG@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"60"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"80"
],
"eng_plate_temp": [
"80"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"13"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Bambu Lab"
],
"hot_plate_temp_initial_layer": [
"80"
],
"hot_plate_temp": [
"80"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"slow_down_layer_time": [
"8"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"supertack_plate_temp": [
"60"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp_initial_layer": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_cool_plate_temp_initial_layer": [
"60"
],
"textured_cool_plate_temp": [
"60"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "cI5eJwzwoecS97SU",
"name": "Bambu PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "UP5ST3BYA3nWaT5i",
"name": "Bambu PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "jSFJn0WmV76aBwPt",
"name": "Bambu PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "MYCn1SS32p63RzX0",
"name": "Bambu PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@X-Plus 5-Series",
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,54 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "Bambu PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Bambu Lab"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature": [
"210"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "xxRxeoAbiYJcH1P4",
"name": "Generic ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "MM6yfNPfpCtbsm2M",
"name": "Generic ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "BIiPt2AExUkASm2F",
"name": "Generic ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "VzKqGnik79qlJ1bA",
"name": "Generic ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"pressure_advance": [
"0.011"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "QD_4_0_11",
"name": "Generic ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.04"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"17"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.021"
],
"slow_down_layer_time": [
"4"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,23 @@
{
"type": "filament",
"setting_id": "ERbh7DQQfK7A623W",
"name": "Generic PC @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.94"
],
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.04"
],
"chamber_temperatures": [
"0"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "MK8OyxUEziAeEbXk",
"name": "Generic PC @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "EQIfBmyVNumOKVWU",
"name": "Generic PC @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "FsTuQT5hxmfjHyVZ",
"name": "Generic PC @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@X-Plus 5-Series",
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"10"
],
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "QD_4_0_23",
"name": "Generic PC@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"65"
],
"chamber_temperatures": [
"60"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"0"
],
"cool_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"110"
],
"eng_plate_temp": [
"110"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"500"
],
"filament_density": [
"1.04"
],
"filament_max_volumetric_speed": [
"10"
],
"filament_type": [
"PC"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"110"
],
"hot_plate_temp": [
"110"
],
"nozzle_temperature_initial_layer": [
"270"
],
"nozzle_temperature_range_high": [
"290"
],
"nozzle_temperature_range_low": [
"260"
],
"nozzle_temperature": [
"280"
],
"overhang_fan_speed": [
"60"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.021"
],
"slow_down_layer_time": [
"2"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"supertack_plate_temp": [
"0"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"110"
],
"textured_plate_temp": [
"110"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "KaxkabCgu6EWZBzj",
"name": "Generic PETG @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "ckqzES7LsTgYKKhb",
"name": "Generic PETG @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "1ID4LaQVZN4WjJ4v",
"name": "Generic PETG @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "yzkFoRA3R01K3lCa",
"name": "Generic PETG @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,105 @@
{
"type": "filament",
"filament_id": "QD_4_0_41",
"name": "Generic PETG@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"60"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"80"
],
"eng_plate_temp": [
"80"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_density": [
"1.27"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"80"
],
"hot_plate_temp": [
"80"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"slow_down_layer_time": [
"12"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"supertack_plate_temp": [
"60"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp_initial_layer": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_cool_plate_temp_initial_layer": [
"60"
],
"textured_cool_plate_temp": [
"60"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "m5zUk3OpAayCbBwF",
"name": "Generic PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "5Eorr9nKVhLbnYAZ",
"name": "Generic PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "nqOawjrkU2lp3P0K",
"name": "Generic PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "nA20S71nTMCso0Bn",
"name": "Generic PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@X-Plus 5-Series",
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,66 @@
{
"type": "filament",
"filament_id": "QD_4_0_1",
"name": "Generic PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"additional_cooling_fan_speed": [
"100"
],
"cool_plate_temp_initial_layer": [
"45"
],
"cool_plate_temp": [
"45"
],
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Generic"
],
"nozzle_temperature_initial_layer": [
"220"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature": [
"220"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "42feLKkUTBQTPNDm",
"name": "Generic PLA Silk @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA Silk@X-Plus 5-Series",
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "uyCmwBkoRNNRbG5R",
"name": "Generic PLA Silk @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA Silk@X-Plus 5-Series",
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,90 @@
{
"type": "filament",
"filament_id": "QD_4_0_4",
"name": "Generic PLA Silk@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"additional_cooling_fan_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_max_volumetric_speed": [
"7.5"
],
"filament_retraction_length": [
"0.5"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Generic"
],
"nozzle_temperature_initial_layer": [
"220"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature": [
"220"
],
"overhang_fan_threshold": [
"50%"
],
"pressure_advance": [
"0.032"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"cool_plate_temp": [
"45"
],
"eng_plate_temp_initial_layer": [
"55"
],
"eng_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"hot_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"textured_plate_temp": [
"55"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "aD9SNuHAOxVFczNM",
"name": "Generic PLA+ @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "QDAKF2VaO4MkiYZ7",
"name": "Generic PLA+ @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "kNONALYQIZ8hkU2f",
"name": "Generic PLA+ @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "ehm8mY40hPq6Bjby",
"name": "Generic PLA+ @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@X-Plus 5-Series",
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,60 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "Generic PLA+@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"additional_cooling_fan_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Generic"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature": [
"230"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "blCxzXDeplxz7FrS",
"name": "Generic TPU 95A @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@X-Plus 5-Series",
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "mXwJpelMKlY7SQR8",
"name": "Generic TPU 95A @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@X-Plus 5-Series",
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "o9NLhClfpsJFEE3P",
"name": "Generic TPU 95A @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@X-Plus 5-Series",
"nozzle_temperature": [
"220"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,81 @@
{
"type": "filament",
"filament_id": "QD_4_0_50",
"name": "Generic TPU 95A@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"cool_plate_temp_initial_layer": [
"30"
],
"cool_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"35"
],
"eng_plate_temp": [
"35"
],
"filament_adhesiveness_category": [
"600"
],
"filament_density": [
"1.21"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"4"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"Generic"
],
"hot_plate_temp_initial_layer": [
"35"
],
"hot_plate_temp": [
"35"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"200"
],
"nozzle_temperature": [
"230"
],
"pressure_advance": [
"0.1"
],
"supertack_plate_temp_initial_layer": [
"30"
],
"supertack_plate_temp": [
"30"
],
"temperature_vitrification": [
"30"
],
"textured_plate_temp_initial_layer": [
"35"
],
"textured_plate_temp": [
"35"
],
"textured_cool_plate_temp_initial_layer": [
"30"
],
"textured_cool_plate_temp": [
"30"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "uarx8NrJerlKsoA8",
"name": "HATCHBOX ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "T52l6W0u1uoiXrAx",
"name": "HATCHBOX ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "krTIEBmeK9q2R60M",
"name": "HATCHBOX ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "B99z7PiwClkWtyqv",
"name": "HATCHBOX ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.011"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,105 @@
{
"type": "filament",
"filament_id": "GFB99",
"name": "HATCHBOX ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"55"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"20"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.05"
],
"filament_flow_ratio": [
"0.95"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"HATCHBOX"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"260"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.035"
],
"slow_down_layer_time": [
"4"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "2y03Jbrd8epf06MW",
"name": "HATCHBOX PETG @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"1"
],
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "KHbEUzPhVICXYhTs",
"name": "HATCHBOX PETG @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@X-Plus 5-Series",
"pressure_advance": [
"0.056"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "3HPxSQqEM8XGZqgU",
"name": "HATCHBOX PETG @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "eZnTfUmPGkeoEP87",
"name": "HATCHBOX PETG @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@X-Plus 5-Series",
"pressure_advance": [
"0.04"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,102 @@
{
"type": "filament",
"filament_id": "GFG99",
"name": "HATCHBOX PETG@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"60"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"80"
],
"eng_plate_temp": [
"80"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"13"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"HATCHBOX"
],
"hot_plate_temp_initial_layer": [
"80"
],
"hot_plate_temp": [
"80"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"nozzle_temperature": [
"250"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"slow_down_layer_time": [
"8"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"supertack_plate_temp": [
"60"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp_initial_layer": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_cool_plate_temp_initial_layer": [
"60"
],
"textured_cool_plate_temp": [
"60"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "Sn0LAKII01kQONZS",
"name": "HATCHBOX PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "HWmejqWfehK4LG6C",
"name": "HATCHBOX PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@X-Plus 5-Series",
"pressure_advance": [
"0.034"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "zjIVoA34wN8AT6cp",
"name": "HATCHBOX PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@X-Plus 5-Series",
"pressure_advance": [
"0.016"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "sTjweBRTvE0P6YtE",
"name": "HATCHBOX PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@X-Plus 5-Series",
"pressure_advance": [
"0.008"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,54 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "HATCHBOX PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"HATCHBOX"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature": [
"210"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "tLj2E2dWAdLKpC4K",
"name": "Overture ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture ABS@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.054"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "1IkBG0ywAkk3VhOd",
"name": "Overture ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture ABS@X-Plus 5-Series",
"pressure_advance": [
"0.033"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "4SXA27uTG5kcbnAq",
"name": "Overture ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture ABS@X-Plus 5-Series",
"pressure_advance": [
"0.02"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "AzC8XjbkzsxEPDMG",
"name": "Overture ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture ABS@X-Plus 5-Series",
"pressure_advance": [
"0.01"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "GFB99",
"name": "Overture ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"60"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"20"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.12"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"17"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Overture"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"255"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.033"
],
"slow_down_layer_time": [
"6"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "2TAd2Dlk6KPvvmMg",
"name": "Overture PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.062"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "1rKASIobH0DqQUeH",
"name": "Overture PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture PLA@X-Plus 5-Series",
"pressure_advance": [
"0.037"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "UWQ7bLf74AxEPDdc",
"name": "Overture PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture PLA@X-Plus 5-Series",
"pressure_advance": [
"0.019"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "bIg1NW0EwTlmRNAF",
"name": "Overture PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Overture PLA@X-Plus 5-Series",
"pressure_advance": [
"0.012"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,66 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "Overture PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"11"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Overture"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature": [
"210"
],
"overhang_fan_threshold": [
"50%"
],
"slow_down_layer_time": [
"10"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "AJYooe7fIzg43McT",
"name": "PolyLite ABS @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite ABS@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.054"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "S0uCyMruXw5waEYf",
"name": "PolyLite ABS @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite ABS@X-Plus 5-Series",
"pressure_advance": [
"0.033"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "oYlfF3MMF5DEeJpK",
"name": "PolyLite ABS @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite ABS@X-Plus 5-Series",
"pressure_advance": [
"0.02"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "hHXz74Ps9x4T7kZl",
"name": "PolyLite ABS @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite ABS@X-Plus 5-Series",
"pressure_advance": [
"0.01"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "GFB99",
"name": "PolyLite ABS@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"60"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"20"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.12"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"17"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"Polymaker"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"255"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.033"
],
"slow_down_layer_time": [
"6"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "kKfybaeH6Llb3Vdc",
"name": "PolyLite PLA @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite PLA@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.062"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "hzEsCxIKwuV2ubrz",
"name": "PolyLite PLA @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite PLA@X-Plus 5-Series",
"pressure_advance": [
"0.037"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "PODs7XKIgMiJZI5x",
"name": "PolyLite PLA @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite PLA@X-Plus 5-Series",
"pressure_advance": [
"0.019"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "LQ1rP7NSTjw2moHk",
"name": "PolyLite PLA @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "PolyLite PLA@X-Plus 5-Series",
"pressure_advance": [
"0.012"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,66 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "PolyLite PLA@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"11"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Polymaker"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature": [
"210"
],
"overhang_fan_threshold": [
"50%"
],
"slow_down_layer_time": [
"10"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "p9cDXBgbjwjOX5me",
"name": "Polymaker PLA-HT @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Polymaker PLA-HT@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.062"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "TpI2jqmcVygyTO8N",
"name": "Polymaker PLA-HT @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Polymaker PLA-HT@X-Plus 5-Series",
"pressure_advance": [
"0.037"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "69AgpjCCTxF5ffW1",
"name": "Polymaker PLA-HT @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Polymaker PLA-HT@X-Plus 5-Series",
"pressure_advance": [
"0.019"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "tcoQNICpWYGdE24e",
"name": "Polymaker PLA-HT @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Polymaker PLA-HT@X-Plus 5-Series",
"pressure_advance": [
"0.012"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,66 @@
{
"type": "filament",
"filament_id": "GFL99",
"name": "Polymaker PLA-HT@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"filament_adhesiveness_category": [
"100"
],
"filament_density": [
"1.2"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"11"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"Polymaker"
],
"additional_cooling_fan_speed": [
"100"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_initial_layer": [
"220"
],
"nozzle_temperature": [
"215"
],
"overhang_fan_threshold": [
"50%"
],
"slow_down_layer_time": [
"10"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"supertack_plate_temp": [
"45"
],
"temperature_vitrification": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_cool_plate_temp": [
"45"
],
"compatible_printers": [],
"close_additional_fan_first_x_layers": [
"1"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "8SvrXXv743rCyyeN",
"name": "QIDI ABS Odorless @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Odorless@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"pressure_advance": [
"0.03"
],
"filament_max_volumetric_speed": [
"2"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "YviPsfkGYv6Q3r3T",
"name": "QIDI ABS Odorless @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Odorless@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "YLOcbaCppSmQ1twv",
"name": "QIDI ABS Odorless @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Odorless@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

View File

@@ -0,0 +1,23 @@
{
"type": "filament",
"setting_id": "Klsu6iALsWgbg3vK",
"name": "QIDI ABS Odorless @Qidi X-Plus 5 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Odorless@X-Plus 5-Series",
"filament_max_volumetric_speed": [
"24.5"
],
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.011"
],
"slow_down_min_speed": [
"10"
],
"compatible_printers": [
"Qidi X-Plus 5 0.8 nozzle"
]
}

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"filament_id": "QD_4_1_14",
"name": "QIDI ABS Odorless@X-Plus 5-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_x5_common",
"box_temperature_range_high": [
"45"
],
"chamber_temperatures": [
"55"
],
"close_fan_the_first_x_layers": [
"3"
],
"cool_plate_temp_initial_layer": [
"80"
],
"cool_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"90"
],
"eng_plate_temp": [
"90"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"200"
],
"filament_density": [
"1.02"
],
"filament_flow_ratio": [
"0.92"
],
"filament_max_volumetric_speed": [
"22"
],
"filament_type": [
"ABS"
],
"hot_plate_temp_initial_layer": [
"90"
],
"hot_plate_temp": [
"90"
],
"impact_strength_z": [
"7.4"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature": [
"260"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.035"
],
"slow_down_layer_time": [
"4"
],
"temperature_vitrification": [
"100"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"supertack_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"90"
],
"textured_plate_temp": [
"90"
],
"textured_cool_plate_temp_initial_layer": [
"80"
],
"textured_cool_plate_temp": [
"80"
],
"compatible_printers": []
}

View File

@@ -0,0 +1,20 @@
{
"type": "filament",
"setting_id": "bTwNiMSHwex0gxrd",
"name": "QIDI ABS Rapido @Qidi X-Plus 5 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Rapido@X-Plus 5-Series",
"chamber_temperatures": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.2 nozzle"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "filament",
"setting_id": "mcPlHcr33zPv3aIf",
"name": "QIDI ABS Rapido @Qidi X-Plus 5 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Rapido@X-Plus 5-Series",
"pressure_advance": [
"0.03"
],
"compatible_printers": [
"Qidi X-Plus 5 0.4 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "filament",
"setting_id": "0np334pRpl3qa8Uq",
"name": "QIDI ABS Rapido @Qidi X-Plus 5 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "QIDI ABS Rapido@X-Plus 5-Series",
"nozzle_temperature": [
"250"
],
"pressure_advance": [
"0.014"
],
"compatible_printers": [
"Qidi X-Plus 5 0.6 nozzle"
]
}

Some files were not shown because too many files have changed in this diff Show More