infra:tools:sovol-sv08-max
This is an old revision of the document!
Table of Contents
Sovol SV08 Max
Commercially available printer inspired by Voron 2.4, at ridiculous size - 50×50cm
http://inari.waw.hackerspace.pl/
Hostname choice is a reference to Inari Ōkami
Owner: ari
Power usage
- idle after startup: 18W
- bed pre-heat: 1133W
- printing:
- PETG: between 400W and 750W; 25-40% duty cycle on heatbed at 80°C
"improvements"/mods
Don't.
Printer profiles
There are printer profiles provided by Sovol: https://github.com/Sovol3d/Sovol-OrcaSlicer/releases/download/v2.3.0.4/Sovo.Profilesl.zip
I've opened a PR in OrcaSlicer to import the relevant ones for this printer into OrcaSlicer. Hopefully this will get merged in time to get included in v2.3.1 release.
Importing “system” profiles in OrcaSlicer is rather annoying. Here's a naive approach to embed them at build time using Nix. Fair warning: this causes a rather lengthy rebuild; there has to be a better way:
environment.systemPackages = [
(let
sovol-profiles = pkgs.fetchzip {
url =
"https://github.com/Sovol3d/Sovol-OrcaSlicer/releases/download/v2.3.0.4/Sovo.Profilesl.zip";
hash = "sha256-CvcM3Cst35Bz2lloejkKsSla1qrHHuDMxU67da5eHVs=";
};
in pkgs.orca-slicer.overrideAttrs (old: {
prePatch = old.prePatch + ''
rm -rf resources/profiles/Sovol resources/profiles/Sovol.json
cp --target-directory=resources/profiles -r ${sovol-profiles}/*
'';
}))
];
infra/tools/sovol-sv08-max.1758117584.txt.gz · Last modified: by ar